add support for interval / duration format in frontend views

This commit is contained in:
Gregor Vostrak
2025-05-07 19:39:23 +02:00
committed by Constantin Graf
parent b8d9bc5b7e
commit c1d43bcc67
24 changed files with 1219 additions and 843 deletions

View File

@@ -73,6 +73,16 @@ class DetailedWithDataReportResource extends BaseResource
'public_until' => $this->formatDateTime($this->resource->public_until), 'public_until' => $this->formatDateTime($this->resource->public_until),
/** @var string $currency Currency code (ISO 4217) */ /** @var string $currency Currency code (ISO 4217) */
'currency' => $this->resource->organization->currency, 'currency' => $this->resource->organization->currency,
/** @var string $number_format Number format */
'number_format' => $this->resource->organization->number_format,
/** @var string $currency_format Currency format */
'currency_format' => $this->resource->organization->currency_format,
/** @var string $date_format Date format */
'date_format' => $this->resource->organization->date_format,
/** @var string $interval_format Interval format */
'interval_format' => $this->resource->organization->interval_format,
/** @var string $time_format Time format */
'time_format' => $this->resource->organization->time_format,
'properties' => [ 'properties' => [
/** @var string $group Type of first grouping */ /** @var string $group Type of first grouping */
'group' => $this->resource->properties->group->value, 'group' => $this->resource->properties->group->value,

View File

@@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import ProjectMoreOptionsDropdown from '@/Components/Common/Project/ProjectMoreOptionsDropdown.vue'; import ProjectMoreOptionsDropdown from '@/Components/Common/Project/ProjectMoreOptionsDropdown.vue';
import type { Project } from '@/packages/api/src'; import type { Project } from '@/packages/api/src';
import { computed, ref } from 'vue'; import { computed, ref, inject, type ComputedRef } from 'vue';
import { CheckCircleIcon } from '@heroicons/vue/20/solid'; import { CheckCircleIcon } from '@heroicons/vue/20/solid';
import { useClientsStore } from '@/utils/useClients'; import { useClientsStore } from '@/utils/useClients';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
@@ -15,6 +15,7 @@ import EstimatedTimeProgress from '@/packages/ui/src/EstimatedTimeProgress.vue';
import UpgradeBadge from '@/Components/Common/UpgradeBadge.vue'; import UpgradeBadge from '@/Components/Common/UpgradeBadge.vue';
import { formatHumanReadableDuration } from '../../../packages/ui/src/utils/time'; import { formatHumanReadableDuration } from '../../../packages/ui/src/utils/time';
import { isAllowedToPerformPremiumAction } from '@/utils/billing'; import { isAllowedToPerformPremiumAction } from '@/utils/billing';
import type { Organization } from '@/packages/api/src';
const { clients } = storeToRefs(useClientsStore()); const { clients } = storeToRefs(useClientsStore());
const { tasks } = storeToRefs(useTasksStore()); const { tasks } = storeToRefs(useTasksStore());
@@ -61,6 +62,8 @@ const billableRateInfo = computed(() => {
}); });
const showEditProjectModal = ref(false); const showEditProjectModal = ref(false);
const organization = inject<ComputedRef<Organization>>('organization');
</script> </script>
<template> <template>
@@ -79,9 +82,12 @@ const showEditProjectModal = ref(false);
<span class="overflow-ellipsis overflow-hidden"> <span class="overflow-ellipsis overflow-hidden">
{{ project.name }} {{ project.name }}
</span> </span>
<span class="text-text-secondary"> {{ projectTasksCount }} Tasks </span> <span class="text-text-secondary">
{{ projectTasksCount }} Tasks
</span>
</div> </div>
<div class="whitespace-nowrap min-w-0 px-3 py-4 text-sm text-text-secondary"> <div
class="whitespace-nowrap min-w-0 px-3 py-4 text-sm text-text-secondary">
<div <div
v-if="project.client_id" v-if="project.client_id"
class="overflow-ellipsis overflow-hidden"> class="overflow-ellipsis overflow-hidden">
@@ -91,7 +97,13 @@ const showEditProjectModal = ref(false);
</div> </div>
<div class="whitespace-nowrap px-3 py-4 text-sm text-text-secondary"> <div class="whitespace-nowrap px-3 py-4 text-sm text-text-secondary">
<div v-if="project.spent_time"> <div v-if="project.spent_time">
{{ formatHumanReadableDuration(project.spent_time) }} {{
formatHumanReadableDuration(
project.spent_time,
organization?.interval_format,
organization?.number_format
)
}}
</div> </div>
<div v-else>--</div> <div v-else>--</div>
</div> </div>

View File

@@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import VChart, { THEME_KEY } from 'vue-echarts'; import VChart, { THEME_KEY } from 'vue-echarts';
import { computed, provide } from 'vue'; import { computed, provide, inject, shallowRef, type ComputedRef } from 'vue';
import LinearGradient from 'zrender/lib/graphic/LinearGradient'; import LinearGradient from 'zrender/lib/graphic/LinearGradient';
import { import {
formatDate, formatDate,
@@ -16,7 +16,7 @@ import {
TitleComponent, TitleComponent,
TooltipComponent, TooltipComponent,
} from 'echarts/components'; } from 'echarts/components';
import type { AggregatedTimeEntries } from '@/packages/api/src'; import type { AggregatedTimeEntries, Organization } from '@/packages/api/src';
import { useCssVar } from '@vueuse/core'; import { useCssVar } from '@vueuse/core';
use([ use([
@@ -30,6 +30,8 @@ use([
provide(THEME_KEY, 'dark'); provide(THEME_KEY, 'dark');
const organization = inject<ComputedRef<Organization>>('organization');
const chart = shallowRef(null);
type GroupedData = AggregatedTimeEntries['grouped_data']; type GroupedData = AggregatedTimeEntries['grouped_data'];
const props = defineProps<{ const props = defineProps<{
@@ -143,7 +145,11 @@ const option = computed(() => ({
type: 'bar', type: 'bar',
tooltip: { tooltip: {
valueFormatter: (value: number) => { valueFormatter: (value: number) => {
return formatHumanReadableDuration(value); return formatHumanReadableDuration(
value,
organization?.value?.interval_format,
organization?.value?.number_format
);
}, },
}, },
}, },
@@ -155,6 +161,7 @@ const option = computed(() => ({
<div class="w-[calc(100%-1px)]"> <div class="w-[calc(100%-1px)]">
<v-chart <v-chart
v-if="groupedData && groupedData?.length > 0" v-if="groupedData && groupedData?.length > 0"
ref="chart"
:autoresize="true" :autoresize="true"
class="chart" class="chart"
:option="option" /> :option="option" />

View File

@@ -0,0 +1,503 @@
<script setup lang="ts">
import {
ChartBarIcon,
CheckCircleIcon,
TagIcon,
UserGroupIcon,
} from '@heroicons/vue/20/solid';
import { FolderIcon } from '@heroicons/vue/16/solid';
import BillableIcon from '@/packages/ui/src/Icons/BillableIcon.vue';
import { getOrganizationCurrencyString } from '@/utils/money';
import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time';
import { formatCents } from '@/packages/ui/src/utils/money';
import ReportingTabNavbar from '@/Components/Common/Reporting/ReportingTabNavbar.vue';
import ReportingExportButton from '@/Components/Common/Reporting/ReportingExportButton.vue';
import TaskMultiselectDropdown from '@/Components/Common/Task/TaskMultiselectDropdown.vue';
import ClientMultiselectDropdown from '@/Components/Common/Client/ClientMultiselectDropdown.vue';
import ReportingRow from '@/Components/Common/Reporting/ReportingRow.vue';
import MemberMultiselectDropdown from '@/Components/Common/Member/MemberMultiselectDropdown.vue';
import ReportingFilterBadge from '@/Components/Common/Reporting/ReportingFilterBadge.vue';
import PageTitle from '@/Components/Common/PageTitle.vue';
import ProjectMultiselectDropdown from '@/Components/Common/Project/ProjectMultiselectDropdown.vue';
import ReportingChart from '@/Components/Common/Reporting/ReportingChart.vue';
import SelectDropdown from '../../../packages/ui/src/Input/SelectDropdown.vue';
import ReportingGroupBySelect from '@/Components/Common/Reporting/ReportingGroupBySelect.vue';
import MainContainer from '@/packages/ui/src/MainContainer.vue';
import DateRangePicker from '@/packages/ui/src/Input/DateRangePicker.vue';
import ReportingExportModal from '@/Components/Common/Reporting/ReportingExportModal.vue';
import ReportSaveButton from '@/Components/Common/Report/ReportSaveButton.vue';
import TagDropdown from '@/packages/ui/src/Tag/TagDropdown.vue';
import ReportingPieChart from '@/Components/Common/Reporting/ReportingPieChart.vue';
import { computed, onMounted, ref, inject, type ComputedRef } from 'vue';
import {
getDayJsInstance,
getLocalizedDayJs,
} from '@/packages/ui/src/utils/time';
import { type GroupingOption, useReportingStore } from '@/utils/useReporting';
import { storeToRefs } from 'pinia';
import {
type AggregatedTimeEntriesQueryParams,
type CreateReportBodyProperties,
api,
type Organization,
} from '@/packages/api/src';
import {
getCurrentMembershipId,
getCurrentOrganizationId,
getCurrentRole,
} from '@/utils/useUser';
import { useTagsStore } from '@/utils/useTags';
import { useSessionStorage, useStorage } from '@vueuse/core';
import { useNotificationsStore } from '@/utils/notification';
import type { ExportFormat } from '@/types/reporting';
import { getRandomColorWithSeed } from '@/packages/ui/src/utils/color';
const { handleApiRequestNotifications } = useNotificationsStore();
const startDate = useSessionStorage<string>(
'reporting-start-date',
getLocalizedDayJs(getDayJsInstance()().format()).subtract(14, 'd').format()
);
const endDate = useSessionStorage<string>(
'reporting-end-date',
getLocalizedDayJs(getDayJsInstance()().format()).format()
);
const selectedTags = ref<string[]>([]);
const selectedProjects = ref<string[]>([]);
const selectedMembers = ref<string[]>([]);
const selectedTasks = ref<string[]>([]);
const selectedClients = ref<string[]>([]);
const billable = ref<'true' | 'false' | null>(null);
const group = useStorage<GroupingOption>('reporting-group', 'project');
const subGroup = useStorage<GroupingOption>('reporting-sub-group', 'task');
const reportingStore = useReportingStore();
const { aggregatedGraphTimeEntries, aggregatedTableTimeEntries } =
storeToRefs(reportingStore);
const { groupByOptions } = reportingStore;
const organization = inject<ComputedRef<Organization>>('organization');
function getFilterAttributes(): AggregatedTimeEntriesQueryParams {
let params: AggregatedTimeEntriesQueryParams = {
start: getLocalizedDayJs(startDate.value).startOf('day').utc().format(),
end: getLocalizedDayJs(endDate.value).endOf('day').utc().format(),
};
params = {
...params,
member_ids:
selectedMembers.value.length > 0
? selectedMembers.value
: undefined,
project_ids:
selectedProjects.value.length > 0
? selectedProjects.value
: undefined,
task_ids:
selectedTasks.value.length > 0 ? selectedTasks.value : undefined,
client_ids:
selectedClients.value.length > 0
? selectedClients.value
: undefined,
tag_ids: selectedTags.value.length > 0 ? selectedTags.value : undefined,
billable: billable.value !== null ? billable.value : undefined,
};
return params;
}
function updateGraphReporting() {
const params = getFilterAttributes();
if (getCurrentRole() === 'employee') {
params.member_id = getCurrentMembershipId();
}
params.fill_gaps_in_time_groups = 'true';
params.group = getOptimalGroupingOption(startDate.value, endDate.value);
useReportingStore().fetchGraphReporting(params);
}
function updateTableReporting() {
const params = getFilterAttributes();
if (group.value === subGroup.value) {
const fallbackOption = groupByOptions.find(
(el) => el.value !== group.value
);
if (fallbackOption?.value) {
subGroup.value = fallbackOption.value;
}
}
if (getCurrentRole() === 'employee') {
params.member_id = getCurrentMembershipId();
}
params.group = group.value;
params.sub_group = subGroup.value;
useReportingStore().fetchTableReporting(params);
}
function updateReporting() {
updateGraphReporting();
updateTableReporting();
}
function getOptimalGroupingOption(
startDate: string,
endDate: string
): 'day' | 'week' | 'month' {
const diffInDays = getDayJsInstance()(endDate).diff(
getDayJsInstance()(startDate),
'd'
);
if (diffInDays <= 31) {
return 'day';
} else if (diffInDays <= 200) {
return 'week';
} else {
return 'month';
}
}
onMounted(() => {
updateGraphReporting();
updateTableReporting();
});
const { tags } = storeToRefs(useTagsStore());
async function createTag(tag: string) {
return await useTagsStore().createTag(tag);
}
const reportProperties = computed(() => {
return {
...getFilterAttributes(),
group: group.value,
sub_group: subGroup.value,
history_group: getOptimalGroupingOption(startDate.value, endDate.value),
} as CreateReportBodyProperties;
});
async function downloadExport(format: ExportFormat) {
const organizationId = getCurrentOrganizationId();
if (organizationId) {
const response = await handleApiRequestNotifications(
() =>
api.exportAggregatedTimeEntries({
params: {
organization: organizationId,
},
queries: {
...getFilterAttributes(),
group: group.value,
sub_group: subGroup.value,
history_group: getOptimalGroupingOption(
startDate.value,
endDate.value
),
format: format,
},
}),
'Export successful',
'Export failed'
);
if (response?.download_url) {
showExportModal.value = true;
exportUrl.value = response.download_url as string;
}
}
}
const { getNameForReportingRowEntry, emptyPlaceholder } = useReportingStore();
import { useProjectsStore } from '@/utils/useProjects';
const projectsStore = useProjectsStore();
const { projects } = storeToRefs(projectsStore);
const showExportModal = ref(false);
const exportUrl = ref<string | null>(null);
const groupedPieChartData = computed(() => {
return (
aggregatedTableTimeEntries.value?.grouped_data?.map((entry) => {
const name = getNameForReportingRowEntry(
entry.key,
aggregatedTableTimeEntries.value?.grouped_type
);
let color = getRandomColorWithSeed(entry.key ?? 'none');
if (
name &&
aggregatedTableTimeEntries.value?.grouped_type &&
emptyPlaceholder[
aggregatedTableTimeEntries.value?.grouped_type
] === name
) {
color = '#CCCCCC';
} else if (
aggregatedTableTimeEntries.value?.grouped_type === 'project'
) {
color =
projects.value?.find((project) => project.id === entry.key)
?.color ?? '#CCCCCC';
}
return {
value: entry.seconds,
name:
getNameForReportingRowEntry(
entry.key,
aggregatedTableTimeEntries.value?.grouped_type
) ?? '',
color: color,
};
}) ?? []
);
});
const tableData = computed(() => {
return aggregatedTableTimeEntries.value?.grouped_data?.map((entry) => {
return {
seconds: entry.seconds,
cost: entry.cost,
description: getNameForReportingRowEntry(
entry.key,
aggregatedTableTimeEntries.value?.grouped_type
),
grouped_data:
entry.grouped_data?.map((el) => {
return {
seconds: el.seconds,
cost: el.cost,
description: getNameForReportingRowEntry(
el.key,
entry.grouped_type
),
};
}) ?? [],
};
});
});
</script>
<template>
<ReportingExportModal
v-model:show="showExportModal"
:export-url="exportUrl"></ReportingExportModal>
<MainContainer
class="py-3 sm:py-5 border-b border-default-background-separator flex justify-between items-center">
<div class="flex items-center space-x-3 sm:space-x-6">
<PageTitle :icon="ChartBarIcon" title="Reporting"></PageTitle>
<ReportingTabNavbar active="reporting"></ReportingTabNavbar>
</div>
<div class="flex space-x-2">
<ReportingExportButton
:download="downloadExport"></ReportingExportButton>
<ReportSaveButton
:report-properties="reportProperties"></ReportSaveButton>
</div>
</MainContainer>
<div class="py-2.5 w-full border-b border-default-background-separator">
<MainContainer class="sm:flex space-y-4 sm:space-y-0 justify-between">
<div
class="flex flex-wrap items-center space-y-2 sm:space-y-0 space-x-4">
<div class="text-sm font-medium">Filters</div>
<MemberMultiselectDropdown
v-model="selectedMembers"
@submit="updateReporting">
<template #trigger>
<ReportingFilterBadge
:count="selectedMembers.length"
:active="selectedMembers.length > 0"
title="Members"
:icon="UserGroupIcon"></ReportingFilterBadge>
</template>
</MemberMultiselectDropdown>
<ProjectMultiselectDropdown
v-model="selectedProjects"
@submit="updateReporting">
<template #trigger>
<ReportingFilterBadge
:count="selectedProjects.length"
:active="selectedProjects.length > 0"
title="Projects"
:icon="FolderIcon"></ReportingFilterBadge>
</template>
</ProjectMultiselectDropdown>
<TaskMultiselectDropdown
v-model="selectedTasks"
@submit="updateReporting">
<template #trigger>
<ReportingFilterBadge
:count="selectedTasks.length"
:active="selectedTasks.length > 0"
title="Tasks"
:icon="CheckCircleIcon"></ReportingFilterBadge>
</template>
</TaskMultiselectDropdown>
<ClientMultiselectDropdown
v-model="selectedClients"
@submit="updateReporting">
<template #trigger>
<ReportingFilterBadge
:count="selectedClients.length"
:active="selectedClients.length > 0"
title="Clients"
:icon="FolderIcon"></ReportingFilterBadge>
</template>
</ClientMultiselectDropdown>
<TagDropdown
v-model="selectedTags"
:create-tag
:tags="tags"
@submit="updateReporting">
<template #trigger>
<ReportingFilterBadge
:count="selectedTags.length"
:active="selectedTags.length > 0"
title="Tags"
:icon="TagIcon"></ReportingFilterBadge>
</template>
</TagDropdown>
<SelectDropdown
v-model="billable"
:get-key-from-item="(item) => item.value"
:get-name-for-item="(item) => item.label"
:items="[
{
label: 'Both',
value: null,
},
{
label: 'Billable',
value: 'true',
},
{
label: 'Non Billable',
value: 'false',
},
]"
@changed="updateReporting">
<template #trigger>
<ReportingFilterBadge
:active="billable !== null"
:title="
billable === 'false'
? 'Non Billable'
: 'Billable'
"
:icon="BillableIcon"></ReportingFilterBadge>
</template>
</SelectDropdown>
</div>
<div>
<DateRangePicker
v-model:start="startDate"
v-model:end="endDate"
@submit="updateReporting"></DateRangePicker>
</div>
</MainContainer>
</div>
<MainContainer>
<div class="pt-10 w-full px-3 relative">
<ReportingChart
:grouped-type="aggregatedGraphTimeEntries?.grouped_type"
:grouped-data="
aggregatedGraphTimeEntries?.grouped_data
"></ReportingChart>
</div>
</MainContainer>
<MainContainer>
<div class="sm:grid grid-cols-4 pt-6 items-start">
<div
class="col-span-3 bg-card-background rounded-lg border border-card-border pt-3">
<div
class="text-sm flex text-text-primary items-center space-x-3 font-medium px-6 border-b border-card-background-separator pb-3">
<span>Group by</span>
<ReportingGroupBySelect
v-model="group"
:group-by-options="groupByOptions"
@changed="
updateTableReporting
"></ReportingGroupBySelect>
<span>and</span>
<ReportingGroupBySelect
v-model="subGroup"
:group-by-options="
groupByOptions.filter((el) => el.value !== group)
"
@changed="
updateTableReporting
"></ReportingGroupBySelect>
</div>
<div
class="grid items-center"
style="grid-template-columns: 1fr 100px 150px">
<div
class="contents [&>*]:border-card-background-separator [&>*]:border-b [&>*]:bg-tertiary [&>*]:pb-1.5 [&>*]:pt-1 text-text-secondary text-sm">
<div class="pl-6">Name</div>
<div class="text-right">Duration</div>
<div class="text-right pr-6">Cost</div>
</div>
<template
v-if="
aggregatedTableTimeEntries?.grouped_data &&
aggregatedTableTimeEntries.grouped_data?.length > 0
">
<ReportingRow
v-for="entry in tableData"
:key="entry.description ?? 'none'"
:currency="getOrganizationCurrencyString()"
:entry="entry"
:type="
aggregatedTableTimeEntries.grouped_type
"></ReportingRow>
<div
class="contents [&>*]:transition text-text-tertiary [&>*]:h-[50px]">
<div class="flex items-center pl-6 font-medium">
<span>Total</span>
</div>
<div
class="justify-end flex items-center font-medium">
{{
formatHumanReadableDuration(
aggregatedTableTimeEntries.seconds,
organization?.interval_format,
organization?.number_format
)
}}
</div>
<div
class="justify-end pr-6 flex items-center font-medium">
{{
aggregatedTableTimeEntries.cost
? formatCents(
aggregatedTableTimeEntries.cost,
getOrganizationCurrencyString()
)
: '--'
}}
</div>
</div>
</template>
<div
v-else
class="chart flex flex-col items-center justify-center py-12 col-span-3">
<p class="text-lg text-text-primary font-semibold">
No time entries found
</p>
<p>Try to change the filters and time range</p>
</div>
</div>
</div>
<div class="px-2 lg:px-4">
<ReportingPieChart
:data="groupedPieChartData"></ReportingPieChart>
</div>
</div>
</MainContainer>
</template>
<style scoped></style>

View File

@@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import VChart, { THEME_KEY } from 'vue-echarts'; import VChart, { THEME_KEY } from 'vue-echarts';
import { computed, provide } from 'vue'; import { computed, provide, inject, type ComputedRef } from 'vue';
import { use } from 'echarts/core'; import { use } from 'echarts/core';
import { CanvasRenderer } from 'echarts/renderers'; import { CanvasRenderer } from 'echarts/renderers';
import { PieChart } from 'echarts/charts'; import { PieChart } from 'echarts/charts';
@@ -11,7 +11,8 @@ import {
TooltipComponent, TooltipComponent,
} from 'echarts/components'; } from 'echarts/components';
import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time'; import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time';
import { useCssVar } from "@vueuse/core"; import { useCssVar } from '@vueuse/core';
import type { Organization } from '@/packages/api/src';
use([ use([
CanvasRenderer, CanvasRenderer,
@@ -24,6 +25,8 @@ use([
provide(THEME_KEY, 'dark'); provide(THEME_KEY, 'dark');
const organization = inject<ComputedRef<Organization>>('organization');
type ReportingChartDataEntry = { type ReportingChartDataEntry = {
value: number; value: number;
name: string; name: string;
@@ -71,7 +74,11 @@ const option = computed(() => ({
}, },
tooltip: { tooltip: {
valueFormatter: (value: number) => { valueFormatter: (value: number) => {
return formatHumanReadableDuration(value); return formatHumanReadableDuration(
value,
organization?.value?.interval_format,
organization?.value?.number_format
);
}, },
}, },
data: seriesData.value, data: seriesData.value,

View File

@@ -2,8 +2,9 @@
import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time'; import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time';
import { formatCents } from '@/packages/ui/src/utils/money'; import { formatCents } from '@/packages/ui/src/utils/money';
import GroupedItemsCountButton from '@/packages/ui/src/GroupedItemsCountButton.vue'; import GroupedItemsCountButton from '@/packages/ui/src/GroupedItemsCountButton.vue';
import { ref } from 'vue'; import { ref, inject, type ComputedRef } from 'vue';
import { twMerge } from 'tailwind-merge'; import { twMerge } from 'tailwind-merge';
import type { Organization } from '@/packages/api/src';
type AggregatedGroupedData = GroupedData & { type AggregatedGroupedData = GroupedData & {
grouped_data?: GroupedData[] | null; grouped_data?: GroupedData[] | null;
@@ -22,6 +23,8 @@ const props = defineProps<{
}>(); }>();
const expanded = ref(false); const expanded = ref(false);
const organization = inject<ComputedRef<Organization>>('organization');
</script> </script>
<template> <template>
@@ -45,10 +48,16 @@ const expanded = ref(false);
</span> </span>
</div> </div>
<div class="justify-end flex items-center"> <div class="justify-end flex items-center">
{{ formatHumanReadableDuration(entry.seconds) }} {{
formatHumanReadableDuration(
entry.seconds,
organization?.interval_format,
organization?.number_format
)
}}
</div> </div>
<div class="justify-end pr-6 flex items-center"> <div class="justify-end pr-6 flex items-center">
{{entry.cost ? formatCents(entry.cost, props.currency) : '--' }} {{ entry.cost ? formatCents(entry.cost, props.currency) : '--' }}
</div> </div>
</div> </div>
<div <div

View File

@@ -6,16 +6,19 @@ import TaskMoreOptionsDropdown from '@/Components/Common/Task/TaskMoreOptionsDro
import TableRow from '@/Components/TableRow.vue'; import TableRow from '@/Components/TableRow.vue';
import { canDeleteTasks } from '@/utils/permissions'; import { canDeleteTasks } from '@/utils/permissions';
import TaskEditModal from '@/Components/Common/Task/TaskEditModal.vue'; import TaskEditModal from '@/Components/Common/Task/TaskEditModal.vue';
import { ref } from 'vue'; import { ref, inject, type ComputedRef } from 'vue';
import { isAllowedToPerformPremiumAction } from '@/utils/billing'; import { isAllowedToPerformPremiumAction } from '@/utils/billing';
import EstimatedTimeProgress from '@/packages/ui/src/EstimatedTimeProgress.vue'; import EstimatedTimeProgress from '@/packages/ui/src/EstimatedTimeProgress.vue';
import UpgradeBadge from '@/Components/Common/UpgradeBadge.vue'; import UpgradeBadge from '@/Components/Common/UpgradeBadge.vue';
import { formatHumanReadableDuration } from '../../../packages/ui/src/utils/time'; import { formatHumanReadableDuration } from '../../../packages/ui/src/utils/time';
import type { Organization } from '@/packages/api/src';
const props = defineProps<{ const props = defineProps<{
task: Task; task: Task;
}>(); }>();
const organization = inject<ComputedRef<Organization>>('organization');
function deleteTask() { function deleteTask() {
useTasksStore().deleteTask(props.task.id); useTasksStore().deleteTask(props.task.id);
} }
@@ -41,7 +44,13 @@ const showTaskEditModal = ref(false);
<div <div
class="whitespace-nowrap px-3 py-4 text-sm text-text-secondary flex space-x-1 items-center font-medium"> class="whitespace-nowrap px-3 py-4 text-sm text-text-secondary flex space-x-1 items-center font-medium">
<span v-if="task.spent_time"> <span v-if="task.spent_time">
{{ formatHumanReadableDuration(task.spent_time) }} {{
formatHumanReadableDuration(
task.spent_time,
organization?.interval_format,
organization?.number_format
)
}}
</span> </span>
<span v-else> -- </span> <span v-else> -- </span>
</div> </div>

View File

@@ -3,9 +3,10 @@ import { useCurrentTimeEntryStore } from '@/utils/useCurrentTimeEntry';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { computed } from 'vue'; import { computed } from 'vue';
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time'; import { formatDuration } from '@/packages/ui/src/utils/time';
import TimeTrackerStartStop from '@/packages/ui/src/TimeTrackerStartStop.vue'; import TimeTrackerStartStop from '@/packages/ui/src/TimeTrackerStartStop.vue';
import { getCurrentOrganizationId } from '@/utils/useUser'; import { getCurrentOrganizationId } from '@/utils/useUser';
const store = useCurrentTimeEntryStore(); const store = useCurrentTimeEntryStore();
const { currentTimeEntry, now, isActive } = storeToRefs(store); const { currentTimeEntry, now, isActive } = storeToRefs(store);
const { setActiveState } = store; const { setActiveState } = store;
@@ -14,10 +15,9 @@ const currentTime = computed(() => {
if (now.value && currentTimeEntry.value.start) { if (now.value && currentTimeEntry.value.start) {
const startTime = dayjs(currentTimeEntry.value.start); const startTime = dayjs(currentTimeEntry.value.start);
const diff = now.value.diff(startTime, 's'); const diff = now.value.diff(startTime, 's');
// return dayjs(diff).utc().format('HH:mm:ss'); return formatDuration(diff);
return formatHumanReadableDuration(diff);
} }
return formatHumanReadableDuration(0); return formatDuration(0);
}); });
const isRunningInDifferentOrganization = computed(() => { const isRunningInDifferentOrganization = computed(() => {
@@ -43,7 +43,9 @@ const isRunningInDifferentOrganization = computed(() => {
</div> </div>
</div> </div>
<div> <div>
<div class="text-text-secondary font-extrabold text-xs">Current Timer</div> <div class="text-text-secondary font-extrabold text-xs">
Current Timer
</div>
<div class="text-text-primary font-medium text-lg"> <div class="text-text-primary font-medium text-lg">
{{ currentTime }} {{ currentTime }}
</div> </div>

View File

@@ -1,44 +1,45 @@
<script lang="ts" setup> <script lang="ts" setup>
import VChart, { THEME_KEY } from "vue-echarts"; import VChart, { THEME_KEY } from 'vue-echarts';
import { provide, computed } from "vue"; import { provide, computed, inject, type ComputedRef } from 'vue';
import { use } from "echarts/core"; import { use } from 'echarts/core';
import DashboardCard from "@/Components/Dashboard/DashboardCard.vue"; import DashboardCard from '@/Components/Dashboard/DashboardCard.vue';
import { BoltIcon } from "@heroicons/vue/20/solid"; import { BoltIcon } from '@heroicons/vue/20/solid';
import { HeatmapChart } from "echarts/charts"; import { HeatmapChart } from 'echarts/charts';
import { import {
CalendarComponent, CalendarComponent,
TitleComponent, TitleComponent,
TooltipComponent, TooltipComponent,
VisualMapComponent VisualMapComponent,
} from "echarts/components"; } from 'echarts/components';
import { CanvasRenderer } from "echarts/renderers"; import { CanvasRenderer } from 'echarts/renderers';
import dayjs from "dayjs"; import dayjs from 'dayjs';
import { import {
firstDayIndex, firstDayIndex,
formatDate, formatDate,
formatHumanReadableDuration, formatHumanReadableDuration,
getDayJsInstance getDayJsInstance,
} from "@/packages/ui/src/utils/time"; } from '@/packages/ui/src/utils/time';
import { useCssVar } from "@vueuse/core"; import { useCssVar } from '@vueuse/core';
import { useQuery } from "@tanstack/vue-query"; import { useQuery } from '@tanstack/vue-query';
import { getCurrentOrganizationId } from "@/utils/useUser"; import { getCurrentOrganizationId } from '@/utils/useUser';
import { api } from "@/packages/api/src"; import { api, type Organization } from '@/packages/api/src';
import { LoadingSpinner } from "@/packages/ui/src"; import { LoadingSpinner } from '@/packages/ui/src';
const organization = inject<ComputedRef<Organization>>('organization');
// Get the organization ID using the utility function // Get the organization ID using the utility function
const organizationId = computed(() => getCurrentOrganizationId()); const organizationId = computed(() => getCurrentOrganizationId());
const { data: dailyHoursTracked, isLoading } = useQuery({ const { data: dailyHoursTracked, isLoading } = useQuery({
queryKey: ["dailyTrackedHours", organizationId], queryKey: ['dailyTrackedHours', organizationId],
queryFn: () => { queryFn: () => {
return api.dailyTrackedHours({ return api.dailyTrackedHours({
params: { params: {
organization: organizationId.value! organization: organizationId.value!,
} },
}); });
}, },
enabled: computed(() => !!organizationId.value) enabled: computed(() => !!organizationId.value),
}); });
use([ use([
@@ -47,96 +48,104 @@ use([
VisualMapComponent, VisualMapComponent,
CalendarComponent, CalendarComponent,
HeatmapChart, HeatmapChart,
CanvasRenderer CanvasRenderer,
]); ]);
provide(THEME_KEY, "dark"); provide(THEME_KEY, 'dark');
const max = computed(() => { const max = computed(() => {
if (!isLoading.value && dailyHoursTracked.value) { if (!isLoading.value && dailyHoursTracked.value) {
return Math.max( return Math.max(
Math.max(...dailyHoursTracked.value.map((el) => el.duration)), Math.max(...dailyHoursTracked.value.map((el) => el.duration)),
1 1
); );
} else { } else {
return 1; return 1;
}
} }
); });
const backgroundColor = useCssVar('--color-card-background', null, { observe: true }); const backgroundColor = useCssVar('--color-card-background', null, {
const itemBackgroundColor = useCssVar('--color-bg-tertiary', null, { observe: true }); observe: true,
});
const itemBackgroundColor = useCssVar('--color-bg-tertiary', null, {
observe: true,
});
const option = computed(() => { const option = computed(() => {
return { return {
tooltip: {}, tooltip: {},
visualMap: { visualMap: {
min: 0, min: 0,
max: max.value, max: max.value,
type: "piecewise", type: 'piecewise',
orient: "horizontal", orient: 'horizontal',
left: "center", left: 'center',
top: "center", top: 'center',
inRange: { inRange: {
color: [itemBackgroundColor.value, "#2DBE45"] color: [itemBackgroundColor.value, '#2DBE45'],
},
show: false
}, },
calendar: { show: false,
top: 40, },
bottom: 20, calendar: {
left: 40, top: 40,
right: 10, bottom: 20,
cellSize: [40, 40], left: 40,
dayLabel: { right: 10,
firstDay: firstDayIndex.value cellSize: [40, 40],
}, dayLabel: {
splitLine: { firstDay: firstDayIndex.value,
show: false
},
range: [
dayjs().format("YYYY-MM-DD"),
getDayJsInstance()()
.subtract(50, "day")
.startOf("week")
.format("YYYY-MM-DD")
],
itemStyle: {
color: "transparent",
borderWidth: 8,
borderColor: backgroundColor.value
},
yearLabel: { show: false }
}, },
series: { splitLine: {
type: "heatmap", show: false,
coordinateSystem: "calendar", },
data: dailyHoursTracked?.value?.map((el) => [el.date, el.duration]) ?? [], range: [
itemStyle: { dayjs().format('YYYY-MM-DD'),
borderRadius: 5, getDayJsInstance()()
borderColor: "rgba(255,255,255,0.05)", .subtract(50, 'day')
borderWidth: 1 .startOf('week')
}, .format('YYYY-MM-DD'),
tooltip: { ],
valueFormatter: (value: number, dataIndex: number) => { itemStyle: {
if(dailyHoursTracked?.value){ color: 'transparent',
return ( borderWidth: 8,
formatDate(dailyHoursTracked?.value[dataIndex].date) + borderColor: backgroundColor.value,
": " + },
formatHumanReadableDuration(value) yearLabel: { show: false },
); },
} series: {
else { type: 'heatmap',
return ""; coordinateSystem: 'calendar',
} data:
dailyHoursTracked?.value?.map((el) => [el.date, el.duration]) ??
[],
itemStyle: {
borderRadius: 5,
borderColor: 'rgba(255,255,255,0.05)',
borderWidth: 1,
},
tooltip: {
valueFormatter: (value: number, dataIndex: number) => {
if (dailyHoursTracked?.value) {
return (
formatDate(
dailyHoursTracked?.value[dataIndex].date
) +
': ' +
formatHumanReadableDuration(
value,
organization?.value?.interval_format,
organization?.value?.number_format
)
);
} else {
return '';
} }
} },
}, },
backgroundColor: "transparent" },
}; backgroundColor: 'transparent',
}); };
});
</script> </script>
<template> <template>

View File

@@ -1,15 +1,19 @@
<script setup lang="ts"> <script setup lang="ts">
import DayOverviewCardChart from '@/Components/Dashboard/DayOverviewCardChart.vue'; import DayOverviewCardChart from '@/Components/Dashboard/DayOverviewCardChart.vue';
import {
formatHumanReadableDate,
formatHumanReadableDuration,
} from '@/packages/ui/src/utils/time';
import { inject, type ComputedRef } from 'vue';
import type { Organization } from '@/packages/api/src';
const organization = inject<ComputedRef<Organization>>('organization');
defineProps<{ defineProps<{
date: string; date: string;
duration: number; duration: number;
history: number[]; history: number[];
}>(); }>();
import {
formatHumanReadableDate,
formatHumanReadableDuration,
} from '@/packages/ui/src/utils/time';
</script> </script>
<template> <template>
@@ -25,7 +29,13 @@ import {
</div> </div>
<div <div
class="flex text-sm items-center justify-center text-text-secondary min-w-[65px] font-semibold"> class="flex text-sm items-center justify-center text-text-secondary min-w-[65px] font-semibold">
{{ formatHumanReadableDuration(duration) }} {{
formatHumanReadableDuration(
duration,
organization?.interval_format,
organization?.number_format
)
}}
</div> </div>
</div> </div>
</template> </template>

View File

@@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import VChart, { THEME_KEY } from 'vue-echarts'; import VChart, { THEME_KEY } from 'vue-echarts';
import { provide } from 'vue'; import { provide, inject, type ComputedRef } from 'vue';
import { use } from 'echarts/core'; import { use } from 'echarts/core';
import { CanvasRenderer } from 'echarts/renderers'; import { CanvasRenderer } from 'echarts/renderers';
import { PieChart } from 'echarts/charts'; import { PieChart } from 'echarts/charts';
@@ -12,6 +12,7 @@ import {
} from 'echarts/components'; } from 'echarts/components';
import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time'; import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time';
import { useCssVar } from "@vueuse/core"; import { useCssVar } from "@vueuse/core";
import type { Organization } from "@/packages/api/src";
use([ use([
CanvasRenderer, CanvasRenderer,
@@ -33,6 +34,8 @@ const props = defineProps<{
}[]; }[];
}>(); }>();
const organization = inject<ComputedRef<Organization>>('organization');
const seriesData = props.weeklyProjectOverview.map((el) => { const seriesData = props.weeklyProjectOverview.map((el) => {
return { return {
...el, ...el,
@@ -69,7 +72,7 @@ const option = computed(() => ({
}, },
tooltip: { tooltip: {
valueFormatter: (value: number) => { valueFormatter: (value: number) => {
return formatHumanReadableDuration(value); return formatHumanReadableDuration(value, organization?.value?.interval_format, organization?.value?.number_format);
}, },
}, },
data: seriesData, data: seriesData,

View File

@@ -1,23 +1,28 @@
<script setup lang="ts"> <script setup lang="ts">
import { use } from "echarts/core"; import { use } from 'echarts/core';
import { CanvasRenderer } from "echarts/renderers"; import { CanvasRenderer } from 'echarts/renderers';
import { BarChart } from "echarts/charts"; import { BarChart } from 'echarts/charts';
import { GridComponent, LegendComponent, TitleComponent, TooltipComponent } from "echarts/components"; import {
import VChart, { THEME_KEY } from "vue-echarts"; GridComponent,
import { computed, provide } from "vue"; LegendComponent,
import StatCard from "@/Components/Common/StatCard.vue"; TitleComponent,
import { ClockIcon } from "@heroicons/vue/20/solid"; TooltipComponent,
import CardTitle from "@/packages/ui/src/CardTitle.vue"; } from 'echarts/components';
import LinearGradient from "zrender/lib/graphic/LinearGradient"; import VChart, { THEME_KEY } from 'vue-echarts';
import ProjectsChartCard from "@/Components/Dashboard/ProjectsChartCard.vue"; import { computed, provide, inject, type ComputedRef } from 'vue';
import { formatHumanReadableDuration } from "@/packages/ui/src/utils/time"; import StatCard from '@/Components/Common/StatCard.vue';
import { formatCents } from "@/packages/ui/src/utils/money"; import { ClockIcon } from '@heroicons/vue/20/solid';
import { getWeekStart } from "@/packages/ui/src/utils/settings"; import CardTitle from '@/packages/ui/src/CardTitle.vue';
import { useCssVar } from "@vueuse/core"; import LinearGradient from 'zrender/lib/graphic/LinearGradient';
import { getOrganizationCurrencyString } from "@/utils/money"; import ProjectsChartCard from '@/Components/Dashboard/ProjectsChartCard.vue';
import { useQuery } from "@tanstack/vue-query"; import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time';
import { getCurrentOrganizationId } from "@/utils/useUser"; import { formatCents } from '@/packages/ui/src/utils/money';
import { api } from "@/packages/api/src"; import { getWeekStart } from '@/packages/ui/src/utils/settings';
import { useCssVar } from '@vueuse/core';
import { getOrganizationCurrencyString } from '@/utils/money';
import { useQuery } from '@tanstack/vue-query';
import { getCurrentOrganizationId } from '@/utils/useUser';
import { api, type Organization } from '@/packages/api/src';
use([ use([
CanvasRenderer, CanvasRenderer,
@@ -25,21 +30,21 @@ use([
TitleComponent, TitleComponent,
GridComponent, GridComponent,
TooltipComponent, TooltipComponent,
LegendComponent LegendComponent,
]); ]);
provide(THEME_KEY, "dark"); provide(THEME_KEY, 'dark');
const weekdays = computed(() => { const weekdays = computed(() => {
const daysOrder = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]; const daysOrder = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'];
const dayMapping: Record<string, string> = { const dayMapping: Record<string, string> = {
monday: "Mon", monday: 'Mon',
tuesday: "Tue", tuesday: 'Tue',
wednesday: "Wed", wednesday: 'Wed',
thursday: "Thu", thursday: 'Thu',
friday: "Fri", friday: 'Fri',
saturday: "Sat", saturday: 'Sat',
sunday: "Sun" sunday: 'Sun',
}; };
if (dayMapping[getWeekStart()]) { if (dayMapping[getWeekStart()]) {
const customOrder = []; const customOrder = [];
@@ -53,78 +58,76 @@ const weekdays = computed(() => {
} else { } else {
return daysOrder; return daysOrder;
} }
}); });
const accentColor = useCssVar('--theme-color-chart', null, { observe: true });
const accentColor = useCssVar("--theme-color-chart", null, { observe: true });
// Get the organization ID using the utility function // Get the organization ID using the utility function
const organizationId = computed(() => getCurrentOrganizationId()); const organizationId = computed(() => getCurrentOrganizationId());
const organization = inject<ComputedRef<Organization>>('organization');
// Set up the queries // Set up the queries
const { data: weeklyProjectOverview } = useQuery({ const { data: weeklyProjectOverview } = useQuery({
queryKey: ["weeklyProjectOverview", organizationId], queryKey: ['weeklyProjectOverview', organizationId],
queryFn: () => { queryFn: () => {
return api.weeklyProjectOverview({ return api.weeklyProjectOverview({
params: { params: {
organization: organizationId.value! organization: organizationId.value!,
} },
}); });
}, },
enabled: computed(() => !!organizationId.value) enabled: computed(() => !!organizationId.value),
}); });
const { data: totalWeeklyTime } = useQuery({ const { data: totalWeeklyTime } = useQuery({
queryKey: ["totalWeeklyTime", organizationId], queryKey: ['totalWeeklyTime', organizationId],
queryFn: () => { queryFn: () => {
return api.totalWeeklyTime({ return api.totalWeeklyTime({
params: { params: {
organization: organizationId.value! organization: organizationId.value!,
} },
}); });
}, },
enabled: computed(() => !!organizationId.value) enabled: computed(() => !!organizationId.value),
}); });
const { data: totalWeeklyBillableTime } = useQuery({ const { data: totalWeeklyBillableTime } = useQuery({
queryKey: ["totalWeeklyBillableTime", organizationId], queryKey: ['totalWeeklyBillableTime', organizationId],
queryFn: () => { queryFn: () => {
return api.totalWeeklyBillableTime({ return api.totalWeeklyBillableTime({
params: { params: {
organization: organizationId.value! organization: organizationId.value!,
} },
}); });
}, },
enabled: computed(() => !!organizationId.value) enabled: computed(() => !!organizationId.value),
}); });
const { data: totalWeeklyBillableAmount } = useQuery({ const { data: totalWeeklyBillableAmount } = useQuery({
queryKey: ["totalWeeklyBillableAmount", organizationId], queryKey: ['totalWeeklyBillableAmount', organizationId],
queryFn: () => { queryFn: () => {
return api.totalWeeklyBillableAmount({ return api.totalWeeklyBillableAmount({
params: { params: {
organization: organizationId.value! organization: organizationId.value!,
} },
}); });
}, },
enabled: computed(() => !!organizationId.value) enabled: computed(() => !!organizationId.value),
}); });
const { data: weeklyHistory } = useQuery({ const { data: weeklyHistory } = useQuery({
queryKey: ["weeklyHistory", organizationId], queryKey: ['weeklyHistory', organizationId],
queryFn: () => { queryFn: () => {
return api.weeklyHistory({ return api.weeklyHistory({
params: { params: {
organization: organizationId.value! organization: organizationId.value!,
} },
}); });
}, },
enabled: computed(() => !!organizationId.value) enabled: computed(() => !!organizationId.value),
}); });
const seriesData = computed(() => { const seriesData = computed(() => {
if (!weeklyHistory.value) { if (!weeklyHistory.value) {
return []; return [];
@@ -137,101 +140,104 @@ const seriesData = computed(() => {
borderColor: new LinearGradient(0, 0, 0, 1, [ borderColor: new LinearGradient(0, 0, 0, 1, [
{ {
offset: 0, offset: 0,
color: "rgba(" + accentColor.value + ",0.7)" color: 'rgba(' + accentColor.value + ',0.7)',
}, },
{ {
offset: 1, offset: 1,
color: "rgba(" + accentColor.value + ",0.5)" color: 'rgba(' + accentColor.value + ',0.5)',
} },
]), ]),
emphasis: { emphasis: {
color: new LinearGradient(0, 0, 0, 1, [ color: new LinearGradient(0, 0, 0, 1, [
{ {
offset: 0, offset: 0,
color: "rgba(" + accentColor.value + ",0.9)" color: 'rgba(' + accentColor.value + ',0.9)',
}, },
{ {
offset: 1, offset: 1,
color: "rgba(" + accentColor.value + ",0.7)" color: 'rgba(' + accentColor.value + ',0.7)',
} },
]) ]),
}, },
borderRadius: [12, 12, 0, 0], borderRadius: [12, 12, 0, 0],
color: new LinearGradient(0, 0, 0, 1, [ color: new LinearGradient(0, 0, 0, 1, [
{ {
offset: 0, offset: 0,
color: "rgba(" + accentColor.value + ",0.7)" color: 'rgba(' + accentColor.value + ',0.7)',
}, },
{ {
offset: 1, offset: 1,
color: "rgba(" + accentColor.value + ",0.5)" color: 'rgba(' + accentColor.value + ',0.5)',
} },
]) ]),
} },
} },
}; };
}); });
}); });
const markLineColor = useCssVar('--color-border-secondary', null, {
const markLineColor = useCssVar("--color-border-secondary", null, { observe: true }); observe: true,
const labelColor = useCssVar("--color-text-secondary", null, { observe: true }); });
const labelColor = useCssVar('--color-text-secondary', null, { observe: true });
const option = computed(() => { const option = computed(() => {
return { return {
tooltip: { tooltip: {
trigger: "item" trigger: 'item',
}, },
grid: { grid: {
top: 0, top: 0,
right: 0, right: 0,
bottom: 50, bottom: 50,
left: 0 left: 0,
}, },
backgroundColor: "transparent", backgroundColor: 'transparent',
xAxis: { xAxis: {
type: "category", type: 'category',
data: weekdays.value, data: weekdays.value,
axisLine: { axisLine: {
lineStyle: { lineStyle: {
color: "transparent" // Set desired color here color: 'transparent', // Set desired color here
} },
}, },
axisLabel: { axisLabel: {
fontSize: 16, fontSize: 16,
fontWeight: 600, fontWeight: 600,
margin: 24, margin: 24,
fontFamily: "Outfit, sans-serif", fontFamily: 'Outfit, sans-serif',
color: labelColor.value color: labelColor.value,
}, },
axisTick: { axisTick: {
lineStyle: { lineStyle: {
color: "transparent" // Set desired color here color: 'transparent', // Set desired color here
} },
} },
}, },
yAxis: { yAxis: {
type: "value", type: 'value',
splitLine: { splitLine: {
lineStyle: { lineStyle: {
color: markLineColor.value color: markLineColor.value,
} },
} },
}, },
series: [ series: [
{ {
data: seriesData.value, data: seriesData.value,
type: "bar", type: 'bar',
tooltip: { tooltip: {
valueFormatter: (value: number) => { valueFormatter: (value: number) => {
return formatHumanReadableDuration(value); return formatHumanReadableDuration(
} value,
} organization?.value?.interval_format,
} organization?.value?.number_format
] );
},
},
},
],
}; };
}); });
</script> </script>
<template> <template>
@@ -244,28 +250,42 @@ const option = computed(() => {
:icon="ClockIcon"></CardTitle> :icon="ClockIcon"></CardTitle>
<v-chart <v-chart
v-if="weeklyHistory" v-if="weeklyHistory"
:autoresize="true" class="chart" :option="option" /> :autoresize="true"
class="chart"
:option="option" />
</div> </div>
<div class="space-y-6"> <div class="space-y-6">
<StatCard <StatCard
title="Spent Time" title="Spent Time"
:value=" :value="
totalWeeklyTime ? totalWeeklyTime
formatHumanReadableDuration(totalWeeklyTime) : '--'" /> ? formatHumanReadableDuration(
totalWeeklyTime,
organization?.interval_format,
organization?.number_format
)
: '--'
" />
<StatCard <StatCard
title="Billable Time" title="Billable Time"
:value=" :value="
totalWeeklyBillableTime ? totalWeeklyBillableTime
formatHumanReadableDuration(totalWeeklyBillableTime) : '--' ? formatHumanReadableDuration(
totalWeeklyBillableTime,
organization?.interval_format,
organization?.number_format
)
: '--'
" /> " />
<StatCard <StatCard
title="Billable Amount" title="Billable Amount"
:value=" :value="
totalWeeklyBillableAmount ? totalWeeklyBillableAmount
formatCents( ? formatCents(
totalWeeklyBillableAmount.value, totalWeeklyBillableAmount.value,
getOrganizationCurrencyString() getOrganizationCurrencyString()
) : '--' )
: '--'
" /> " />
<ProjectsChartCard <ProjectsChartCard
v-if="weeklyProjectOverview" v-if="weeklyProjectOverview"

View File

@@ -15,20 +15,22 @@ import {
UserCircleIcon, UserCircleIcon,
UserGroupIcon, UserGroupIcon,
XMarkIcon, XMarkIcon,
DocumentTextIcon DocumentTextIcon,
} from '@heroicons/vue/20/solid'; } from '@heroicons/vue/20/solid';
import NavigationSidebarItem from '@/Components/NavigationSidebarItem.vue'; import NavigationSidebarItem from '@/Components/NavigationSidebarItem.vue';
import UserSettingsIcon from '@/Components/UserSettingsIcon.vue'; import UserSettingsIcon from '@/Components/UserSettingsIcon.vue';
import MainContainer from '@/packages/ui/src/MainContainer.vue'; import MainContainer from '@/packages/ui/src/MainContainer.vue';
import { onMounted, ref } from "vue"; import { computed, onMounted, provide, ref } from 'vue';
import NotificationContainer from '@/Components/NotificationContainer.vue'; import NotificationContainer from '@/Components/NotificationContainer.vue';
import { initializeStores, refreshStores } from '@/utils/init'; import { initializeStores, refreshStores } from '@/utils/init';
import { import {
canManageBilling, canManageBilling,
canUpdateOrganization, canUpdateOrganization,
canViewClients, canViewInvoices, canViewClients,
canViewInvoices,
canViewMembers, canViewMembers,
canViewProjects, canViewReport, canViewProjects,
canViewReport,
canViewTags, canViewTags,
} from '@/utils/permissions'; } from '@/utils/permissions';
import { isBillingActivated, isInvoicingActivated } from '@/utils/billing'; import { isBillingActivated, isInvoicingActivated } from '@/utils/billing';
@@ -37,7 +39,11 @@ import { ArrowsRightLeftIcon } from '@heroicons/vue/16/solid';
import { fetchToken, isTokenValid } from '@/utils/session'; import { fetchToken, isTokenValid } from '@/utils/session';
import UpdateSidebarNotification from '@/Components/UpdateSidebarNotification.vue'; import UpdateSidebarNotification from '@/Components/UpdateSidebarNotification.vue';
import BillingBanner from '@/Components/Billing/BillingBanner.vue'; import BillingBanner from '@/Components/Billing/BillingBanner.vue';
import { useTheme } from "@/utils/theme"; import { useTheme } from '@/utils/theme';
import { useQuery } from '@tanstack/vue-query';
import { api } from '@/packages/api/src';
import { getCurrentOrganizationId } from '@/utils/useUser';
import LoadingSpinner from '@/packages/ui/src/LoadingSpinner.vue';
defineProps({ defineProps({
title: String, title: String,
@@ -45,9 +51,25 @@ defineProps({
const showSidebarMenu = ref(false); const showSidebarMenu = ref(false);
const isUnloading = ref(false); const isUnloading = ref(false);
onMounted(async () => {
useTheme() const { data: organization, isLoading: isOrganizationLoading } = useQuery({
queryKey: ['organization', getCurrentOrganizationId()],
queryFn: () =>
api.getOrganization({
params: {
organization: getCurrentOrganizationId()!,
},
}),
enabled: !!getCurrentOrganizationId(),
});
provide(
'organization',
computed(() => organization.value?.data)
);
onMounted(async () => {
useTheme();
// make sure that the initial requests are only loaded once, this can be removed once we move away from inertia // make sure that the initial requests are only loaded once, this can be removed once we move away from inertia
if (window.initialDataLoaded !== true) { if (window.initialDataLoaded !== true) {
window.initialDataLoaded = true; window.initialDataLoaded = true;
@@ -77,7 +99,9 @@ const page = usePage<{
</script> </script>
<template> <template>
<div v-bind="$attrs" class="flex flex-wrap bg-background text-text-secondary"> <div
v-bind="$attrs"
class="flex flex-wrap bg-background text-text-secondary">
<div <div
:class="{ :class="{
'!flex bg-default-background w-full z-[9999999999]': '!flex bg-default-background w-full z-[9999999999]':
@@ -122,17 +146,17 @@ const page = usePage<{
{ {
title: 'Overview', title: 'Overview',
route: 'reporting', route: 'reporting',
show: true show: true,
}, },
{ {
title: 'Detailed', title: 'Detailed',
route: 'reporting.detailed', route: 'reporting.detailed',
show: true show: true,
}, },
{ {
title: 'Shared', title: 'Shared',
route: 'reporting.shared', route: 'reporting.shared',
show: canViewReport() show: canViewReport(),
}, },
]" ]"
:current=" :current="
@@ -183,7 +207,9 @@ const page = usePage<{
:current="route().current('tags')" :current="route().current('tags')"
:href="route('tags')"></NavigationSidebarItem> :href="route('tags')"></NavigationSidebarItem>
<NavigationSidebarItem <NavigationSidebarItem
v-if="isInvoicingActivated() && canViewInvoices()" v-if="
isInvoicingActivated() && canViewInvoices()
"
title="Invoices" title="Invoices"
:icon="DocumentTextIcon" :icon="DocumentTextIcon"
:current="route().current('invoices')" :current="route().current('invoices')"
@@ -276,8 +302,12 @@ const page = usePage<{
<!-- Page Content --> <!-- Page Content -->
<main class="pb-28 flex-1"> <main class="pb-28 flex-1">
<slot /> <div
v-if="isOrganizationLoading"
class="flex items-center justify-center h-screen">
<LoadingSpinner />
</div>
<slot v-else />
</main> </main>
</div> </div>
</div> </div>

View File

@@ -1,277 +1,8 @@
<script setup lang="ts"> <script setup lang="ts">
import MainContainer from '@/packages/ui/src/MainContainer.vue';
import AppLayout from '@/Layouts/AppLayout.vue'; import AppLayout from '@/Layouts/AppLayout.vue';
import { FolderIcon } from '@heroicons/vue/16/solid'; import ReportingOverview from "@/Components/Common/Reporting/ReportingOverview.vue";
import PageTitle from '@/Components/Common/PageTitle.vue';
import {
ChartBarIcon,
UserGroupIcon,
CheckCircleIcon,
TagIcon,
} from '@heroicons/vue/20/solid';
import DateRangePicker from '@/packages/ui/src/Input/DateRangePicker.vue';
import ReportingChart from '@/Components/Common/Reporting/ReportingChart.vue';
import BillableIcon from '@/packages/ui/src/Icons/BillableIcon.vue';
import { computed, onMounted, ref } from 'vue';
import {
formatHumanReadableDuration,
getDayJsInstance,
getLocalizedDayJs,
} from '@/packages/ui/src/utils/time';
import { type GroupingOption, useReportingStore } from '@/utils/useReporting';
import { storeToRefs } from 'pinia';
import TagDropdown from '@/packages/ui/src/Tag/TagDropdown.vue';
import {
type AggregatedTimeEntriesQueryParams,
type CreateReportBodyProperties,
api,
} from '@/packages/api/src';
import ReportingFilterBadge from '@/Components/Common/Reporting/ReportingFilterBadge.vue';
import ProjectMultiselectDropdown from '@/Components/Common/Project/ProjectMultiselectDropdown.vue';
import MemberMultiselectDropdown from '@/Components/Common/Member/MemberMultiselectDropdown.vue';
import TaskMultiselectDropdown from '@/Components/Common/Task/TaskMultiselectDropdown.vue';
import SelectDropdown from '@/packages/ui/src/Input/SelectDropdown.vue';
import ReportingGroupBySelect from '@/Components/Common/Reporting/ReportingGroupBySelect.vue';
import ReportingRow from '@/Components/Common/Reporting/ReportingRow.vue';
import { getOrganizationCurrencyString } from '@/utils/money';
import ReportingPieChart from '@/Components/Common/Reporting/ReportingPieChart.vue';
import {
getCurrentMembershipId,
getCurrentOrganizationId,
getCurrentRole,
} from '@/utils/useUser';
import ClientMultiselectDropdown from '@/Components/Common/Client/ClientMultiselectDropdown.vue';
import { useTagsStore } from '@/utils/useTags';
import { formatCents } from '@/packages/ui/src/utils/money';
import { useSessionStorage, useStorage } from '@vueuse/core';
import ReportingTabNavbar from '@/Components/Common/Reporting/ReportingTabNavbar.vue';
import { useNotificationsStore } from '@/utils/notification';
import ReportingExportButton from '@/Components/Common/Reporting/ReportingExportButton.vue';
import type { ExportFormat } from '@/types/reporting';
import ReportSaveButton from '@/Components/Common/Report/ReportSaveButton.vue';
import { getRandomColorWithSeed } from '@/packages/ui/src/utils/color';
const { handleApiRequestNotifications } = useNotificationsStore();
const startDate = useSessionStorage<string>(
'reporting-start-date',
getLocalizedDayJs(getDayJsInstance()().format()).subtract(14, 'd').format()
);
const endDate = useSessionStorage<string>(
'reporting-end-date',
getLocalizedDayJs(getDayJsInstance()().format()).format()
);
const selectedTags = ref<string[]>([]);
const selectedProjects = ref<string[]>([]);
const selectedMembers = ref<string[]>([]);
const selectedTasks = ref<string[]>([]);
const selectedClients = ref<string[]>([]);
const billable = ref<'true' | 'false' | null>(null);
const group = useStorage<GroupingOption>('reporting-group', 'project');
const subGroup = useStorage<GroupingOption>('reporting-sub-group', 'task');
const reportingStore = useReportingStore();
const { aggregatedGraphTimeEntries, aggregatedTableTimeEntries } =
storeToRefs(reportingStore);
const { groupByOptions } = reportingStore;
function getFilterAttributes(): AggregatedTimeEntriesQueryParams {
let params: AggregatedTimeEntriesQueryParams = {
start: getLocalizedDayJs(startDate.value).startOf('day').utc().format(),
end: getLocalizedDayJs(endDate.value).endOf('day').utc().format(),
};
params = {
...params,
member_ids:
selectedMembers.value.length > 0
? selectedMembers.value
: undefined,
project_ids:
selectedProjects.value.length > 0
? selectedProjects.value
: undefined,
task_ids:
selectedTasks.value.length > 0 ? selectedTasks.value : undefined,
client_ids:
selectedClients.value.length > 0
? selectedClients.value
: undefined,
tag_ids: selectedTags.value.length > 0 ? selectedTags.value : undefined,
billable: billable.value !== null ? billable.value : undefined,
};
return params;
}
function updateGraphReporting() {
const params = getFilterAttributes();
if (getCurrentRole() === 'employee') {
params.member_id = getCurrentMembershipId();
}
params.fill_gaps_in_time_groups = 'true';
params.group = getOptimalGroupingOption(startDate.value, endDate.value);
useReportingStore().fetchGraphReporting(params);
}
function updateTableReporting() {
const params = getFilterAttributes();
if (group.value === subGroup.value) {
const fallbackOption = groupByOptions.find(
(el) => el.value !== group.value
);
if (fallbackOption?.value) {
subGroup.value = fallbackOption.value;
}
}
if (getCurrentRole() === 'employee') {
params.member_id = getCurrentMembershipId();
}
params.group = group.value;
params.sub_group = subGroup.value;
useReportingStore().fetchTableReporting(params);
}
function updateReporting() {
updateGraphReporting();
updateTableReporting();
}
function getOptimalGroupingOption(
startDate: string,
endDate: string
): 'day' | 'week' | 'month' {
const diffInDays = getDayJsInstance()(endDate).diff(
getDayJsInstance()(startDate),
'd'
);
if (diffInDays <= 31) {
return 'day';
} else if (diffInDays <= 200) {
return 'week';
} else {
return 'month';
}
}
onMounted(() => {
updateGraphReporting();
updateTableReporting();
});
const { tags } = storeToRefs(useTagsStore());
async function createTag(tag: string) {
return await useTagsStore().createTag(tag);
}
const reportProperties = computed(() => {
return {
...getFilterAttributes(),
group: group.value,
sub_group: subGroup.value,
history_group: getOptimalGroupingOption(startDate.value, endDate.value),
} as CreateReportBodyProperties;
});
async function downloadExport(format: ExportFormat) {
const organizationId = getCurrentOrganizationId();
if (organizationId) {
const response = await handleApiRequestNotifications(
() =>
api.exportAggregatedTimeEntries({
params: {
organization: organizationId,
},
queries: {
...getFilterAttributes(),
group: group.value,
sub_group: subGroup.value,
history_group: getOptimalGroupingOption(
startDate.value,
endDate.value
),
format: format,
},
}),
'Export successful',
'Export failed'
);
if (response?.download_url) {
showExportModal.value = true;
exportUrl.value = response.download_url as string;
}
}
}
const { getNameForReportingRowEntry, emptyPlaceholder } = useReportingStore();
import { useProjectsStore } from '@/utils/useProjects';
import ReportingExportModal from '@/Components/Common/Reporting/ReportingExportModal.vue';
const projectsStore = useProjectsStore();
const { projects } = storeToRefs(projectsStore);
const showExportModal = ref(false);
const exportUrl = ref<string | null>(null);
const groupedPieChartData = computed(() => {
return (
aggregatedTableTimeEntries.value?.grouped_data?.map((entry) => {
const name = getNameForReportingRowEntry(
entry.key,
aggregatedTableTimeEntries.value?.grouped_type
);
let color = getRandomColorWithSeed(entry.key ?? 'none');
if (
name &&
aggregatedTableTimeEntries.value?.grouped_type &&
emptyPlaceholder[
aggregatedTableTimeEntries.value?.grouped_type
] === name
) {
color = '#CCCCCC';
} else if (
aggregatedTableTimeEntries.value?.grouped_type === 'project'
) {
color =
projects.value?.find((project) => project.id === entry.key)
?.color ?? '#CCCCCC';
}
return {
value: entry.seconds,
name:
getNameForReportingRowEntry(
entry.key,
aggregatedTableTimeEntries.value?.grouped_type
) ?? '',
color: color,
};
}) ?? []
);
});
const tableData = computed(() => {
return aggregatedTableTimeEntries.value?.grouped_data?.map((entry) => {
return {
seconds: entry.seconds,
cost: entry.cost,
description: getNameForReportingRowEntry(
entry.key,
aggregatedTableTimeEntries.value?.grouped_type
),
grouped_data:
entry.grouped_data?.map((el) => {
return {
seconds: el.seconds,
cost: el.cost,
description: getNameForReportingRowEntry(
el.key,
entry.grouped_type
),
};
}) ?? [],
};
});
});
</script> </script>
<template> <template>
@@ -279,218 +10,6 @@ const tableData = computed(() => {
title="Reporting" title="Reporting"
data-testid="reporting_view" data-testid="reporting_view"
class="overflow-hidden"> class="overflow-hidden">
<ReportingExportModal <ReportingOverview></ReportingOverview>
v-model:show="showExportModal"
:export-url="exportUrl"></ReportingExportModal>
<MainContainer
class="py-3 sm:py-5 border-b border-default-background-separator flex justify-between items-center">
<div class="flex items-center space-x-3 sm:space-x-6">
<PageTitle :icon="ChartBarIcon" title="Reporting"></PageTitle>
<ReportingTabNavbar active="reporting"></ReportingTabNavbar>
</div>
<div class="flex space-x-2">
<ReportingExportButton
:download="downloadExport"></ReportingExportButton>
<ReportSaveButton
:report-properties="reportProperties"></ReportSaveButton>
</div>
</MainContainer>
<div class="py-2.5 w-full border-b border-default-background-separator">
<MainContainer
class="sm:flex space-y-4 sm:space-y-0 justify-between">
<div
class="flex flex-wrap items-center space-y-2 sm:space-y-0 space-x-4">
<div class="text-sm font-medium">Filters</div>
<MemberMultiselectDropdown
v-model="selectedMembers"
@submit="updateReporting">
<template #trigger>
<ReportingFilterBadge
:count="selectedMembers.length"
:active="selectedMembers.length > 0"
title="Members"
:icon="UserGroupIcon"></ReportingFilterBadge>
</template>
</MemberMultiselectDropdown>
<ProjectMultiselectDropdown
v-model="selectedProjects"
@submit="updateReporting">
<template #trigger>
<ReportingFilterBadge
:count="selectedProjects.length"
:active="selectedProjects.length > 0"
title="Projects"
:icon="FolderIcon"></ReportingFilterBadge>
</template>
</ProjectMultiselectDropdown>
<TaskMultiselectDropdown
v-model="selectedTasks"
@submit="updateReporting">
<template #trigger>
<ReportingFilterBadge
:count="selectedTasks.length"
:active="selectedTasks.length > 0"
title="Tasks"
:icon="CheckCircleIcon"></ReportingFilterBadge>
</template>
</TaskMultiselectDropdown>
<ClientMultiselectDropdown
v-model="selectedClients"
@submit="updateReporting">
<template #trigger>
<ReportingFilterBadge
:count="selectedClients.length"
:active="selectedClients.length > 0"
title="Clients"
:icon="FolderIcon"></ReportingFilterBadge>
</template>
</ClientMultiselectDropdown>
<TagDropdown
v-model="selectedTags"
:create-tag
:tags="tags"
@submit="updateReporting">
<template #trigger>
<ReportingFilterBadge
:count="selectedTags.length"
:active="selectedTags.length > 0"
title="Tags"
:icon="TagIcon"></ReportingFilterBadge>
</template>
</TagDropdown>
<SelectDropdown
v-model="billable"
:get-key-from-item="(item) => item.value"
:get-name-for-item="(item) => item.label"
:items="[
{
label: 'Both',
value: null,
},
{
label: 'Billable',
value: 'true',
},
{
label: 'Non Billable',
value: 'false',
},
]"
@changed="updateReporting">
<template #trigger>
<ReportingFilterBadge
:active="billable !== null"
:title="
billable === 'false'
? 'Non Billable'
: 'Billable'
"
:icon="BillableIcon"></ReportingFilterBadge>
</template>
</SelectDropdown>
</div>
<div>
<DateRangePicker
v-model:start="startDate"
v-model:end="endDate"
@submit="updateReporting"></DateRangePicker>
</div>
</MainContainer>
</div>
<MainContainer>
<div class="pt-10 w-full px-3 relative">
<ReportingChart
:grouped-type="aggregatedGraphTimeEntries?.grouped_type"
:grouped-data="
aggregatedGraphTimeEntries?.grouped_data
"></ReportingChart>
</div>
</MainContainer>
<MainContainer>
<div class="sm:grid grid-cols-4 pt-6 items-start">
<div
class="col-span-3 bg-card-background rounded-lg border border-card-border pt-3">
<div
class="text-sm flex text-text-primary items-center space-x-3 font-medium px-6 border-b border-card-background-separator pb-3">
<span>Group by</span>
<ReportingGroupBySelect
v-model="group"
:group-by-options="groupByOptions"
@changed="updateTableReporting"></ReportingGroupBySelect>
<span>and</span>
<ReportingGroupBySelect
v-model="subGroup"
:group-by-options="
groupByOptions.filter(
(el) => el.value !== group
)
"
@changed="updateTableReporting"></ReportingGroupBySelect>
</div>
<div
class="grid items-center"
style="grid-template-columns: 1fr 100px 150px">
<div
class="contents [&>*]:border-card-background-separator [&>*]:border-b [&>*]:bg-tertiary [&>*]:pb-1.5 [&>*]:pt-1 text-text-secondary text-sm">
<div class="pl-6">Name</div>
<div class="text-right">Duration</div>
<div class="text-right pr-6">Cost</div>
</div>
<template
v-if="
aggregatedTableTimeEntries?.grouped_data &&
aggregatedTableTimeEntries.grouped_data
?.length > 0
">
<ReportingRow
v-for="entry in tableData"
:key="entry.description ?? 'none'"
:currency="getOrganizationCurrencyString()"
:entry="entry"
:type="
aggregatedTableTimeEntries.grouped_type
"></ReportingRow>
<div
class="contents [&>*]:transition text-text-tertiary [&>*]:h-[50px]">
<div class="flex items-center pl-6 font-medium">
<span>Total</span>
</div>
<div
class="justify-end flex items-center font-medium">
{{
formatHumanReadableDuration(
aggregatedTableTimeEntries.seconds
)
}}
</div>
<div
class="justify-end pr-6 flex items-center font-medium">
{{
aggregatedTableTimeEntries.cost ?
formatCents(
aggregatedTableTimeEntries.cost,
getOrganizationCurrencyString()
) : '--'
}}
</div>
</div>
</template>
<div
v-else
class="chart flex flex-col items-center justify-center py-12 col-span-3">
<p class="text-lg text-text-primary font-semibold">
No time entries found
</p>
<p>Try to change the filters and time range</p>
</div>
</div>
</div>
<div class="px-2 lg:px-4">
<ReportingPieChart
:data="groupedPieChartData"></ReportingPieChart>
</div>
</div>
</MainContainer>
</AppLayout> </AppLayout>
</template> </template>

View File

@@ -7,13 +7,13 @@ import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time';
import ReportingRow from '@/Components/Common/Reporting/ReportingRow.vue'; import ReportingRow from '@/Components/Common/Reporting/ReportingRow.vue';
import ReportingPieChart from '@/Components/Common/Reporting/ReportingPieChart.vue'; import ReportingPieChart from '@/Components/Common/Reporting/ReportingPieChart.vue';
import { formatCents } from '@/packages/ui/src/utils/money'; import { formatCents } from '@/packages/ui/src/utils/money';
import { computed, onMounted, ref } from 'vue'; import { computed, onMounted, provide, ref } from 'vue';
import { useQuery } from '@tanstack/vue-query'; import { useQuery } from '@tanstack/vue-query';
import { api } from '@/packages/api/src'; import { api } from '@/packages/api/src';
import { getRandomColorWithSeed } from '@/packages/ui/src/utils/color'; import { getRandomColorWithSeed } from '@/packages/ui/src/utils/color';
import { useReportingStore } from '@/utils/useReporting'; import { useReportingStore } from '@/utils/useReporting';
import { Head } from '@inertiajs/vue3'; import { Head } from '@inertiajs/vue3';
import { useTheme } from "@/utils/theme"; import { useTheme } from '@/utils/theme';
const sharedSecret = ref<string | null>(null); const sharedSecret = ref<string | null>(null);
@@ -47,6 +47,22 @@ const reportCurrency = computed(() => {
return 'EUR'; return 'EUR';
}); });
const reportIntervalFormat = computed(() => {
return sharedReportResponseData.value?.interval_format;
});
const reportNumberFormat = computed(() => {
return sharedReportResponseData.value?.number_format;
});
provide(
'organization',
computed(() => ({
'number_format': reportNumberFormat.value,
'interval_format': reportIntervalFormat.value,
}))
);
const aggregatedTableTimeEntries = computed(() => { const aggregatedTableTimeEntries = computed(() => {
if (sharedReportResponseData.value) { if (sharedReportResponseData.value) {
return sharedReportResponseData.value?.data; return sharedReportResponseData.value?.data;
@@ -138,15 +154,16 @@ const tableData = computed(() => {
}); });
const { groupByOptions } = useReportingStore(); const { groupByOptions } = useReportingStore();
function getGroupLabel(key: string) { function getGroupLabel(key: string) {
return groupByOptions.find((option) => { return groupByOptions.find((option) => {
return option.value === key; return option.value === key;
})?.label; })?.label;
} }
onMounted(async () => { onMounted(async () => {
useTheme(); useTheme();
}) });
</script> </script>
<template> <template>
@@ -214,6 +231,8 @@ onMounted(async () => {
{{ {{
formatHumanReadableDuration( formatHumanReadableDuration(
aggregatedTableTimeEntries.seconds, aggregatedTableTimeEntries.seconds,
reportIntervalFormat,
reportNumberFormat
) )
}} }}
</div> </div>
@@ -222,7 +241,7 @@ onMounted(async () => {
{{ {{
formatCents( formatCents(
aggregatedTableTimeEntries.cost, aggregatedTableTimeEntries.cost,
reportCurrency, reportCurrency
) )
}} }}
</div> </div>

View File

@@ -6,14 +6,21 @@ import InputLabel from '@/packages/ui/src/Input/InputLabel.vue';
import type { UpdateOrganizationBody } from '@/packages/api/src'; import type { UpdateOrganizationBody } from '@/packages/api/src';
import { useOrganizationStore } from '@/utils/useOrganization'; import { useOrganizationStore } from '@/utils/useOrganization';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/Components/ui/select'; import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from '@/Components/ui/select';
import { useMutation, useQueryClient } from '@tanstack/vue-query'; import { useMutation, useQueryClient } from '@tanstack/vue-query';
import type {
type NumberFormat = 'point-comma' | 'comma-point' | 'space-comma' | 'space-point' | 'apostrophe-point'; CurrencyFormat,
type CurrencyFormat = 'iso-code-before-with-space' | 'iso-code-after-with-space' | 'symbol-before' | 'symbol-after' | 'symbol-before-with-space' | 'symbol-after-with-space'; DateFormat,
type DateFormat = 'point-separated-d-m-yyyy' | 'slash-separated-mm-dd-yyyy' | 'slash-separated-dd-mm-yyyy' | 'hyphen-separated-dd-mm-yyyy' | 'hyphen-separated-mm-dd-yyyy' | 'hyphen-separated-yyyy-mm-dd'; TimeFormat,
type TimeFormat = '12-hours' | '24-hours'; IntervalFormat,
type IntervalFormat = 'decimal' | 'hours-minutes' | 'hours-minutes-colon-separated' | 'hours-minutes-seconds-colon-separated'; } from '@/packages/ui/src/utils/time';
import type { NumberFormat } from '@/packages/ui/src/utils/number';
interface FormValues { interface FormValues {
number_format: NumberFormat | undefined; number_format: NumberFormat | undefined;
@@ -37,7 +44,8 @@ const form = ref<FormValues>({
}); });
const mutation = useMutation({ const mutation = useMutation({
mutationFn: (values: FormValues) => updateOrganization(values as UpdateOrganizationBody), mutationFn: (values: FormValues) =>
updateOrganization(values as UpdateOrganizationBody),
onSuccess: () => { onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ['organization'] }); queryClient.invalidateQueries({ queryKey: ['organization'] });
}, },
@@ -48,10 +56,12 @@ onMounted(async () => {
if (organization.value) { if (organization.value) {
form.value = { form.value = {
number_format: organization.value.number_format as NumberFormat, number_format: organization.value.number_format as NumberFormat,
currency_format: organization.value.currency_format as CurrencyFormat, currency_format: organization.value
.currency_format as CurrencyFormat,
date_format: organization.value.date_format as DateFormat, date_format: organization.value.date_format as DateFormat,
time_format: organization.value.time_format as TimeFormat, time_format: organization.value.time_format as TimeFormat,
interval_format: organization.value.interval_format as IntervalFormat, interval_format: organization?.value
.interval_format as IntervalFormat,
}; };
} }
}); });
@@ -73,17 +83,30 @@ async function submit() {
<!-- Number Format --> <!-- Number Format -->
<div class="col-span-6"> <div class="col-span-6">
<div class="col-span-6 sm:col-span-4"> <div class="col-span-6 sm:col-span-4">
<InputLabel for="numberFormat" class="mb-2" value="Number Format" /> <InputLabel
for="numberFormat"
class="mb-2"
value="Number Format" />
<Select v-model="form.number_format"> <Select v-model="form.number_format">
<SelectTrigger id="numberFormat"> <SelectTrigger id="numberFormat">
<SelectValue placeholder="Select number format" /> <SelectValue placeholder="Select number format" />
</SelectTrigger> </SelectTrigger>
<SelectContent> <SelectContent>
<SelectItem value="point-comma">1.111,11</SelectItem> <SelectItem value="point-comma"
<SelectItem value="comma-point">1,111.11</SelectItem> >1.111,11</SelectItem
<SelectItem value="space-comma">1 111,11</SelectItem> >
<SelectItem value="space-point">1 111.11</SelectItem> <SelectItem value="comma-point"
<SelectItem value="apostrophe-point">1'111.11</SelectItem> >1,111.11</SelectItem
>
<SelectItem value="space-comma"
>1 111,11</SelectItem
>
<SelectItem value="space-point"
>1 111.11</SelectItem
>
<SelectItem value="apostrophe-point"
>1'111.11</SelectItem
>
</SelectContent> </SelectContent>
</Select> </Select>
</div> </div>
@@ -92,18 +115,29 @@ async function submit() {
<!-- Currency Format --> <!-- Currency Format -->
<div class="col-span-6"> <div class="col-span-6">
<div class="col-span-6 sm:col-span-4"> <div class="col-span-6 sm:col-span-4">
<InputLabel for="currencyFormat" class="mb-2" value="Currency Format" /> <InputLabel
for="currencyFormat"
class="mb-2"
value="Currency Format" />
<Select v-model="form.currency_format"> <Select v-model="form.currency_format">
<SelectTrigger id="currencyFormat"> <SelectTrigger id="currencyFormat">
<SelectValue placeholder="Select currency format" /> <SelectValue placeholder="Select currency format" />
</SelectTrigger> </SelectTrigger>
<SelectContent> <SelectContent>
<SelectItem value="iso-code-before-with-space">EUR 111</SelectItem> <SelectItem value="iso-code-before-with-space"
<SelectItem value="iso-code-after-with-space">111 EUR</SelectItem> >EUR 111</SelectItem
>
<SelectItem value="iso-code-after-with-space"
>111 EUR</SelectItem
>
<SelectItem value="symbol-before">€111</SelectItem> <SelectItem value="symbol-before">€111</SelectItem>
<SelectItem value="symbol-after">111€</SelectItem> <SelectItem value="symbol-after">111€</SelectItem>
<SelectItem value="symbol-before-with-space">€ 111</SelectItem> <SelectItem value="symbol-before-with-space"
<SelectItem value="symbol-after-with-space">111</SelectItem> >€ 111</SelectItem
>
<SelectItem value="symbol-after-with-space"
>111 €</SelectItem
>
</SelectContent> </SelectContent>
</Select> </Select>
</div> </div>
@@ -112,18 +146,33 @@ async function submit() {
<!-- Date Format --> <!-- Date Format -->
<div class="col-span-6"> <div class="col-span-6">
<div class="col-span-6 sm:col-span-4"> <div class="col-span-6 sm:col-span-4">
<InputLabel for="dateFormat" class="mb-2" value="Date Format" /> <InputLabel
for="dateFormat"
class="mb-2"
value="Date Format" />
<Select v-model="form.date_format"> <Select v-model="form.date_format">
<SelectTrigger id="dateFormat"> <SelectTrigger id="dateFormat">
<SelectValue placeholder="Select date format" /> <SelectValue placeholder="Select date format" />
</SelectTrigger> </SelectTrigger>
<SelectContent> <SelectContent>
<SelectItem value="point-separated-d-m-yyyy">D.M.YYYY</SelectItem> <SelectItem value="point-separated-d-m-yyyy"
<SelectItem value="slash-separated-mm-dd-yyyy">MM/DD/YYYY</SelectItem> >D.M.YYYY</SelectItem
<SelectItem value="slash-separated-dd-mm-yyyy">DD/MM/YYYY</SelectItem> >
<SelectItem value="hyphen-separated-dd-mm-yyyy">DD-MM-YYYY</SelectItem> <SelectItem value="slash-separated-mm-dd-yyyy"
<SelectItem value="hyphen-separated-mm-dd-yyyy">MM-DD-YYYY</SelectItem> >MM/DD/YYYY</SelectItem
<SelectItem value="hyphen-separated-yyyy-mm-dd">YYYY-MM-DD</SelectItem> >
<SelectItem value="slash-separated-dd-mm-yyyy"
>DD/MM/YYYY</SelectItem
>
<SelectItem value="hyphen-separated-dd-mm-yyyy"
>DD-MM-YYYY</SelectItem
>
<SelectItem value="hyphen-separated-mm-dd-yyyy"
>MM-DD-YYYY</SelectItem
>
<SelectItem value="hyphen-separated-yyyy-mm-dd"
>YYYY-MM-DD</SelectItem
>
</SelectContent> </SelectContent>
</Select> </Select>
</div> </div>
@@ -132,14 +181,21 @@ async function submit() {
<!-- Time Format --> <!-- Time Format -->
<div class="col-span-6"> <div class="col-span-6">
<div class="col-span-6 sm:col-span-4"> <div class="col-span-6 sm:col-span-4">
<InputLabel for="timeFormat" class="mb-2" value="Time Format" /> <InputLabel
for="timeFormat"
class="mb-2"
value="Time Format" />
<Select v-model="form.time_format"> <Select v-model="form.time_format">
<SelectTrigger id="timeFormat"> <SelectTrigger id="timeFormat">
<SelectValue placeholder="Select time format" /> <SelectValue placeholder="Select time format" />
</SelectTrigger> </SelectTrigger>
<SelectContent> <SelectContent>
<SelectItem value="12-hours">12-hour clock</SelectItem> <SelectItem value="12-hours"
<SelectItem value="24-hours">24-hour clock</SelectItem> >12-hour clock</SelectItem
>
<SelectItem value="24-hours"
>24-hour clock</SelectItem
>
</SelectContent> </SelectContent>
</Select> </Select>
</div> </div>
@@ -148,16 +204,26 @@ async function submit() {
<!-- Interval Format --> <!-- Interval Format -->
<div class="col-span-6"> <div class="col-span-6">
<div class="col-span-6 sm:col-span-4"> <div class="col-span-6 sm:col-span-4">
<InputLabel for="intervalFormat" class="mb-2" value="Time Duration Format" /> <InputLabel
for="intervalFormat"
class="mb-2"
value="Time Duration Format" />
<Select v-model="form.interval_format"> <Select v-model="form.interval_format">
<SelectTrigger id="intervalFormat"> <SelectTrigger id="intervalFormat">
<SelectValue placeholder="Select interval format" /> <SelectValue placeholder="Select interval format" />
</SelectTrigger> </SelectTrigger>
<SelectContent> <SelectContent>
<SelectItem value="decimal">Decimal</SelectItem> <SelectItem value="decimal">Decimal</SelectItem>
<SelectItem value="hours-minutes">12h 3m</SelectItem> <SelectItem value="hours-minutes"
<SelectItem value="hours-minutes-colon-separated">12:03</SelectItem> >12h 3m</SelectItem
<SelectItem value="hours-minutes-seconds-colon-separated">12:03:45</SelectItem> >
<SelectItem value="hours-minutes-colon-separated"
>12:03</SelectItem
>
<SelectItem
value="hours-minutes-seconds-colon-separated"
>12:03:45</SelectItem
>
</SelectContent> </SelectContent>
</Select> </Select>
</div> </div>
@@ -165,9 +231,7 @@ async function submit() {
</template> </template>
<template #actions> <template #actions>
<PrimaryButton <PrimaryButton :disabled="mutation.isPending.value" @click="submit">
:disabled="mutation.isPending.value"
@click="submit">
{{ mutation.isPending.value ? 'Saving...' : 'Save' }} {{ mutation.isPending.value ? 'Saving...' : 'Save' }}
</PrimaryButton> </PrimaryButton>
</template> </template>

View File

@@ -524,6 +524,11 @@ const DetailedWithDataReportResource = z
description: z.union([z.string(), z.null()]), description: z.union([z.string(), z.null()]),
public_until: z.union([z.string(), z.null()]), public_until: z.union([z.string(), z.null()]),
currency: z.string(), currency: z.string(),
number_format: z.string(),
currency_format: z.string(),
date_format: z.string(),
interval_format: z.string(),
time_format: z.string(),
properties: z properties: z
.object({ .object({
group: z.string(), group: z.string(),

View File

@@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import parse from 'parse-duration'; import parse from 'parse-duration';
import { onMounted, ref, watch } from 'vue'; import { onMounted, ref, watch, inject } from 'vue';
import { import {
formatHumanReadableDuration, formatHumanReadableDuration,
getDayJsInstance, getDayJsInstance,
@@ -8,6 +8,9 @@ import {
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import { twMerge } from 'tailwind-merge'; import { twMerge } from 'tailwind-merge';
import { TextInput } from '@/packages/ui/src'; import { TextInput } from '@/packages/ui/src';
import type { Organization } from '@/packages/api/src';
import { type ComputedRef } from 'vue';
const temporaryCustomTimerEntry = ref<string>(''); const temporaryCustomTimerEntry = ref<string>('');
const start = defineModel('start', { const start = defineModel('start', {
@@ -18,6 +21,8 @@ const end = defineModel('end', {
default: '', default: '',
}); });
const organization = inject<ComputedRef<Organization>>('organization');
function isHHMM(value: string): boolean { function isHHMM(value: string): boolean {
return HHMMtimeRegex.test(value); return HHMMtimeRegex.test(value);
} }
@@ -70,7 +75,11 @@ function updateTimeEntryInputValue() {
if (start.value && end.value) { if (start.value && end.value) {
const startTime = dayjs(start.value); const startTime = dayjs(start.value);
const diff = getDayJsInstance()(end.value).diff(startTime, 'seconds'); const diff = getDayJsInstance()(end.value).diff(startTime, 'seconds');
temporaryCustomTimerEntry.value = formatHumanReadableDuration(diff); temporaryCustomTimerEntry.value = formatHumanReadableDuration(
diff,
organization?.value?.interval_format,
organization?.value?.number_format
);
} }
} }
</script> </script>

View File

@@ -9,13 +9,14 @@ import type {
Task, Task,
TimeEntry, TimeEntry,
Client, Client,
Organization,
} from '@/packages/api/src'; } from '@/packages/api/src';
import TimeEntryDescriptionInput from '@/packages/ui/src/TimeEntry/TimeEntryDescriptionInput.vue'; import TimeEntryDescriptionInput from '@/packages/ui/src/TimeEntry/TimeEntryDescriptionInput.vue';
import TimeEntryRowTagDropdown from '@/packages/ui/src/TimeEntry/TimeEntryRowTagDropdown.vue'; import TimeEntryRowTagDropdown from '@/packages/ui/src/TimeEntry/TimeEntryRowTagDropdown.vue';
import TimeEntryMoreOptionsDropdown from '@/packages/ui/src/TimeEntry/TimeEntryMoreOptionsDropdown.vue'; import TimeEntryMoreOptionsDropdown from '@/packages/ui/src/TimeEntry/TimeEntryMoreOptionsDropdown.vue';
import TimeTrackerProjectTaskDropdown from '@/packages/ui/src/TimeTracker/TimeTrackerProjectTaskDropdown.vue'; import TimeTrackerProjectTaskDropdown from '@/packages/ui/src/TimeTracker/TimeTrackerProjectTaskDropdown.vue';
import BillableToggleButton from '@/packages/ui/src/Input/BillableToggleButton.vue'; import BillableToggleButton from '@/packages/ui/src/Input/BillableToggleButton.vue';
import { ref } from 'vue'; import { ref, inject, type ComputedRef } from 'vue';
import { import {
formatHumanReadableDuration, formatHumanReadableDuration,
formatStartEnd, formatStartEnd,
@@ -48,6 +49,8 @@ const emit = defineEmits<{
unselected: [TimeEntry[]]; unselected: [TimeEntry[]];
}>(); }>();
const organization = inject<ComputedRef<Organization>>('organization');
function updateTimeEntryDescription(description: string) { function updateTimeEntryDescription(description: string) {
props.updateTimeEntries( props.updateTimeEntries(
props.timeEntry.timeEntries.map((timeEntry: TimeEntry) => timeEntry.id), props.timeEntry.timeEntries.map((timeEntry: TimeEntry) => timeEntry.id),
@@ -113,10 +116,10 @@ function onSelectChange(checked: boolean) {
</GroupedItemsCountButton> </GroupedItemsCountButton>
<TimeEntryDescriptionInput <TimeEntryDescriptionInput
class="min-w-0 mr-4" class="min-w-0 mr-4"
:model-value=" :model-value="timeEntry.description"
timeEntry.description @changed="
" updateTimeEntryDescription
@changed="updateTimeEntryDescription"></TimeEntryDescriptionInput> "></TimeEntryDescriptionInput>
<TimeTrackerProjectTaskDropdown <TimeTrackerProjectTaskDropdown
:clients :clients
:create-project :create-project
@@ -128,10 +131,10 @@ function onSelectChange(checked: boolean) {
:project="timeEntry.project_id" :project="timeEntry.project_id"
:enable-estimated-time :enable-estimated-time
:currency="currency" :currency="currency"
:task=" :task="timeEntry.task_id"
timeEntry.task_id @changed="
" updateProjectAndTask
@changed="updateProjectAndTask"></TimeTrackerProjectTaskDropdown> "></TimeTrackerProjectTaskDropdown>
</div> </div>
</div> </div>
<div class="flex items-center font-medium lg:space-x-2"> <div class="flex items-center font-medium lg:space-x-2">
@@ -139,7 +142,9 @@ function onSelectChange(checked: boolean) {
:create-tag :create-tag
:tags="tags" :tags="tags"
:model-value="timeEntry.tags" :model-value="timeEntry.tags"
@changed="updateTimeEntryTags"></TimeEntryRowTagDropdown> @changed="
updateTimeEntryTags
"></TimeEntryRowTagDropdown>
<BillableToggleButton <BillableToggleButton
:model-value="timeEntry.billable" :model-value="timeEntry.billable"
class="opacity-50 focus-visible:opacity-100 group-hover:opacity-100" class="opacity-50 focus-visible:opacity-100 group-hover:opacity-100"
@@ -155,17 +160,23 @@ function onSelectChange(checked: boolean) {
</button> </button>
</div> </div>
<button <button
class="text-text-primary min-w-[90px] px-2 py-1.5 bg-transparent text-center hover:bg-card-background rounded-lg border border-transparent hover:border-card-border text-sm font-semibold focus-visible:outline-none focus:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:bg-tertiary" class="text-text-primary min-w-[90px] px-2.5 py-1.5 bg-transparent text-right hover:bg-card-background rounded-lg border border-transparent hover:border-card-border text-sm font-semibold focus-visible:outline-none focus:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:bg-tertiary"
@click="expanded = !expanded"> @click="expanded = !expanded">
{{ {{
formatHumanReadableDuration(timeEntry.duration ?? 0) formatHumanReadableDuration(
timeEntry.duration ?? 0,
organization?.interval_format,
organization?.number_format
)
}} }}
</button> </button>
<TimeTrackerStartStop <TimeTrackerStartStop
:active="!!(timeEntry.start && !timeEntry.end)" :active="!!(timeEntry.start && !timeEntry.end)"
class="opacity-20 hidden sm:flex group-hover:opacity-100 focus-visible:opacity-100" class="opacity-20 hidden sm:flex group-hover:opacity-100 focus-visible:opacity-100"
@changed="onStartStopClick(timeEntry)"></TimeTrackerStartStop> @changed="
onStartStopClick(timeEntry)
"></TimeTrackerStartStop>
<TimeEntryMoreOptionsDropdown <TimeEntryMoreOptionsDropdown
@delete=" @delete="
deleteTimeEntries(timeEntry?.timeEntries ?? []) deleteTimeEntries(timeEntry?.timeEntries ?? [])

View File

@@ -2,10 +2,18 @@
import { import {
calculateDifference, calculateDifference,
formatHumanReadableDuration, formatHumanReadableDuration,
parseTimeInput,
} from '@/packages/ui/src/utils/time'; } from '@/packages/ui/src/utils/time';
import { computed, defineProps, ref } from 'vue'; import { computed, defineProps, ref, inject, type ComputedRef } from 'vue';
import parse from 'parse-duration';
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import type { Organization } from '@/packages/api/src';
const organization = inject<ComputedRef<Organization>>('organization');
const organizationSettings = computed(() => ({
intervalFormat: organization?.value?.interval_format ?? 'hours-minutes',
numberFormat: organization?.value?.number_format ?? 'point',
}));
const props = defineProps<{ const props = defineProps<{
start: string; start: string;
@@ -19,15 +27,22 @@ const temporaryCustomTimerEntry = ref<string>('');
const open = ref(false); const open = ref(false);
function updateTimerAndStartLiveTimerUpdate() { function updateTimerAndStartLiveTimerUpdate() {
const time = parse(temporaryCustomTimerEntry.value, 's'); const defaultUnit =
if (time && time > 0) { organizationSettings?.value?.intervalFormat === 'decimal'
? 'hours'
: 'minutes';
const { seconds } = parseTimeInput(
temporaryCustomTimerEntry.value,
defaultUnit
);
if (seconds && seconds > 0) {
let newEndDate = props.end; let newEndDate = props.end;
let newStartDate = props.start; let newStartDate = props.start;
if (props.end) { if (props.end) {
// only update end for time entries that are already finished // only update end for time entries that are already finished
newEndDate = dayjs(props.start).utc().add(time, 's').format(); newEndDate = dayjs(props.start).utc().add(seconds, 's').format();
} else { } else {
newStartDate = dayjs().utc().subtract(time, 's').format(); newStartDate = dayjs().utc().subtract(seconds, 's').format();
} }
emit('changed', newStartDate, newEndDate); emit('changed', newStartDate, newEndDate);
} }
@@ -40,7 +55,9 @@ const currentTime = computed({
return temporaryCustomTimerEntry.value; return temporaryCustomTimerEntry.value;
} }
return formatHumanReadableDuration( return formatHumanReadableDuration(
calculateDifference(props.start, props.end) calculateDifference(props.start, props.end),
organizationSettings.value.intervalFormat,
organizationSettings.value.numberFormat
); );
}, },
// setter // setter
@@ -63,8 +80,9 @@ function selectInput(event: Event) {
<template> <template>
<input <input
v-model="currentTime" v-model="currentTime"
data-testid="time_entry_duration_input"
name="Duration" name="Duration"
class="text-text-primary w-[90px] px-2 py-1.5 bg-transparent text-center hover:bg-card-background rounded-lg border border-transparent hover:border-card-border text-sm font-semibold focus-visible:bg-tertiary focus-visible:border-transparent focus-visible:ring-2 focus-visible:ring-ring" class="text-text-primary w-[90px] px-2.5 py-1.5 bg-transparent text-right hover:bg-card-background rounded-lg border border-transparent hover:border-card-border text-sm font-semibold focus-visible:bg-tertiary focus-visible:border-transparent focus-visible:ring-2 focus-visible:ring-ring"
@focus="selectInput" @focus="selectInput"
@keydown.tab="open = false" @keydown.tab="open = false"
@blur="updateTimerAndStartLiveTimerUpdate" @blur="updateTimerAndStartLiveTimerUpdate"

View File

@@ -6,6 +6,11 @@ import {
formatWeekday, formatWeekday,
} from '@/packages/ui/src/utils/time'; } from '@/packages/ui/src/utils/time';
import Checkbox from '../Input/Checkbox.vue'; import Checkbox from '../Input/Checkbox.vue';
import { inject, type ComputedRef } from 'vue';
import type { Organization } from '@/packages/api/src';
const organization = inject<ComputedRef<Organization>>('organization');
defineProps<{ defineProps<{
date: string; date: string;
duration: number; duration: number;
@@ -58,7 +63,13 @@ function selectUnselectAll(value: boolean) {
</div> </div>
<div class="text-text-secondary pr-[90px] lg:pr-[92px]"> <div class="text-text-secondary pr-[90px] lg:pr-[92px]">
<span class="font-semibold"> <span class="font-semibold">
{{ formatHumanReadableDuration(duration) }} {{
formatHumanReadableDuration(
duration,
organization?.interval_format,
organization?.number_format
)
}}
</span> </span>
</div> </div>
</div> </div>

View File

@@ -3,8 +3,11 @@ import Dropdown from '@/packages/ui/src/Input/Dropdown.vue';
import { computed, ref } from 'vue'; import { computed, ref } from 'vue';
import TimeRangeSelector from '@/packages/ui/src/Input/TimeRangeSelector.vue'; import TimeRangeSelector from '@/packages/ui/src/Input/TimeRangeSelector.vue';
import dayjs, { Dayjs } from 'dayjs'; import dayjs, { Dayjs } from 'dayjs';
import parse from 'parse-duration'; import {
import { formatDuration, getDayJsInstance } from '@/packages/ui/src/utils/time'; formatDuration,
getDayJsInstance,
parseTimeInput,
} from '@/packages/ui/src/utils/time';
import type { TimeEntry } from '@/packages/api/src'; import type { TimeEntry } from '@/packages/api/src';
const currentTimeEntry = defineModel<TimeEntry>('currentTimeEntry', { const currentTimeEntry = defineModel<TimeEntry>('currentTimeEntry', {
@@ -28,6 +31,7 @@ function pauseLiveTimerUpdate(event: FocusEvent) {
function onTimeEntryEnterPress() { function onTimeEntryEnterPress() {
updateTimerAndStartLiveTimerUpdate(); updateTimerAndStartLiveTimerUpdate();
open.value = false;
const activeElement = document.activeElement as HTMLElement; const activeElement = document.activeElement as HTMLElement;
activeElement?.blur(); activeElement?.blur();
} }
@@ -55,36 +59,13 @@ const currentTime = computed({
}); });
function updateTimerAndStartLiveTimerUpdate() { function updateTimerAndStartLiveTimerUpdate() {
const time = parse(temporaryCustomTimerEntry.value, 's'); const { seconds } = parseTimeInput(
temporaryCustomTimerEntry.value,
'minutes'
);
if (isNumeric(temporaryCustomTimerEntry.value)) { if (seconds && seconds > 0) {
const newStartDate = dayjs().subtract( const newStartDate = dayjs().subtract(seconds, 's');
parseInt(temporaryCustomTimerEntry.value),
'm'
);
currentTimeEntry.value.start = newStartDate.utc().format();
if (currentTimeEntry.value.id !== '') {
emit('updateTimer');
} else {
emit('startTimer');
}
} else if (isHHMM(temporaryCustomTimerEntry.value)) {
const results = parseHHMM(temporaryCustomTimerEntry.value);
if (results) {
const newStartDate = dayjs()
.subtract(parseInt(results[1]), 'h')
.subtract(parseInt(results[2]), 'm');
currentTimeEntry.value.start = newStartDate.utc().format();
if (currentTimeEntry.value.id !== '') {
emit('updateTimer');
} else {
emit('startTimer');
}
}
}
// try to parse natural language like "1h 30m"
else if (time && time > 1) {
const newStartDate = dayjs().subtract(time, 's');
currentTimeEntry.value.start = newStartDate.utc().format(); currentTimeEntry.value.start = newStartDate.utc().format();
if (currentTimeEntry.value.id !== '') { if (currentTimeEntry.value.id !== '') {
emit('updateTimer'); emit('updateTimer');
@@ -92,26 +73,11 @@ function updateTimerAndStartLiveTimerUpdate() {
emit('startTimer'); emit('startTimer');
} }
} }
// fallback to minutes if just a number is given
now.value = dayjs().utc(); now.value = dayjs().utc();
temporaryCustomTimerEntry.value = ''; temporaryCustomTimerEntry.value = '';
emit('startLiveTimer'); emit('startLiveTimer');
} }
function isNumeric(value: string) {
return /^-?\d+$/.test(value);
}
const HHMMtimeRegex = /^([0-9]{1,2}):([0-5]?[0-9])$/;
function isHHMM(value: string): boolean {
return HHMMtimeRegex.test(value);
}
function parseHHMM(value: string): string[] | null {
return value.match(HHMMtimeRegex);
}
const temporaryCustomTimerEntry = ref<string>(''); const temporaryCustomTimerEntry = ref<string>('');
async function updateTimeRange(newStart: string) { async function updateTimeRange(newStart: string) {
@@ -161,8 +127,8 @@ function focusNextElement(e: KeyboardEvent) {
} }
function closeAndFocusInput() { function closeAndFocusInput() {
inputField.value?.focus();
open.value = false; open.value = false;
inputField.value?.focus();
} }
</script> </script>
@@ -173,7 +139,7 @@ function closeAndFocusInput() {
align="center" align="center"
:auto-focus="false" :auto-focus="false"
:close-on-content-click="false" :close-on-content-click="false"
@submit="open = false"> @submit="closeAndFocusInput">
<template #trigger> <template #trigger>
<input <input
ref="inputField" ref="inputField"

View File

@@ -0,0 +1,41 @@
export type NumberFormat =
| 'point-comma'
| 'comma-point'
| 'space-comma'
| 'space-point'
| 'apostrophe-point';
/**
* Formats a number according to the specified format
* @param value - The number to format
* @param format - The format to use
* @returns The formatted number as a string
*/
export function formatNumber(value: number, format?: string): string {
// Convert to fixed 2 decimal places first
const parts = value.toFixed(2).split('.');
const wholePart = parts[0];
const decimalPart = parts[1];
// Format the whole number part based on the format
let formattedWhole: string;
switch (format) {
case 'point-comma':
formattedWhole = wholePart.replace(/\B(?=(\d{3})+(?!\d))/g, '.');
return `${formattedWhole},${decimalPart}`;
case 'comma-point':
formattedWhole = wholePart.replace(/\B(?=(\d{3})+(?!\d))/g, ',');
return `${formattedWhole}.${decimalPart}`;
case 'space-comma':
formattedWhole = wholePart.replace(/\B(?=(\d{3})+(?!\d))/g, ' ');
return `${formattedWhole},${decimalPart}`;
case 'space-point':
formattedWhole = wholePart.replace(/\B(?=(\d{3})+(?!\d))/g, ' ');
return `${formattedWhole}.${decimalPart}`;
case 'apostrophe-point':
formattedWhole = wholePart.replace(/\B(?=(\d{3})+(?!\d))/g, "'");
return `${formattedWhole}.${decimalPart}`;
default:
return value.toString();
}
}

View File

@@ -6,10 +6,34 @@ import isYesterday from 'dayjs/plugin/isYesterday';
import utc from 'dayjs/plugin/utc'; import utc from 'dayjs/plugin/utc';
import timezone from 'dayjs/plugin/timezone'; import timezone from 'dayjs/plugin/timezone';
import weekOfYear from 'dayjs/plugin/weekOfYear'; import weekOfYear from 'dayjs/plugin/weekOfYear';
import parse from 'parse-duration';
import { getUserTimezone, getWeekStart } from './settings'; import { getUserTimezone, getWeekStart } from './settings';
import updateLocale from 'dayjs/plugin/updateLocale'; import updateLocale from 'dayjs/plugin/updateLocale';
import { computed } from 'vue'; import { computed } from 'vue';
import { formatNumber } from './number';
export type CurrencyFormat =
| 'iso-code-before-with-space'
| 'iso-code-after-with-space'
| 'symbol-before'
| 'symbol-after'
| 'symbol-before-with-space'
| 'symbol-after-with-space';
export type DateFormat =
| 'point-separated-d-m-yyyy'
| 'slash-separated-mm-dd-yyyy'
| 'slash-separated-dd-mm-yyyy'
| 'hyphen-separated-dd-mm-yyyy'
| 'hyphen-separated-mm-dd-yyyy'
| 'hyphen-separated-yyyy-mm-dd';
export type TimeFormat = '12-hours' | '24-hours';
export type IntervalFormat =
| 'decimal'
| 'hours-minutes'
| 'hours-minutes-colon-separated'
| 'hours-minutes-seconds-colon-separated';
export type TimeInputUnit = 'minutes' | 'hours';
dayjs.extend(relativeTime); dayjs.extend(relativeTime);
dayjs.extend(isToday); dayjs.extend(isToday);
@@ -40,11 +64,28 @@ export const firstDayIndex = computed(() => {
return apiDayOrder.indexOf(getWeekStart()); return apiDayOrder.indexOf(getWeekStart());
}); });
export function formatHumanReadableDuration(duration: number): string { export function formatHumanReadableDuration(
duration: number,
intervalFormat?: string,
numberFormat?: string
): string {
const dayJsDuration = dayjs.duration(duration, 's'); const dayJsDuration = dayjs.duration(duration, 's');
const hours = Math.floor(dayJsDuration.asHours()); const hours = Math.floor(dayJsDuration.asHours());
const minutes = dayJsDuration.minutes(); const minutes = dayJsDuration.minutes();
return `${hours}h ${minutes.toString().padStart(2, '0')}min`; const seconds = dayJsDuration.seconds();
switch (intervalFormat) {
case 'decimal':
return formatNumber(dayJsDuration.asHours(), numberFormat) + ' h';
case 'hours-minutes':
return `${hours}h ${minutes.toString().padStart(2, '0')}min`;
case 'hours-minutes-colon-separated':
return `${hours}:${minutes.toString().padStart(2, '0')}`;
case 'hours-minutes-seconds-colon-separated':
return `${hours}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;
default:
return `${hours}h ${minutes.toString().padStart(2, '0')}min`;
}
} }
export function formatDuration(duration: number): string { export function formatDuration(duration: number): string {
@@ -131,3 +172,44 @@ export function formatStartEnd(start: string, end: string | null) {
return `${formatTime(start)} - ...`; return `${formatTime(start)} - ...`;
} }
} }
export function parseTimeInput(
input: string,
defaultUnit: TimeInputUnit = 'minutes'
): {
seconds: number | null;
isHHMM: boolean;
} {
// Check if input is a decimal number (hours)
const decimalRegex = /^-?\d+[.,]\d+$/;
if (decimalRegex.test(input)) {
const hours = parseFloat(input.replace(',', '.'));
return { seconds: Math.round(hours * 3600), isHHMM: false };
}
// Check if input is just a number (minutes or hours based on defaultUnit)
if (/^-?\d+$/.test(input)) {
const value = parseInt(input);
const seconds = defaultUnit === 'minutes' ? value * 60 : value * 3600;
return { seconds, isHHMM: false };
}
// Check if input is in HH:MM format
const HHMMtimeRegex = /^([0-9]{1,2}):([0-5]?[0-9])$/;
if (HHMMtimeRegex.test(input)) {
const match = input.match(HHMMtimeRegex);
if (match) {
const hours = parseInt(match[1]);
const minutes = parseInt(match[2]);
return { seconds: (hours * 60 + minutes) * 60, isHHMM: true };
}
}
// Try to parse natural language like "1h 30m"
const parsedDuration = parse(input, 's');
if (parsedDuration && parsedDuration > 0) {
return { seconds: parsedDuration, isHHMM: false };
}
return { seconds: null, isHHMM: false };
}