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 locked={item.cardData?.locked}
177 class="scale-100 opacity-100 starting:scale-0 starting:opacity-0"
178 {...rest}
179>
180 {#if !item.cardData?.locked}
181 <div class="absolute inset-0 cursor-grab"></div>
182 {/if}
183 {@render children?.()}
184
185 {#if cardDef.canHaveLabel}
186 <div
187 class={cn(
188 'bg-base-200/50 dark:bg-base-900/50 absolute top-2 left-2 z-100 w-fit max-w-[calc(100%-1rem)] rounded-xl p-1 px-2 backdrop-blur-md',
189 !item.cardData.label && 'hidden group-hover/card:block'
190 )}
191 >
192 <PlainTextEditor
193 class="text-base-900 dark:text-base-50 w-fit text-base font-semibold"
194 key="label"
195 bind:contentDict={item.cardData}
196 placeholder="Label"
197 />
198 </div>
199 {/if}
200
201 {#snippet controls()}
202 <!-- 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" -->
203 {#if canEdit()}
204 {#if changeOptions.length > 1}
205 <div
206 class={[
207 'absolute -top-3 -right-3 hidden group-focus-within:inline-flex group-hover/card:inline-flex',
208 changePopoverOpen ? 'inline-flex' : ''
209 ]}
210 >
211 <Popover bind:open={changePopoverOpen} class="bg-base-50 dark:bg-base-900">
212 {#snippet child({ props })}
213 <Button size="icon" variant="secondary" {...props}>
214 <svg
215 xmlns="http://www.w3.org/2000/svg"
216 fill="none"
217 viewBox="0 0 24 24"
218 stroke-width="1.5"
219 stroke="currentColor"
220 class="size-6"
221 >
222 <path
223 stroke-linecap="round"
224 stroke-linejoin="round"
225 d="M7.5 21 3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0L16.5 12M21 7.5H7.5"
226 />
227 </svg>
228
229 <span class="sr-only">Change card type</span>
230 </Button>
231 {/snippet}
232
233 <div class="flex min-w-36 flex-col gap-1">
234 <Label class="mb-2">Card type</Label>
235 {#each changeOptions as changeDef, i (i)}
236 <Button
237 class="justify-start"
238 variant={changeDef.type === item.cardType ? 'primary' : 'ghost'}
239 onclick={() => applyChange(changeDef)}
240 >
241 {getChangeLabel(changeDef)}
242 </Button>
243 {/each}
244 </div>
245 </Popover>
246 </div>
247 {/if}
248
249 <Button
250 size="icon"
251 variant="rose"
252 onclick={() => {
253 ondelete();
254 }}
255 class="absolute -top-3 -left-3 hidden group-focus-within:inline-flex group-hover/card:inline-flex"
256 >
257 <svg
258 xmlns="http://www.w3.org/2000/svg"
259 fill="none"
260 viewBox="0 0 24 24"
261 stroke-width="1.5"
262 stroke="currentColor"
263 >
264 <path
265 stroke-linecap="round"
266 stroke-linejoin="round"
267 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"
268 />
269 </svg>
270
271 <span class="sr-only">Delete card</span>
272 </Button>
273
274 <div
275 class={[
276 'absolute -bottom-7 w-full items-center justify-center text-xs group-focus-within:inline-flex group-hover/card:inline-flex',
277 colorPopoverOpen || settingsPopoverOpen ? 'inline-flex' : 'hidden'
278 ]}
279 >
280 <div
281 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"
282 >
283 {#if cardDef.allowSetColor !== false}
284 <Popover bind:open={colorPopoverOpen}>
285 {#snippet child({ props })}
286 <button
287 {...props}
288 class={[
289 'm-2 size-4 cursor-pointer rounded-full',
290 !item.color || item.color === 'base' || item.color === 'transparent'
291 ? 'text-base-800 dark:text-base-200'
292 : 'text-accent-500'
293 ]}
294 >
295 <svg
296 xmlns="http://www.w3.org/2000/svg"
297 viewBox="0 0 24 24"
298 fill="currentColor"
299 class="size-4"
300 >
301 <path
302 fill-rule="evenodd"
303 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"
304 clip-rule="evenodd"
305 />
306 </svg>
307 </button>
308 {/snippet}
309 <ColorSelect
310 selected={selectedColor}
311 colors={colorsChoices}
312 onselected={(color, previous) => {
313 if (typeof previous === 'string' || typeof color === 'string') {
314 return;
315 }
316
317 item.color = color.label;
318 }}
319 class="w-64"
320 />
321 </Popover>
322 {/if}
323
324 {#if canSetSize(2, 2)}
325 <button
326 onclick={() => {
327 setSize(2, 2);
328 }}
329 class="hover:bg-accent-500/10 cursor-pointer rounded-xl p-2"
330 >
331 <div class="border-base-900 dark:border-base-50 size-3 rounded-sm border-2"></div>
332
333 <span class="sr-only">set size to 1x1</span>
334 </button>
335 {/if}
336
337 {#if canSetSize(4, 2)}
338 <button
339 onclick={() => {
340 setSize(4, 2);
341 }}
342 class="hover:bg-accent-500/10 cursor-pointer rounded-xl p-2"
343 >
344 <div class="border-base-900 dark:border-base-50 h-3 w-5 rounded-sm border-2"></div>
345 <span class="sr-only">set size to 2x1</span>
346 </button>
347 {/if}
348 {#if canSetSize(2, 4)}
349 <button
350 onclick={() => {
351 setSize(2, 4);
352 }}
353 class="hover:bg-accent-500/10 cursor-pointer rounded-xl p-2"
354 >
355 <div class="border-base-900 dark:border-base-50 h-5 w-3 rounded-sm border-2"></div>
356
357 <span class="sr-only">set size to 1x2</span>
358 </button>
359 {/if}
360 {#if canSetSize(4, 4)}
361 <button
362 onclick={() => {
363 setSize(4, 4);
364 }}
365 class="hover:bg-accent-500/10 cursor-pointer rounded-xl p-2"
366 >
367 <div class="border-base-900 dark:border-base-50 h-5 w-5 rounded-sm border-2"></div>
368
369 <span class="sr-only">set size to 2x2</span>
370 </button>
371 {/if}
372
373 {#if cardDef.settingsComponent}
374 <Popover bind:open={settingsPopoverOpen} class="bg-base-50 dark:bg-base-900">
375 {#snippet child({ props })}
376 <button {...props} class="hover:bg-accent-500/10 cursor-pointer rounded-xl p-2">
377 <svg
378 xmlns="http://www.w3.org/2000/svg"
379 fill="none"
380 viewBox="0 0 24 24"
381 stroke-width="2"
382 stroke="currentColor"
383 class="size-5"
384 >
385 <path
386 stroke-linecap="round"
387 stroke-linejoin="round"
388 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"
389 />
390 <path
391 stroke-linecap="round"
392 stroke-linejoin="round"
393 d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
394 />
395 </svg>
396 </button>
397 {/snippet}
398 <cardDef.settingsComponent
399 bind:item
400 onclose={() => {
401 settingsPopoverOpen = false;
402 }}
403 />
404 </Popover>
405 {/if}
406 </div>
407 </div>
408
409 {#if cardDef.canResize !== false}
410 <!-- Resize handle at bottom right corner -->
411 <div
412 onpointerdown={handleResizeStart}
413 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"
414 >
415 <svg
416 xmlns="http://www.w3.org/2000/svg"
417 viewBox="0 0 24 24"
418 fill="none"
419 stroke="currentColor"
420 stroke-width="2"
421 stroke-linecap="round"
422 stroke-linejoin="round"
423 class=" dark:text-base-400 text-base-600 size-4"
424 >
425 <circle cx="12" cy="5" r="1" /><circle cx="19" cy="5" r="1" /><circle
426 cx="5"
427 cy="5"
428 r="1"
429 />
430 <circle cx="12" cy="12" r="1" /><circle cx="19" cy="12" r="1" /><circle
431 cx="5"
432 cy="12"
433 r="1"
434 />
435 <circle cx="12" cy="19" r="1" /><circle cx="19" cy="19" r="1" /><circle
436 cx="5"
437 cy="19"
438 r="1"
439 />
440 </svg>
441 <span class="sr-only">Resize card</span>
442 </div>
443 {/if}
444 {/if}
445 {/snippet}
446</BaseCard>