mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
302 lines
11 KiB
Vue
302 lines
11 KiB
Vue
<script setup lang="ts">
|
|
import TimeTrackerTagDropdown from '@/packages/ui/src/TimeTracker/TimeTrackerTagDropdown.vue';
|
|
import TimeTrackerStartStop from '@/packages/ui/src/TimeTrackerStartStop.vue';
|
|
import TimeTrackerRangeSelector from '@/packages/ui/src/TimeTracker/TimeTrackerRangeSelector.vue';
|
|
import BillableToggleButton from '@/packages/ui/src/Input/BillableToggleButton.vue';
|
|
import TimeTrackerProjectTaskDropdown from '@/packages/ui/src/TimeTracker/TimeTrackerProjectTaskDropdown.vue';
|
|
import type {
|
|
CreateClientBody,
|
|
CreateProjectBody,
|
|
Project,
|
|
Tag,
|
|
Task,
|
|
TimeEntry,
|
|
Client,
|
|
} from '@/packages/api/src';
|
|
import {computed, nextTick, ref, watch} from 'vue';
|
|
import type {Dayjs} from 'dayjs';
|
|
import {useTimeEntriesStore} from '@/utils/useTimeEntries';
|
|
import {storeToRefs} from 'pinia';
|
|
import {useFocus} from "@vueuse/core";
|
|
import {autoUpdate, flip, limitShift, offset, shift, useFloating} from "@floating-ui/vue";
|
|
import TimeTrackerRecentlyTrackedEntry from "@/packages/ui/src/TimeTracker/TimeTrackerRecentlyTrackedEntry.vue";
|
|
import {useSelectEvents} from "@/packages/ui/src/utils/select";
|
|
|
|
const currentTimeEntry = defineModel<TimeEntry>('currentTimeEntry', {
|
|
required: true,
|
|
});
|
|
const liveTimer = defineModel<Dayjs | null>('liveTimer', {required: true});
|
|
|
|
const currentTimeEntryDescriptionInput = ref<HTMLInputElement | null>(null);
|
|
|
|
const props = defineProps<{
|
|
projects: Project[];
|
|
tasks: Task[];
|
|
tags: Tag[];
|
|
clients: Client[];
|
|
createTag: (name: string) => Promise<Tag | undefined>;
|
|
createProject: (project: CreateProjectBody) => Promise<Project | undefined>;
|
|
createClient: (client: CreateClientBody) => Promise<Client | undefined>;
|
|
isActive: boolean;
|
|
currency: string;
|
|
enableEstimatedTime: boolean;
|
|
canCreateProject: boolean;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
startTimer: [];
|
|
stopTimer: [];
|
|
updateTimeEntry: [];
|
|
startLiveTimer: [];
|
|
stopLiveTimer: [];
|
|
}>();
|
|
|
|
function updateProject() {
|
|
setBillableDefaultForProject();
|
|
emit('updateTimeEntry');
|
|
}
|
|
|
|
function setAndStartTimer(timeEntry: TimeEntry) {
|
|
setCurrentTimeEntry(timeEntry);
|
|
if (!props.isActive) {
|
|
emit('startTimer');
|
|
}
|
|
else {
|
|
emit('updateTimeEntry');
|
|
}
|
|
}
|
|
|
|
function setCurrentTimeEntry(timeEntry: TimeEntry){
|
|
currentTimeEntry.value.description = timeEntry.description;
|
|
currentTimeEntry.value.project_id = timeEntry.project_id;
|
|
currentTimeEntry.value.task_id = timeEntry.task_id;
|
|
currentTimeEntry.value.tags = timeEntry.tags;
|
|
currentTimeEntry.value.billable = timeEntry.billable;
|
|
}
|
|
|
|
function startTimerIfNotActive() {
|
|
if(highlightedDropdownEntryId.value){
|
|
const timeEntry = filteredRecentlyTrackedTimeEntries.value.find((item) => item.id === highlightedDropdownEntryId.value);
|
|
if(timeEntry){
|
|
setCurrentTimeEntry(timeEntry);
|
|
showDropdown.value = false;
|
|
}
|
|
}
|
|
else {
|
|
currentTimeEntry.value.description = tempDescription.value;
|
|
}
|
|
|
|
if (!props.isActive) {
|
|
emit('startTimer');
|
|
}
|
|
else {
|
|
emit('updateTimeEntry');
|
|
}
|
|
}
|
|
|
|
function setBillableDefaultForProject() {
|
|
const project = props.projects.find(
|
|
(project) => project.id === currentTimeEntry.value.project_id
|
|
);
|
|
if (project) {
|
|
currentTimeEntry.value.billable = project.is_billable;
|
|
}
|
|
}
|
|
|
|
const blockRefocus = ref(false);
|
|
|
|
function onToggleButtonPress(newState: boolean) {
|
|
if (newState) {
|
|
emit('startTimer');
|
|
if (!blockRefocus.value){
|
|
currentTimeEntryDescriptionInput.value?.focus();
|
|
}
|
|
} else {
|
|
emit('stopTimer');
|
|
}
|
|
}
|
|
|
|
const tempDescription = ref(currentTimeEntry.value.description);
|
|
watch(
|
|
() => currentTimeEntry.value.description,
|
|
() => {
|
|
tempDescription.value = currentTimeEntry.value.description;
|
|
}
|
|
);
|
|
|
|
function updateTimeEntryDescription() {
|
|
if (currentTimeEntry.value.description !== tempDescription.value) {
|
|
currentTimeEntry.value.description = tempDescription.value;
|
|
emit('updateTimeEntry');
|
|
}
|
|
}
|
|
|
|
const {timeEntries} = storeToRefs(useTimeEntriesStore());
|
|
const filteredRecentlyTrackedTimeEntries = computed(() => {
|
|
// do not include running time entries
|
|
const finishedTimeEntries = timeEntries.value.filter((item) => item.end !== null);
|
|
|
|
// filter out duplicates based on description, task, project, tags and billable
|
|
const nonDuplicateTimeEntries = finishedTimeEntries.filter((item, index, self) => {
|
|
return index === self.findIndex((t) => (
|
|
t.description === item.description &&
|
|
t.task_id === item.task_id &&
|
|
t.project_id === item.project_id &&
|
|
t.tags.length === item.tags.length &&
|
|
t.tags.every((tag) => item.tags.includes(tag)) &&
|
|
t.billable === item.billable
|
|
));
|
|
});
|
|
|
|
// filter time entries based on current description
|
|
return nonDuplicateTimeEntries.filter((item) => {
|
|
return item.description
|
|
?.toLowerCase()
|
|
?.includes(tempDescription.value?.toLowerCase()?.trim() || '');
|
|
}).slice(0, 5);
|
|
});
|
|
|
|
const showDropdown = ref(false);
|
|
const {focused} = useFocus(currentTimeEntryDescriptionInput)
|
|
|
|
watch(focused, (focused) => {
|
|
nextTick(() => {
|
|
// make sure the click event on the dropdown does not get interrupted
|
|
showDropdown.value = focused
|
|
|
|
// make sure that the input does not get refocused after the dropdown is closed
|
|
if(!focused){
|
|
blockRefocus.value = true;
|
|
setTimeout(() => {
|
|
blockRefocus.value = false;
|
|
}, 100);
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
const floating = ref(null);
|
|
const {floatingStyles} = useFloating(currentTimeEntryDescriptionInput, floating, {
|
|
placement: 'bottom-start',
|
|
whileElementsMounted: autoUpdate,
|
|
middleware: [
|
|
offset(10),
|
|
shift({
|
|
limiter: limitShift({
|
|
offset: 5,
|
|
}),
|
|
}),
|
|
flip({
|
|
fallbackAxisSideDirection: 'start',
|
|
}),
|
|
],
|
|
});
|
|
const highlightedDropdownEntryId = ref<string | null>(null);
|
|
|
|
useSelectEvents(filteredRecentlyTrackedTimeEntries,
|
|
highlightedDropdownEntryId,
|
|
(item) => item.id,
|
|
showDropdown)
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="flex items-center relative @container"
|
|
data-testid="dashboard_timer">
|
|
<div
|
|
class="flex flex-col @2xl:flex-row w-full justify-between rounded-lg bg-card-background border-card-border border transition shadow-card">
|
|
<div class="flex flex-1 items-center pr-6 relative">
|
|
<input
|
|
ref="currentTimeEntryDescriptionInput"
|
|
v-model="tempDescription"
|
|
placeholder="What are you working on?"
|
|
data-testid="time_entry_description"
|
|
class="w-full rounded-l-lg py-4 sm:py-2.5 px-3.5 border-b border-b-card-background-separator @2xl:px-4 text-base @4xl:text-lg text-text-primary font-medium bg-transparent border-none placeholder-muted focus:ring-0 transition"
|
|
type="text"
|
|
@keydown.enter="startTimerIfNotActive"
|
|
@keydown.esc="showDropdown = false"
|
|
@blur="updateTimeEntryDescription"/>
|
|
<div
|
|
v-if="showDropdown && filteredRecentlyTrackedTimeEntries.length > 0"
|
|
ref="floating"
|
|
class="z-50 w-full max-w-2xl"
|
|
:style="floatingStyles">
|
|
<div
|
|
class="rounded-lg w-full fixed min-w-xl top-0 left-0 border border-card-border overflow-none shadow-dropdown bg-card-background">
|
|
<div
|
|
class="text-text-tertiary text-xs font-semibold border-b border-border-tertiary px-2 py-1.5">
|
|
Recently Tracked Time Entries
|
|
</div>
|
|
<div class="text-text-secondary py-1 px-1.5">
|
|
<TimeTrackerRecentlyTrackedEntry
|
|
v-for="timeEntry in filteredRecentlyTrackedTimeEntries"
|
|
:key="timeEntry.id"
|
|
:time-entry="timeEntry"
|
|
:highlighted="highlightedDropdownEntryId === timeEntry.id"
|
|
:projects="projects"
|
|
:tasks="tasks"
|
|
@mousedown="setAndStartTimer(timeEntry)"
|
|
@mouseenter="highlightedDropdownEntryId = timeEntry.id"
|
|
></TimeTrackerRecentlyTrackedEntry>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="flex items-center justify-between pl-2 shrink min-w-0">
|
|
<div
|
|
class="flex items-center w-[130px] @2xl:w-auto shrink min-w-0">
|
|
<TimeTrackerProjectTaskDropdown
|
|
v-model:project="currentTimeEntry.project_id"
|
|
v-model:task="
|
|
currentTimeEntry.task_id
|
|
"
|
|
:create-client
|
|
:can-create-project
|
|
:clients
|
|
:create-project
|
|
:currency="currency"
|
|
:projects="projects"
|
|
:tasks="tasks"
|
|
:enable-estimated-time="enableEstimatedTime"
|
|
@changed="updateProject"></TimeTrackerProjectTaskDropdown>
|
|
</div>
|
|
<div class="flex items-center @2xl:space-x-2 px-2 @2xl:px-4">
|
|
<TimeTrackerTagDropdown
|
|
v-model="
|
|
currentTimeEntry.tags
|
|
"
|
|
:create-tag
|
|
:tags="tags"
|
|
@changed="$emit('updateTimeEntry')"></TimeTrackerTagDropdown>
|
|
<BillableToggleButton
|
|
v-model="
|
|
currentTimeEntry.billable
|
|
"
|
|
@changed="$emit('updateTimeEntry')"></BillableToggleButton>
|
|
</div>
|
|
<div class="border-l border-card-border">
|
|
<TimeTrackerRangeSelector
|
|
v-model:current-time-entry="currentTimeEntry"
|
|
v-model:live-timer="liveTimer"
|
|
@start-live-timer="emit('startLiveTimer')"
|
|
@stop-live-timer="emit('stopLiveTimer')"
|
|
@update-timer="emit('updateTimeEntry')"
|
|
@start-timer="emit('startTimer')"
|
|
@keydown.enter="
|
|
startTimerIfNotActive
|
|
"></TimeTrackerRangeSelector>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="pl-4 @2xl:pl-6 pr-3 absolute sm:relative top-[6px] sm:top-0 right-0">
|
|
<TimeTrackerStartStop
|
|
:active="isActive"
|
|
size="large"
|
|
@changed="onToggleButtonPress"></TimeTrackerStartStop>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|