frontend: clicking a project filters tasks by that project

This commit is contained in:
0x1eef 2024-01-15 08:42:04 -03:00
parent 7499092eeb
commit 76cb7718f1
2 changed files with 9 additions and 3 deletions

View file

@ -51,12 +51,17 @@ export function Group({ groupName, getItems }: Props) {
</a>
</div>
<div>
<span
className="flex align-items-center justify-content-center text-primary text-smaller rounded border-secondary p-2"
<a
href={`/tasks/#projectId=${task.project.id}`}
onClick={() => {
location.hash = `projectId=${task.project.id}`;
location.reload();
}}
className="flex no-underline align-items-center justify-content-center text-primary text-smaller rounded border-secondary p-2"
style={{ backgroundColor: task.project.color }}
>
{task.project.name}
</span>
</a>
</div>
</div>
<div className="flex h-12 w-1/4">

View file

@ -10,6 +10,7 @@ export const GET_TASKS = gql`
isReady
updatedAt
project {
id
name
color
}