mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
372 lines
14 KiB
Vue
372 lines
14 KiB
Vue
<script setup lang="ts">
|
|
import { ChevronRightIcon } from '@heroicons/vue/16/solid';
|
|
import Dropdown from '@/Components/Dropdown.vue';
|
|
import { type Component, computed, nextTick, ref, watch } from 'vue';
|
|
import { storeToRefs } from 'pinia';
|
|
import { useProjectsStore } from '@/utils/useProjects';
|
|
import { useTasksStore } from '@/utils/useTasks';
|
|
import ProjectDropdownItem from '@/Components/Common/Project/ProjectDropdownItem.vue';
|
|
import type { Project, Task } from '@/utils/api';
|
|
import ProjectBadge from '@/Components/Common/Project/ProjectBadge.vue';
|
|
|
|
const projectStore = useProjectsStore();
|
|
const { projects } = storeToRefs(projectStore);
|
|
const taskStore = useTasksStore();
|
|
const { tasks } = storeToRefs(taskStore);
|
|
|
|
const task = defineModel<string | null>('task', {
|
|
default: null,
|
|
});
|
|
|
|
const project = defineModel<string | null>('project', {
|
|
default: null,
|
|
});
|
|
|
|
const searchInput = ref<HTMLInputElement | null>(null);
|
|
const open = ref(false);
|
|
const dropdownViewport = ref<Component | null>(null);
|
|
|
|
const searchValue = ref('');
|
|
|
|
watch(open, (isOpen) => {
|
|
if (isOpen) {
|
|
nextTick(() => {
|
|
initializeHighlightedItem();
|
|
searchInput.value?.focus();
|
|
});
|
|
}
|
|
});
|
|
|
|
type ProjectWithTasks = {
|
|
project: Project;
|
|
tasks: Task[];
|
|
};
|
|
|
|
withDefaults(
|
|
defineProps<{
|
|
showBadgeBorder: boolean;
|
|
}>(),
|
|
{
|
|
showBadgeBorder: true,
|
|
}
|
|
);
|
|
|
|
const filteredProjects = computed(() => {
|
|
return projects.value.reduce((filtered: ProjectWithTasks[], project) => {
|
|
const projectNameIncludesSearchTerm = project.name
|
|
.toLowerCase()
|
|
.includes(searchValue.value?.toLowerCase()?.trim() || '');
|
|
|
|
// check if one of the project tasks
|
|
const projectTasks = tasks.value.filter((task) => {
|
|
return task.project_id === project.id;
|
|
});
|
|
|
|
const filteredTasks = projectTasks.filter((task) => {
|
|
return task.name
|
|
.toLowerCase()
|
|
.includes(searchValue.value?.toLowerCase()?.trim() || '');
|
|
});
|
|
|
|
if (projectNameIncludesSearchTerm || filteredTasks.length > 0) {
|
|
filtered.push({ project: project, tasks: filteredTasks });
|
|
}
|
|
|
|
return filtered;
|
|
}, []);
|
|
});
|
|
|
|
async function addClientIfNoneExists() {
|
|
if (highlightedItemId.value) {
|
|
setProjectAndClientBasedOnHighlightedItem();
|
|
}
|
|
}
|
|
|
|
function isProjectSelected(project: Project) {
|
|
return project.value === project.id;
|
|
}
|
|
|
|
function initializeHighlightedItem() {
|
|
if (filteredProjects.value.length > 0) {
|
|
highlightedItemId.value = filteredProjects.value[0].project.id;
|
|
}
|
|
}
|
|
|
|
watch(filteredProjects, () => {
|
|
initializeHighlightedItem();
|
|
});
|
|
|
|
function setProjectAndClientBasedOnHighlightedItem() {
|
|
const highlightedProject = filteredProjects.value.find(
|
|
(project) => project.project.id === highlightedItemId.value
|
|
);
|
|
if (highlightedProject) {
|
|
selectProject(highlightedProject.project.id);
|
|
}
|
|
const highlightedTask = filteredProjects.value
|
|
.map((project) => project.tasks)
|
|
.flat()
|
|
.find((task) => task.id === highlightedItemId.value);
|
|
if (highlightedTask) {
|
|
selectTask(highlightedTask.id);
|
|
}
|
|
}
|
|
|
|
function updateSearchValue(event: Event) {
|
|
const newInput = (event.target as HTMLInputElement).value;
|
|
if (newInput === ' ') {
|
|
searchValue.value = '';
|
|
setProjectAndClientBasedOnHighlightedItem();
|
|
} else {
|
|
searchValue.value = newInput;
|
|
}
|
|
}
|
|
|
|
const emit = defineEmits(['update:modelValue', 'changed']);
|
|
|
|
function moveHighlightUp() {
|
|
if (highlightedItemId.value) {
|
|
const currentHighlightedIndex = filteredProjects.value.findIndex(
|
|
(projectWithTasks) =>
|
|
projectWithTasks.project.id === highlightedItemId.value
|
|
);
|
|
// check if it is a project id
|
|
if (currentHighlightedIndex === -1) {
|
|
// the ID is a task ID
|
|
const currentProjectWithTasks = filteredProjects.value.find(
|
|
(projectWithTasks) =>
|
|
projectWithTasks.tasks.some(
|
|
(task) => task.id === highlightedItemId.value
|
|
)
|
|
);
|
|
if (currentProjectWithTasks) {
|
|
const taskIndex = currentProjectWithTasks.tasks.findIndex(
|
|
(task) => task.id === highlightedItemId.value
|
|
);
|
|
if (taskIndex === -1) {
|
|
return;
|
|
}
|
|
if (taskIndex === 0) {
|
|
// highlight the project if it was the first task before
|
|
highlightedItemId.value =
|
|
currentProjectWithTasks.project.id;
|
|
return;
|
|
}
|
|
highlightedItemId.value =
|
|
currentProjectWithTasks.tasks[taskIndex - 1].id;
|
|
}
|
|
}
|
|
if (currentHighlightedIndex === 0) {
|
|
// highlight the last project or the last project of the last project
|
|
const lastProject =
|
|
filteredProjects.value[filteredProjects.value.length - 1];
|
|
if (lastProject.tasks.length > 0) {
|
|
// highlight last task of last project
|
|
highlightedItemId.value =
|
|
lastProject.tasks[lastProject.tasks.length - 1].id;
|
|
} else {
|
|
highlightedItemId.value =
|
|
filteredProjects.value[
|
|
filteredProjects.value.length - 1
|
|
].project.id;
|
|
}
|
|
} else {
|
|
const previousProject =
|
|
filteredProjects.value[currentHighlightedIndex - 1];
|
|
if (previousProject.tasks.length > 0) {
|
|
// highlight last task of previous project
|
|
highlightedItemId.value =
|
|
previousProject.tasks[previousProject.tasks.length - 1].id;
|
|
} else {
|
|
highlightedItemId.value =
|
|
filteredProjects.value[
|
|
currentHighlightedIndex - 1
|
|
].project.id;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function moveHighlightDown() {
|
|
if (highlightedItemId.value) {
|
|
const currentHighlightedIndex = filteredProjects.value.findIndex(
|
|
(projectWithTasks) =>
|
|
projectWithTasks.project.id === highlightedItemId.value
|
|
);
|
|
// check if it is a project id
|
|
if (currentHighlightedIndex === -1) {
|
|
// the ID is a task ID
|
|
const currentProjectWithTasks = filteredProjects.value.find(
|
|
(projectWithTasks) =>
|
|
projectWithTasks.tasks.some(
|
|
(task) => task.id === highlightedItemId.value
|
|
)
|
|
);
|
|
if (currentProjectWithTasks) {
|
|
const taskIndex = currentProjectWithTasks.tasks.findIndex(
|
|
(task) => task.id === highlightedItemId.value
|
|
);
|
|
if (taskIndex === -1) {
|
|
return;
|
|
}
|
|
if (taskIndex === currentProjectWithTasks.tasks.length - 1) {
|
|
// highlight the next project if it was the last task in current project
|
|
const projectIndex = filteredProjects.value.indexOf(
|
|
currentProjectWithTasks
|
|
);
|
|
if (projectIndex === filteredProjects.value.length - 1) {
|
|
// highlight the first project if it was the last project
|
|
highlightedItemId.value =
|
|
filteredProjects.value[0].project.id;
|
|
} else {
|
|
highlightedItemId.value =
|
|
filteredProjects.value[projectIndex + 1].project.id;
|
|
}
|
|
return;
|
|
}
|
|
highlightedItemId.value =
|
|
currentProjectWithTasks.tasks[taskIndex + 1].id;
|
|
}
|
|
}
|
|
if (currentHighlightedIndex === filteredProjects.value.length - 1) {
|
|
// highlight the first project or the last project of the last project
|
|
const lastProject =
|
|
filteredProjects.value[filteredProjects.value.length - 1];
|
|
if (lastProject.tasks.length > 0) {
|
|
// highlight last task of last project
|
|
highlightedItemId.value = lastProject.tasks[0].id;
|
|
} else {
|
|
highlightedItemId.value = filteredProjects.value[0].project.id;
|
|
}
|
|
} else {
|
|
const currentProjectWithTasks =
|
|
filteredProjects.value[currentHighlightedIndex];
|
|
if (currentProjectWithTasks.tasks.length > 0) {
|
|
// highlight last task of previous project
|
|
highlightedItemId.value = currentProjectWithTasks.tasks[0].id;
|
|
} else {
|
|
highlightedItemId.value =
|
|
filteredProjects.value[
|
|
currentHighlightedIndex + 1
|
|
].project.id;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
const highlightedItemId = ref<string | null>(null);
|
|
|
|
const currentProject = computed(() => {
|
|
return projects.value.find(
|
|
(iteratingProject) => iteratingProject.id === project.value
|
|
);
|
|
});
|
|
|
|
const currentTask = computed(() => {
|
|
return tasks.value.find(
|
|
(iteratingTasks) => iteratingTasks.id === task.value
|
|
);
|
|
});
|
|
|
|
const selectedProjectName = computed(() => {
|
|
return currentProject.value?.name || 'No Project';
|
|
});
|
|
|
|
const selectedProjectColor = computed(() => {
|
|
return currentProject.value?.color || 'var(--theme-color-icon-default)';
|
|
});
|
|
|
|
function selectTask(taskId: string) {
|
|
task.value = taskId;
|
|
project.value =
|
|
tasks.value.find((task) => task.id === taskId)?.project_id || null;
|
|
open.value = false;
|
|
emit('changed', project.value, task.value);
|
|
}
|
|
|
|
function selectProject(projectId: string) {
|
|
project.value = projectId;
|
|
task.value = null;
|
|
open.value = false;
|
|
emit('changed', project.value, task.value);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Dropdown width="120" v-model="open" :closeOnContentClick="true">
|
|
<template #trigger>
|
|
<ProjectBadge
|
|
ref="projectDropdownTrigger"
|
|
:color="selectedProjectColor"
|
|
size="large"
|
|
:border="showBadgeBorder"
|
|
tag="button"
|
|
:name="selectedProjectName"
|
|
class="focus:border-input-border-active focus:outline-0 focus:bg-card-background-separator hover:bg-card-background-separator">
|
|
<div class="flex items-center space-x-1">
|
|
<span>
|
|
{{ selectedProjectName }}
|
|
</span>
|
|
<ChevronRightIcon
|
|
v-if="currentTask"
|
|
class="w-5 text-muted"></ChevronRightIcon>
|
|
<span v-if="currentTask">{{ currentTask.name }}</span>
|
|
</div>
|
|
</ProjectBadge>
|
|
</template>
|
|
<template #content>
|
|
<input
|
|
:value="searchValue"
|
|
@input="updateSearchValue"
|
|
@keydown.enter="addClientIfNoneExists"
|
|
data-testid="client_dropdown_search"
|
|
@keydown.up.prevent="moveHighlightUp"
|
|
@keydown.down.prevent="moveHighlightDown"
|
|
ref="searchInput"
|
|
class="bg-card-background border-0 placeholder-muted text-sm text-white py-2.5 focus:ring-0 border-b border-card-background-separator focus:border-card-background-separator w-full"
|
|
placeholder="Search for a project or task..." />
|
|
<div ref="dropdownViewport" class="w-60">
|
|
<template
|
|
v-for="projectWithTasks in filteredProjects"
|
|
:key="projectWithTasks.project.id">
|
|
<div
|
|
role="option"
|
|
:value="projectWithTasks.project.id"
|
|
@click="selectProject(projectWithTasks.project.id)"
|
|
class="border-t border-card-background-separator"
|
|
:class="{
|
|
'bg-card-background-active':
|
|
projectWithTasks.project.id ===
|
|
highlightedItemId,
|
|
}"
|
|
data-testid="client_dropdown_entries"
|
|
:data-project-id="projectWithTasks.project.id">
|
|
<ProjectDropdownItem
|
|
:selected="
|
|
isProjectSelected(projectWithTasks.project)
|
|
"
|
|
:name="projectWithTasks.project.name"
|
|
:color="
|
|
projectWithTasks.project.color
|
|
"></ProjectDropdownItem>
|
|
</div>
|
|
<div
|
|
v-for="task in projectWithTasks.tasks"
|
|
:key="task.id"
|
|
@click="selectTask(task.id)"
|
|
:class="{
|
|
'bg-card-background-active':
|
|
task.id === highlightedItemId,
|
|
}"
|
|
class="flex items-center space-x-3 w-full px-3 py-1.5 text-start text-xs font-semibold leading-5 text-white hover:bg-card-background-active focus:outline-none focus:bg-card-background-active transition duration-150 ease-in-out">
|
|
<div class="w-3 h-3 rounded-full"></div>
|
|
<span>{{ task.name }}</span>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
</Dropdown>
|
|
</template>
|
|
|
|
<style scoped></style>
|