your personal website on atproto - mirror
blento.app
1<script lang="ts">
2 import type { WithElementRef } from 'bits-ui';
3 import type { HTMLAttributes } from 'svelte/elements';
4 import BaseCard from './BaseCard.svelte';
5 import type { Item } from '$lib/types';
6 import { Button, cn, Label, Popover } from '@foxui/core';
7 import { ColorSelect } from '@foxui/colors';
8 import { AllCardDefinitions, CardDefinitionsByType, getColor } from '..';
9 import { COLUMNS } from '$lib';
10 import { getCanEdit, getIsMobile } from '$lib/website/context';
11 import PlainTextEditor from '$lib/components/PlainTextEditor.svelte';
12
13 let colorsChoices = [
14 { class: 'text-base-500', label: 'base' },
15 { class: 'text-accent-500', label: 'accent' },
16 { class: 'text-base-300 dark:text-base-700', label: 'transparent' },
17 { class: 'text-red-500', label: 'red' },
18 { class: 'text-orange-500', label: 'orange' },
19 { class: 'text-amber-500', label: 'amber' },
20 { class: 'text-yellow-500', label: 'yellow' },
21 { class: 'text-lime-500', label: 'lime' },
22 { class: 'text-green-500', label: 'green' },
23 { class: 'text-emerald-500', label: 'emerald' },
24 { class: 'text-teal-500', label: 'teal' },
25 { class: 'text-cyan-500', label: 'cyan' },
26 { class: 'text-sky-500', label: 'sky' },
27 { class: 'text-blue-500', label: 'blue' },
28 { class: 'text-indigo-500', label: 'indigo' },
29 { class: 'text-violet-500', label: 'violet' },
30 { class: 'text-purple-500', label: 'purple' },
31 { class: 'text-fuchsia-500', label: 'fuchsia' },
32 { class: 'text-pink-500', label: 'pink' },
33 { class: 'text-rose-500', label: 'rose' }
34 ];
35
36 export type BaseEditingCardProps = {
37 item: Item;
38 ondelete: () => void;
39 onsetsize: (newW: number, newH: number) => void;
40 } & WithElementRef<HTMLAttributes<HTMLDivElement>>;
41
42 let {
43 item = $bindable(),
44 children,
45 ref = $bindable(null),
46 onsetsize,
47 ondelete,
48 ...rest
49 }: BaseEditingCardProps = $props();
50
51 let selectedColor = $derived(colorsChoices.find((c) => getColor(item) === c.label));
52
53 let canEdit = getCanEdit();
54 let isMobile = getIsMobile();
55
56 let colorPopoverOpen = $state(false);
57
58 const cardDef = $derived(CardDefinitionsByType[item.cardType]);
59
60 const minW = $derived(cardDef.minW ?? (isMobile() ? 2 : 2));
61 const minH = $derived(cardDef.minH ?? (isMobile() ? 2 : 2));
62
63 const maxW = $derived(cardDef.maxW ?? COLUMNS);
64 const maxH = $derived(cardDef.maxH ?? (isMobile() ? 12 : 6));
65
66 // Resize handle state
67 let isResizing = $state(false);
68 let resizeStartX = $state(0);
69 let resizeStartY = $state(0);
70 let resizeStartW = $state(0);
71 let resizeStartH = $state(0);
72
73 function handleResizeStart(e: PointerEvent) {
74 e.preventDefault();
75 e.stopPropagation();
76 isResizing = true;
77 resizeStartX = e.clientX;
78 resizeStartY = e.clientY;
79 // For mobile view, sizes are doubled so we need to account for that
80 resizeStartW = isMobile() ? (item.mobileW ?? item.w) : item.w;
81 resizeStartH = isMobile() ? (item.mobileH ?? item.h) : item.h;
82
83 document.addEventListener('pointermove', handleResizeMove);
84 document.addEventListener('pointerup', handleResizeEnd);
85 }
86
87 function handleResizeMove(e: PointerEvent) {
88 if (!isResizing || !ref) return;
89
90 // Get the container width to calculate cell size
91 const container = ref.closest('.\\@container\\/grid') as HTMLElement;
92 if (!container) return;
93
94 const containerRect = container.getBoundingClientRect();
95 const cellSize = containerRect.width / COLUMNS;
96
97 // Calculate delta in grid units (each visual unit is 2 grid units)
98 const deltaX = e.clientX - resizeStartX;
99 const deltaY = e.clientY - resizeStartY;
100
101 // Convert pixel delta to grid units (2 grid units = 1 visual cell)
102 const gridDeltaW = Math.round(deltaX / cellSize);
103 const gridDeltaH = Math.round(deltaY / cellSize);
104
105 let newW = resizeStartW + gridDeltaW;
106 let newH = resizeStartH + gridDeltaH;
107
108 if (isMobile()) {
109 newW = Math.round(newW / 4) * 4;
110 } else {
111 newW = Math.round(newW / 2) * 2;
112 }
113 let mult = isMobile() ? 2 : 1;
114
115 // Clamp to min/max
116 newW = Math.max(minW * mult, Math.min(maxW, newW));
117 newH = Math.max(minH * mult, Math.min(maxH, newH));
118
119 // Only call onsetsize if size changed
120 const currentW = isMobile() ? (item.mobileW ?? item.w) : item.w;
121 const currentH = isMobile() ? (item.mobileH ?? item.h) : item.h;
122
123 if (newW !== currentW || newH !== currentH) {
124 onsetsize?.(newW, newH);
125 }
126 }
127
128 function handleResizeEnd() {
129 isResizing = false;
130 document.removeEventListener('pointermove', handleResizeMove);
131 document.removeEventListener('pointerup', handleResizeEnd);
132 }
133
134 function canSetSize(w: number, h: number) {
135 if (!cardDef) return false;
136
137 if (isMobile()) {
138 return w >= minW && w * 2 <= maxW && h >= minH && h * 2 <= maxH;
139 }
140
141 return w >= minW && w <= maxW && h >= minH && h <= maxH;
142 }
143
144 function setSize(w: number, h: number) {
145 if (isMobile()) {
146 w *= 2;
147 h *= 2;
148 }
149 onsetsize?.(w, h);
150 }
151
152 let settingsPopoverOpen = $state(false);
153 let changePopoverOpen = $state(false);
154
155 const changeOptions = $derived(AllCardDefinitions.filter((def) => def.canChange?.(item)));
156
157 function applyChange(def: (typeof AllCardDefinitions)[number]) {
158 const updated = def.change ? def.change(item) : item;
159 if (updated && updated !== item) {
160 item = updated;
161 }
162 item.cardType = def.type;
163 changePopoverOpen = false;
164 }
165
166 function getChangeLabel(def: (typeof AllCardDefinitions)[number]) {
167 return def.name;
168 }
169</script>
170
171<BaseCard
172 {item}
173 isEditing={true}
174 bind:ref
175 showOutline={isResizing}
176 class="scale-100 opacity-100 starting:scale-0 starting:opacity-0"
177 {...rest}
178>
179 <div class="absolute inset-0 cursor-grab"></div>
180 {@render children?.()}
181
182 {#if cardDef.canHaveLabel}
183 <div
184 class={cn(
185 'bg-base-200/30 dark:bg-base-900/30 absolute top-2 left-2 z-100 w-fit max-w-[calc(100%-1rem)] rounded-xl p-1 px-2 backdrop-blur-md',
186 !item.cardData.label && 'hidden group-hover/card:block'
187 )}
188 >
189 <PlainTextEditor
190 class="text-base-900 dark:text-base-50 w-fit text-base font-semibold"
191 key="label"
192 bind:contentDict={item.cardData}
193 placeholder="Label"
194 />
195 </div>
196 {/if}
197
198 {#snippet controls()}
199 <!-- class="bg-base-100 border-base-200 dark:bg-base-800 dark:border-base-700 absolute -top-3 -left-3 hidden cursor-pointer items-center justify-center rounded-full border p-2 shadow-lg group-focus-within:inline-flex group-hover/card:inline-flex" -->
200 {#if canEdit()}
201 {#if changeOptions.length > 1}
202 <div
203 class={[
204 'absolute -top-3 -right-3 hidden group-focus-within:inline-flex group-hover/card:inline-flex',
205 changePopoverOpen ? 'inline-flex' : ''
206 ]}
207 >
208 <Popover bind:open={changePopoverOpen} class="bg-base-50 dark:bg-base-900">
209 {#snippet child({ props })}
210 <Button size="icon" variant="secondary" {...props}>
211 <svg
212 xmlns="http://www.w3.org/2000/svg"
213 fill="none"
214 viewBox="0 0 24 24"
215 stroke-width="1.5"
216 stroke="currentColor"
217 class="size-6"
218 >
219 <path
220 stroke-linecap="round"
221 stroke-linejoin="round"
222 d="M7.5 21 3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0L16.5 12M21 7.5H7.5"
223 />
224 </svg>
225
226 <span class="sr-only">Change card type</span>
227 </Button>
228 {/snippet}
229
230 <div class="flex min-w-36 flex-col gap-1">
231 <Label class="mb-2">Card type</Label>
232 {#each changeOptions as changeDef, i (i)}
233 <Button
234 class="justify-start"
235 variant={changeDef.type === item.cardType ? 'primary' : 'ghost'}
236 onclick={() => applyChange(changeDef)}
237 >
238 {getChangeLabel(changeDef)}
239 </Button>
240 {/each}
241 </div>
242 </Popover>
243 </div>
244 {/if}
245
246 <Button
247 size="icon"
248 variant="rose"
249 onclick={() => {
250 ondelete();
251 }}
252 class="absolute -top-3 -left-3 hidden group-focus-within:inline-flex group-hover/card:inline-flex"
253 >
254 <svg
255 xmlns="http://www.w3.org/2000/svg"
256 fill="none"
257 viewBox="0 0 24 24"
258 stroke-width="1.5"
259 stroke="currentColor"
260 >
261 <path
262 stroke-linecap="round"
263 stroke-linejoin="round"
264 d="m14.74 9-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 0 0-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 0 0-7.5 0"
265 />
266 </svg>
267
268 <span class="sr-only">Delete card</span>
269 </Button>
270
271 <div
272 class={[
273 'absolute -bottom-7 w-full items-center justify-center text-xs group-focus-within:inline-flex group-hover/card:inline-flex',
274 colorPopoverOpen || settingsPopoverOpen ? 'inline-flex' : 'hidden'
275 ]}
276 >
277 <div
278 class="bg-base-100 border-base-200 dark:bg-base-800 dark:border-base-700 z-100 inline-flex items-center gap-0.5 rounded-2xl border p-1 px-2 shadow-lg"
279 >
280 {#if cardDef.allowSetColor !== false}
281 <Popover bind:open={colorPopoverOpen}>
282 {#snippet child({ props })}
283 <button
284 {...props}
285 class={[
286 'm-2 size-4 cursor-pointer rounded-full',
287 !item.color || item.color === 'base' || item.color === 'transparent'
288 ? 'text-base-800 dark:text-base-200'
289 : 'text-accent-500'
290 ]}
291 >
292 <svg
293 xmlns="http://www.w3.org/2000/svg"
294 viewBox="0 0 24 24"
295 fill="currentColor"
296 class="size-4"
297 >
298 <path
299 fill-rule="evenodd"
300 d="M20.599 1.5c-.376 0-.743.111-1.055.32l-5.08 3.385a18.747 18.747 0 0 0-3.471 2.987 10.04 10.04 0 0 1 4.815 4.815 18.748 18.748 0 0 0 2.987-3.472l3.386-5.079A1.902 1.902 0 0 0 20.599 1.5Zm-8.3 14.025a18.76 18.76 0 0 0 1.896-1.207 8.026 8.026 0 0 0-4.513-4.513A18.75 18.75 0 0 0 8.475 11.7l-.278.5a5.26 5.26 0 0 1 3.601 3.602l.502-.278ZM6.75 13.5A3.75 3.75 0 0 0 3 17.25a1.5 1.5 0 0 1-1.601 1.497.75.75 0 0 0-.7 1.123 5.25 5.25 0 0 0 9.8-2.62 3.75 3.75 0 0 0-3.75-3.75Z"
301 clip-rule="evenodd"
302 />
303 </svg>
304 </button>
305 {/snippet}
306 <ColorSelect
307 selected={selectedColor}
308 colors={colorsChoices}
309 onselected={(color, previous) => {
310 if (typeof previous === 'string' || typeof color === 'string') {
311 return;
312 }
313
314 item.color = color.label;
315 }}
316 class="w-64"
317 />
318 </Popover>
319 {/if}
320
321 {#if canSetSize(2, 2)}
322 <button
323 onclick={() => {
324 setSize(2, 2);
325 }}
326 class="hover:bg-accent-500/10 cursor-pointer rounded-xl p-2"
327 >
328 <div class="border-base-900 dark:border-base-50 size-3 rounded-sm border-2"></div>
329
330 <span class="sr-only">set size to 1x1</span>
331 </button>
332 {/if}
333
334 {#if canSetSize(4, 2)}
335 <button
336 onclick={() => {
337 setSize(4, 2);
338 }}
339 class="hover:bg-accent-500/10 cursor-pointer rounded-xl p-2"
340 >
341 <div class="border-base-900 dark:border-base-50 h-3 w-5 rounded-sm border-2"></div>
342 <span class="sr-only">set size to 2x1</span>
343 </button>
344 {/if}
345 {#if canSetSize(2, 4)}
346 <button
347 onclick={() => {
348 setSize(2, 4);
349 }}
350 class="hover:bg-accent-500/10 cursor-pointer rounded-xl p-2"
351 >
352 <div class="border-base-900 dark:border-base-50 h-5 w-3 rounded-sm border-2"></div>
353
354 <span class="sr-only">set size to 1x2</span>
355 </button>
356 {/if}
357 {#if canSetSize(4, 4)}
358 <button
359 onclick={() => {
360 setSize(4, 4);
361 }}
362 class="hover:bg-accent-500/10 cursor-pointer rounded-xl p-2"
363 >
364 <div class="border-base-900 dark:border-base-50 h-5 w-5 rounded-sm border-2"></div>
365
366 <span class="sr-only">set size to 2x2</span>
367 </button>
368 {/if}
369
370 {#if cardDef.settingsComponent}
371 <Popover bind:open={settingsPopoverOpen} class="bg-base-50 dark:bg-base-900">
372 {#snippet child({ props })}
373 <button {...props} class="hover:bg-accent-500/10 cursor-pointer rounded-xl p-2">
374 <svg
375 xmlns="http://www.w3.org/2000/svg"
376 fill="none"
377 viewBox="0 0 24 24"
378 stroke-width="2"
379 stroke="currentColor"
380 class="size-5"
381 >
382 <path
383 stroke-linecap="round"
384 stroke-linejoin="round"
385 d="M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87.074.04.147.083.22.127.325.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 0 1 1.37.49l1.296 2.247a1.125 1.125 0 0 1-.26 1.431l-1.003.827c-.293.241-.438.613-.43.992a7.723 7.723 0 0 1 0 .255c-.008.378.137.75.43.991l1.004.827c.424.35.534.955.26 1.43l-1.298 2.247a1.125 1.125 0 0 1-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.47 6.47 0 0 1-.22.128c-.331.183-.581.495-.644.869l-.213 1.281c-.09.543-.56.94-1.11.94h-2.594c-.55 0-1.019-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 0 1-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 0 1-1.369-.49l-1.297-2.247a1.125 1.125 0 0 1 .26-1.431l1.004-.827c.292-.24.437-.613.43-.991a6.932 6.932 0 0 1 0-.255c.007-.38-.138-.751-.43-.992l-1.004-.827a1.125 1.125 0 0 1-.26-1.43l1.297-2.247a1.125 1.125 0 0 1 1.37-.491l1.216.456c.356.133.751.072 1.076-.124.072-.044.146-.086.22-.128.332-.183.582-.495.644-.869l.214-1.28Z"
386 />
387 <path
388 stroke-linecap="round"
389 stroke-linejoin="round"
390 d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
391 />
392 </svg>
393 </button>
394 {/snippet}
395 <cardDef.settingsComponent
396 bind:item
397 onclose={() => {
398 settingsPopoverOpen = false;
399 }}
400 />
401 </Popover>
402 {/if}
403 </div>
404 </div>
405
406 {#if cardDef.canResize !== false}
407 <!-- Resize handle at bottom right corner -->
408 <div
409 onpointerdown={handleResizeStart}
410 class="bg-base-300/70 dark:bg-base-900/70 pointer-events-auto absolute right-0.5 bottom-0.5 hidden cursor-se-resize rounded-md rounded-br-3xl p-1 group-hover/card:block"
411 >
412 <svg
413 xmlns="http://www.w3.org/2000/svg"
414 viewBox="0 0 24 24"
415 fill="none"
416 stroke="currentColor"
417 stroke-width="2"
418 stroke-linecap="round"
419 stroke-linejoin="round"
420 class=" dark:text-base-400 text-base-600 size-4"
421 >
422 <circle cx="12" cy="5" r="1" /><circle cx="19" cy="5" r="1" /><circle
423 cx="5"
424 cy="5"
425 r="1"
426 />
427 <circle cx="12" cy="12" r="1" /><circle cx="19" cy="12" r="1" /><circle
428 cx="5"
429 cy="12"
430 r="1"
431 />
432 <circle cx="12" cy="19" r="1" /><circle cx="19" cy="19" r="1" /><circle
433 cx="5"
434 cy="19"
435 r="1"
436 />
437 </svg>
438 <span class="sr-only">Resize card</span>
439 </div>
440 {/if}
441 {/if}
442 {/snippet}
443</BaseCard>