WIP todo assignment
This commit is contained in:
parent
86ecb24eec
commit
f83e80ec9d
12
components/Avatar.tsx
Normal file
12
components/Avatar.tsx
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
import { JSX } from 'preact'
|
||||||
|
|
||||||
|
export function Avatar(
|
||||||
|
{ className, ...props }: JSX.HTMLAttributes<HTMLImageElement>,
|
||||||
|
) {
|
||||||
|
return (
|
||||||
|
<img
|
||||||
|
{...props}
|
||||||
|
class={`rounded-full object-cover h-60 w-60 ${className || ''}`}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
|
@ -4,7 +4,7 @@ export function Label(
|
||||||
{ children, className, ...props }: JSX.HTMLAttributes<HTMLLabelElement>,
|
{ children, className, ...props }: JSX.HTMLAttributes<HTMLLabelElement>,
|
||||||
) {
|
) {
|
||||||
return (
|
return (
|
||||||
<label {...props} class={`flex flex-col ${className}`} for='name'>
|
<label {...props} class={`flex flex-col ${className}`}>
|
||||||
{children}
|
{children}
|
||||||
</label>
|
</label>
|
||||||
)
|
)
|
||||||
|
|
20
components/SectionHead.tsx
Normal file
20
components/SectionHead.tsx
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
import { JSX } from 'preact'
|
||||||
|
|
||||||
|
export interface Props extends JSX.HTMLAttributes<HTMLElement> {
|
||||||
|
text: string
|
||||||
|
}
|
||||||
|
export function SectionHead(
|
||||||
|
{ text, children, className, ...props }: Props,
|
||||||
|
) {
|
||||||
|
return (
|
||||||
|
<header
|
||||||
|
{...props}
|
||||||
|
class={`flex items-center border-b-2 border-stone-500/20 ${className}`}
|
||||||
|
>
|
||||||
|
<h1 class='flex items-center gap-4 p-5 text-2xl'>
|
||||||
|
{text}
|
||||||
|
{children}
|
||||||
|
</h1>
|
||||||
|
</header>
|
||||||
|
)
|
||||||
|
}
|
26
components/Select.tsx
Normal file
26
components/Select.tsx
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
import { JSX } from 'preact'
|
||||||
|
|
||||||
|
export function Select(
|
||||||
|
{ children, className, ...props }: JSX.HTMLAttributes<HTMLSelectElement>,
|
||||||
|
) {
|
||||||
|
if (!props.id && props.name) {
|
||||||
|
props.id = props.name
|
||||||
|
} else if (!props.name && props.id) {
|
||||||
|
props.name = props.id
|
||||||
|
}
|
||||||
|
let defaultClassName =
|
||||||
|
'border-2 bg-stone-500/20 border-stone-500/20 px-2 py-1 rounded'
|
||||||
|
if (props.type == 'submit') {
|
||||||
|
defaultClassName =
|
||||||
|
'px-2 py-1 bg-emerald-500/20 rounded hover:bg-gray-500/25 cursor-pointer transition-colors'
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<select
|
||||||
|
{...props}
|
||||||
|
class={`${defaultClassName} ${className}`}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</select>
|
||||||
|
)
|
||||||
|
}
|
14
components/Table.tsx
Normal file
14
components/Table.tsx
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
import { JSX } from 'preact'
|
||||||
|
|
||||||
|
export function Table(
|
||||||
|
{ children, className, ...props }: JSX.HTMLAttributes<HTMLTableElement>,
|
||||||
|
) {
|
||||||
|
return (
|
||||||
|
<table
|
||||||
|
{...props}
|
||||||
|
class={`border-separate [border-spacing:1.25rem] text-left ${className}`}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</table>
|
||||||
|
)
|
||||||
|
}
|
|
@ -1,61 +0,0 @@
|
||||||
import { Todo, UserWithTodos } from '@homeman/models.ts'
|
|
||||||
import { Button } from '@homeman/components/Button.tsx'
|
|
||||||
import { Dialog } from '@homeman/components/Dialog.tsx'
|
|
||||||
import { createRef } from 'preact'
|
|
||||||
|
|
||||||
export interface Props {
|
|
||||||
user: UserWithTodos
|
|
||||||
}
|
|
||||||
|
|
||||||
export function TodoList(
|
|
||||||
{ user: { avatarUrl, assignedTodos, name, color } }: Props,
|
|
||||||
) {
|
|
||||||
const addTodoDialog = createRef<HTMLDialogElement>()
|
|
||||||
const todoItem = (
|
|
||||||
{ className, description, hideDone }: Pick<Todo, 'description'> & {
|
|
||||||
className?: string
|
|
||||||
hideDone?: boolean
|
|
||||||
},
|
|
||||||
) => (
|
|
||||||
<li
|
|
||||||
style={`border-color: #${color}`}
|
|
||||||
class={`${className || ''} ${
|
|
||||||
hideDone ? '' : 'border-l-4'
|
|
||||||
} p-4 rounded drop-shadow-lg bg-white dark:bg-stone-900 flex flex-col`}
|
|
||||||
>
|
|
||||||
<span class='text-xl'>{description}</span>
|
|
||||||
{hideDone ? '' : <Button class='mt-2'>Done</Button>}
|
|
||||||
</li>
|
|
||||||
)
|
|
||||||
return (
|
|
||||||
<div class='p-2 w-1/4 min-w-[15rem] relative flex flex-col grow-0'>
|
|
||||||
<Dialog
|
|
||||||
headerTitle='Add todo'
|
|
||||||
class='rounded drop-shadow-lg backdrop:bg-stone-500/90'
|
|
||||||
ref={addTodoDialog}
|
|
||||||
>
|
|
||||||
sup
|
|
||||||
</Dialog>
|
|
||||||
<img
|
|
||||||
class='rounded-full w-[15rem] h-[15rem] mb-2 object-cover'
|
|
||||||
src={avatarUrl != null ? avatarUrl : 'https://placehold.co/512x512'}
|
|
||||||
title={`${name}'s avatar`}
|
|
||||||
/>
|
|
||||||
<span style={`color: #${color};`} class='font-semibold text-center'>
|
|
||||||
{name}
|
|
||||||
</span>
|
|
||||||
<button class='mt-4 mb-4 text-left w-full px-2 py-1 rounded-lg border-[1px] text-stone-500 border-stone-500 opacity-50 hover:opacity-100'>
|
|
||||||
+ New
|
|
||||||
</button>
|
|
||||||
<ul class='flex flex-col gap-y-4'>
|
|
||||||
{assignedTodos.length < 1
|
|
||||||
? todoItem({
|
|
||||||
description: 'All clear! 🎉',
|
|
||||||
className: 'text-center',
|
|
||||||
hideDone: true,
|
|
||||||
})
|
|
||||||
: assignedTodos.map(todoItem)}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
|
@ -13,6 +13,7 @@ import * as $index from './routes/index.tsx'
|
||||||
import * as $Admin from './islands/Admin.tsx'
|
import * as $Admin from './islands/Admin.tsx'
|
||||||
import * as $Clock from './islands/Clock.tsx'
|
import * as $Clock from './islands/Clock.tsx'
|
||||||
import * as $Counter from './islands/Counter.tsx'
|
import * as $Counter from './islands/Counter.tsx'
|
||||||
|
import * as $TodoList from './islands/TodoList.tsx'
|
||||||
import { type Manifest } from '$fresh/server.ts'
|
import { type Manifest } from '$fresh/server.ts'
|
||||||
|
|
||||||
const manifest = {
|
const manifest = {
|
||||||
|
@ -30,6 +31,7 @@ const manifest = {
|
||||||
'./islands/Admin.tsx': $Admin,
|
'./islands/Admin.tsx': $Admin,
|
||||||
'./islands/Clock.tsx': $Clock,
|
'./islands/Clock.tsx': $Clock,
|
||||||
'./islands/Counter.tsx': $Counter,
|
'./islands/Counter.tsx': $Counter,
|
||||||
|
'./islands/TodoList.tsx': $TodoList,
|
||||||
},
|
},
|
||||||
baseUrl: import.meta.url,
|
baseUrl: import.meta.url,
|
||||||
} satisfies Manifest
|
} satisfies Manifest
|
||||||
|
|
|
@ -5,7 +5,15 @@ import { Button } from '@homeman/components/Button.tsx'
|
||||||
import { Input } from '@homeman/components/Input.tsx'
|
import { Input } from '@homeman/components/Input.tsx'
|
||||||
import { Label } from '@homeman/components/Label.tsx'
|
import { Label } from '@homeman/components/Label.tsx'
|
||||||
import { Dialog } from '@homeman/components/Dialog.tsx'
|
import { Dialog } from '@homeman/components/Dialog.tsx'
|
||||||
import { PencilSquareOutline, TrashOutline } from 'preact-heroicons'
|
import {
|
||||||
|
PencilSquareOutline,
|
||||||
|
PlusOutline,
|
||||||
|
PlusSolid,
|
||||||
|
TrashOutline,
|
||||||
|
} from 'preact-heroicons'
|
||||||
|
import { Table } from '@homeman/components/Table.tsx'
|
||||||
|
import { SectionHead } from '@homeman/components/SectionHead.tsx'
|
||||||
|
import { Avatar } from '@homeman/components/Avatar.tsx'
|
||||||
|
|
||||||
export interface Props {
|
export interface Props {
|
||||||
users: Record<string, User>
|
users: Record<string, User>
|
||||||
|
@ -66,7 +74,6 @@ export function Admin({ users, todos }: Props) {
|
||||||
<main class='flex flex-col'>
|
<main class='flex flex-col'>
|
||||||
<Dialog
|
<Dialog
|
||||||
headerTitle='Add user'
|
headerTitle='Add user'
|
||||||
class='rounded drop-shadow-lg backdrop:bg-stone-500/90'
|
|
||||||
show={showAddUserDialog.value}
|
show={showAddUserDialog.value}
|
||||||
onClose={() => showAddUserDialog.value = false}
|
onClose={() => showAddUserDialog.value = false}
|
||||||
>
|
>
|
||||||
|
@ -77,24 +84,20 @@ export function Admin({ users, todos }: Props) {
|
||||||
</Dialog>
|
</Dialog>
|
||||||
<Dialog
|
<Dialog
|
||||||
headerTitle={`Edit '${editUser.value?.name}'`}
|
headerTitle={`Edit '${editUser.value?.name}'`}
|
||||||
class='rounded drop-shadow-lg backdrop:bg-stone-500/90'
|
|
||||||
show={!!editUser.value}
|
show={!!editUser.value}
|
||||||
onClose={() => editUser.value = null}
|
onClose={() => editUser.value = null}
|
||||||
>
|
>
|
||||||
<UserForm
|
<UserForm
|
||||||
userData={editUser.value}
|
|
||||||
onCancelButtonClicked={() => editUser.value = null}
|
onCancelButtonClicked={() => editUser.value = null}
|
||||||
|
userData={editUser.value}
|
||||||
/>
|
/>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
<header class='flex items-center border-b-2 border-stone-500/20 '>
|
<SectionHead text={`Users (${users.length})`}>
|
||||||
<h1 class='p-5 text-2xl'>
|
|
||||||
Users ({users.length})
|
|
||||||
</h1>
|
|
||||||
<Button onClick={() => showAddUserDialog.value = true}>
|
<Button onClick={() => showAddUserDialog.value = true}>
|
||||||
Add User
|
<PlusOutline class='w-6 h-6' />
|
||||||
</Button>
|
</Button>
|
||||||
</header>
|
</SectionHead>
|
||||||
<table class='border-separate [border-spacing:1.25rem] text-left'>
|
<Table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
|
@ -112,7 +115,7 @@ export function Admin({ users, todos }: Props) {
|
||||||
<td>
|
<td>
|
||||||
{avatarUrl == null
|
{avatarUrl == null
|
||||||
? 'None'
|
? 'None'
|
||||||
: <img class='h-16 w-16 object-cover' src={avatarUrl} />}
|
: <Avatar className='h-16 w-16' src={avatarUrl} />}
|
||||||
</td>
|
</td>
|
||||||
<td style={`color: #${color}`}>
|
<td style={`color: #${color}`}>
|
||||||
#{color}
|
#{color}
|
||||||
|
@ -137,13 +140,9 @@ export function Admin({ users, todos }: Props) {
|
||||||
)
|
)
|
||||||
})}
|
})}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</Table>
|
||||||
<header class='flex items-center border-b-2 border-stone-500/20 '>
|
<SectionHead text={`Todos (${todos.length})`} />
|
||||||
<h1 class='p-5 text-2xl'>
|
<Table>
|
||||||
Todos ({todos.length})
|
|
||||||
</h1>
|
|
||||||
</header>
|
|
||||||
<table class='border-separate [border-spacing:1.25rem] text-left'>
|
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
|
@ -164,7 +163,7 @@ export function Admin({ users, todos }: Props) {
|
||||||
</tr>
|
</tr>
|
||||||
))}
|
))}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</Table>
|
||||||
</main>
|
</main>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
139
islands/TodoList.tsx
Normal file
139
islands/TodoList.tsx
Normal file
|
@ -0,0 +1,139 @@
|
||||||
|
import { Todo, User, UserWithTodos } from '@homeman/models.ts'
|
||||||
|
import { Button } from '@homeman/components/Button.tsx'
|
||||||
|
import { Dialog } from '@homeman/components/Dialog.tsx'
|
||||||
|
import { Avatar } from '@homeman/components/Avatar.tsx'
|
||||||
|
import { Signal, useSignal } from '@preact/signals'
|
||||||
|
import { Input } from '@homeman/components/Input.tsx'
|
||||||
|
import { Label } from '@homeman/components/Label.tsx'
|
||||||
|
|
||||||
|
export interface Props {
|
||||||
|
user: UserWithTodos
|
||||||
|
users: Record<string, User>
|
||||||
|
}
|
||||||
|
|
||||||
|
export function TodoList(
|
||||||
|
{ users, user: { id, avatarUrl, assignedTodos, name, color } }: Props,
|
||||||
|
) {
|
||||||
|
const todoAssignUserId: Signal<string | null> = useSignal(null)
|
||||||
|
const showAddTodoDialog = useSignal(false)
|
||||||
|
|
||||||
|
const todoItem = (
|
||||||
|
{ className, description, hideDone }: Pick<Todo, 'description'> & {
|
||||||
|
className?: string
|
||||||
|
hideDone?: boolean
|
||||||
|
},
|
||||||
|
) => (
|
||||||
|
<li
|
||||||
|
style={`border-color: #${color}`}
|
||||||
|
class={`${className || ''} ${
|
||||||
|
hideDone ? '' : 'border-l-4'
|
||||||
|
} p-4 rounded drop-shadow-lg bg-white dark:bg-stone-900 flex flex-col`}
|
||||||
|
>
|
||||||
|
<span class='text-xl'>{description}</span>
|
||||||
|
{hideDone ? '' : <Button class='mt-2'>Done</Button>}
|
||||||
|
</li>
|
||||||
|
)
|
||||||
|
return (
|
||||||
|
<div class='p-2 w-1/4 min-w-[15rem] relative flex flex-col grow-0'>
|
||||||
|
<Dialog
|
||||||
|
headerTitle='Add todo'
|
||||||
|
show={showAddTodoDialog.value}
|
||||||
|
onClose={() => showAddTodoDialog.value = false}
|
||||||
|
>
|
||||||
|
<form
|
||||||
|
class='p-4 gap-4 flex flex-col'
|
||||||
|
action='/api/todo'
|
||||||
|
method='post'
|
||||||
|
encType='multipart/form-data'
|
||||||
|
>
|
||||||
|
<Label for='description'>
|
||||||
|
Description
|
||||||
|
<Input autofocus name='description' />
|
||||||
|
</Label>
|
||||||
|
<span>
|
||||||
|
Assignee
|
||||||
|
<ul class='flex gap-2'>
|
||||||
|
<li>
|
||||||
|
<input
|
||||||
|
type='radio'
|
||||||
|
id='assigneeUserId_unassigned'
|
||||||
|
name='assigneeUserId'
|
||||||
|
value=''
|
||||||
|
/>
|
||||||
|
<Label for='assigneeUserId_unassigned'>
|
||||||
|
<Avatar
|
||||||
|
className='mb-2'
|
||||||
|
src='http://placekitten.com/512/512'
|
||||||
|
/>
|
||||||
|
<span
|
||||||
|
style={`color: #888888;`}
|
||||||
|
class='font-semibold text-center'
|
||||||
|
>
|
||||||
|
Shared
|
||||||
|
</span>
|
||||||
|
</Label>
|
||||||
|
</li>
|
||||||
|
{Object.entries(users).map(([id, { avatarUrl, color }]) => {
|
||||||
|
const eid = `assigneeUserId_${id}`
|
||||||
|
return (
|
||||||
|
<li>
|
||||||
|
<input
|
||||||
|
type='radio'
|
||||||
|
id={eid}
|
||||||
|
name='assigneeUserId'
|
||||||
|
value={id}
|
||||||
|
/>
|
||||||
|
<Label for={eid}>
|
||||||
|
<Avatar className='mb-2' src={avatarUrl} />
|
||||||
|
<span
|
||||||
|
style={`color: #${color};`}
|
||||||
|
class='font-semibold text-center'
|
||||||
|
>
|
||||||
|
{name}
|
||||||
|
</span>
|
||||||
|
</Label>
|
||||||
|
</li>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</ul>
|
||||||
|
</span>
|
||||||
|
<footer class='flex justify-end gap-2'>
|
||||||
|
<Button
|
||||||
|
type='button'
|
||||||
|
onClick={() => showAddTodoDialog.value = false}
|
||||||
|
>
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
<Input type='submit' value='Save' />
|
||||||
|
</footer>
|
||||||
|
</form>
|
||||||
|
</Dialog>
|
||||||
|
<Avatar
|
||||||
|
className='mb-2'
|
||||||
|
src={avatarUrl != null ? avatarUrl : 'https://placehold.co/512x512'}
|
||||||
|
title={`${name}'s avatar`}
|
||||||
|
/>
|
||||||
|
<span style={`color: #${color};`} class='font-semibold text-center'>
|
||||||
|
{name}
|
||||||
|
</span>
|
||||||
|
<button
|
||||||
|
class='mt-4 mb-4 text-left w-full px-2 py-1 rounded-lg border-[1px] text-stone-500 border-stone-500 opacity-50 hover:opacity-100'
|
||||||
|
onClick={() => {
|
||||||
|
showAddTodoDialog.value = true
|
||||||
|
todoAssignUserId.value = id
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
+ New
|
||||||
|
</button>
|
||||||
|
<ul class='flex flex-col gap-y-4'>
|
||||||
|
{assignedTodos.length < 1
|
||||||
|
? todoItem({
|
||||||
|
description: 'All clear! 🎉',
|
||||||
|
className: 'text-center',
|
||||||
|
hideDone: true,
|
||||||
|
})
|
||||||
|
: assignedTodos.map(todoItem)}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
|
@ -48,6 +48,7 @@ export const handler: Handlers<User | null> = {
|
||||||
|
|
||||||
if (avatarFile) {
|
if (avatarFile) {
|
||||||
await Deno.mkdir('./static/uploads', { recursive: true })
|
await Deno.mkdir('./static/uploads', { recursive: true })
|
||||||
|
// TODO: id will be undefined here
|
||||||
const name = `${id}-${avatarFile.name.replaceAll('/', '')}`
|
const name = `${id}-${avatarFile.name.replaceAll('/', '')}`
|
||||||
const localAvatarFile = await Deno.open(`./static/uploads/${name}`, {
|
const localAvatarFile = await Deno.open(`./static/uploads/${name}`, {
|
||||||
create: true,
|
create: true,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { Handlers, PageProps } from '$fresh/server.ts'
|
import { Handlers, PageProps } from '$fresh/server.ts'
|
||||||
import { db, Todo, User, UserWithTodos } from '@homeman/models.ts'
|
import { db, Todo, User, UserWithTodos } from '@homeman/models.ts'
|
||||||
import { TodoList } from '@homeman/components/TodoList.tsx'
|
import { TodoList } from '@homeman/islands/TodoList.tsx'
|
||||||
|
|
||||||
const unassignedUserPlaceholder: User = {
|
const unassignedUserPlaceholder: User = {
|
||||||
id: '',
|
id: '',
|
||||||
|
@ -12,6 +12,7 @@ const unassignedUserPlaceholder: User = {
|
||||||
|
|
||||||
interface Data {
|
interface Data {
|
||||||
users: UserWithTodos[]
|
users: UserWithTodos[]
|
||||||
|
allUsers: Record<string, User>
|
||||||
unassignedTodos: Todo[]
|
unassignedTodos: Todo[]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,12 +22,16 @@ export const handler: Handlers = {
|
||||||
const unassignedTodos = await db.todos.findMany({
|
const unassignedTodos = await db.todos.findMany({
|
||||||
where: { assigneeUserId: null },
|
where: { assigneeUserId: null },
|
||||||
})
|
})
|
||||||
return ctx.render({ users, unassignedTodos })
|
const allUsers: Data['allUsers'] = {}
|
||||||
|
for (const u of users) {
|
||||||
|
allUsers[u.id] = u
|
||||||
|
}
|
||||||
|
return ctx.render({ users, unassignedTodos, allUsers })
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Home(
|
export default function Home(
|
||||||
{ data: { users, unassignedTodos } }: PageProps<Data>,
|
{ data: { users, unassignedTodos, allUsers } }: PageProps<Data>,
|
||||||
) {
|
) {
|
||||||
const unassignedUser: UserWithTodos = {
|
const unassignedUser: UserWithTodos = {
|
||||||
...unassignedUserPlaceholder,
|
...unassignedUserPlaceholder,
|
||||||
|
@ -39,11 +44,11 @@ export default function Home(
|
||||||
</h1>
|
</h1>
|
||||||
<ul class='p-4 relative flex overflow-x-scroll max-w-screen'>
|
<ul class='p-4 relative flex overflow-x-scroll max-w-screen'>
|
||||||
<li>
|
<li>
|
||||||
<TodoList user={unassignedUser} />
|
<TodoList user={unassignedUser} users={allUsers} />
|
||||||
</li>
|
</li>
|
||||||
{users.map((u) => (
|
{users.map((u) => (
|
||||||
<li>
|
<li>
|
||||||
<TodoList user={u} />
|
<TodoList user={u} users={allUsers} />
|
||||||
</li>
|
</li>
|
||||||
))}
|
))}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in a new issue