simian 0.2.0

A command-line tool for exploring and implementing Machine Learning algorithms in Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
import clsx from 'clsx'
import _ from 'lodash'
import { LayoutGrid, UploadCloud } from 'lucide-react'
import { TbCarouselHorizontal } from 'react-icons/tb'
import { nanoid } from 'nanoid'
import { useCallback, useEffect, useMemo, useRef, useState } from 'react'
import { Transforms } from 'slate'
import { ReactEditor } from 'slate-react'

import { contextualize } from '@/ui/editor/context'
import { ElementProps } from '@/ui/editor/types'
import { useMediaQuery } from '@uidotdev/usehooks'

import { Block, BlockMenuItem } from '../../block'
import {
  ImageBlockElement,
  ImageItem,
  ImageItemWithUpload,
  Upload,
} from './types'
import { ImageBlockGrid } from './grid'
import { ImageBlockCarousel } from './carousel'
import { ImageBlockElementContext, ItemFocus } from './context'

export const ImageBlock = contextualize<ElementProps<'image-block'>>()(
  ['editor'],
  ({ attributes, children, editor, element }) => {
    const [uploads, setUploads] = useState<Upload[]>([])
    const [focus, setFocusBase] = useState<ItemFocus | null>(null)
    const fileInputRef = useRef<HTMLInputElement | null>(null)
    const isMobile = useMediaQuery('only screen and (max-width : 768px)')

    const isReadMode = editor.mode === 'read'

    /**
     * The items are composed by real items from element and
     * the virtual items which are being uploaded or just got
     * uploaded. This is important to ensure image ordering.
     */
    const items = useMemo(() => {
      const sortedItems: ImageItemWithUpload[] = [...element.items]
      const positionMap = sortedItems.reduce(
        (obj, item, idx) => ({
          ...obj,
          [item.id]: { idx, item },
        }),
        {} as { [id: string]: { idx: number; item: ImageItemWithUpload } },
      )

      // Incorporate the uploads into the items list.
      for (const upload of uploads) {
        if (positionMap[upload.id]) {
          sortedItems.splice(positionMap[upload.id].idx, 1, {
            ...positionMap[upload.id].item,
            upload,
          })
        } else {
          // Upload is not finished: we need to place a virtual
          // item at the proper position.
          const prevIdx =
            upload.prevId === null
              ? -1
              : (positionMap[upload.prevId]?.idx ?? -2)

          const idx = prevIdx + 1 // after prev

          const uploadItem = {
            id: upload.id,
            mime: upload.file.type,
            upload,
          }

          sortedItems.splice(idx, 0, uploadItem)

          positionMap[uploadItem.id] = { idx, item: uploadItem }
        }
      }

      return sortedItems
    }, [element.items, uploads])

    /**
     * Compute the layout.
     */
    const layout = useMemo(() => {
      return element.layout ?? (items.length <= 4 ? 'grid' : 'carousel')
    }, [element, items])

    // const sidebarWidth = useMemo(() => {
    //   if (typeof window === "undefined") return 0;
    //   const sidebar = document.querySelector('[data-sidebar="sidebar"]') as HTMLElement;
    //   if (!sidebar) return 0;
    //   return sidebar.clientWidth;
    // }, []);

    // const scaleProps = useMemo(() => {
    //   switch (element.scale) {
    //     case 'full':
    //       return {
    //         className: 'relative left-1/2 right-1/2 mx-auto w-screen -translate-x-1/2',
    //         style: {
    //           paddingLeft: sidebarWidth/2 + 10,
    //           paddingRight: sidebarWidth/2
    //         }
    //       };
    //     case 'large':
    //       return {
    //         className: 'relative left-1/2 right-1/2 mx-auto w-screen max-w-5xl -translate-x-1/2',
    //         style: {
    //           paddingLeft: sidebarWidth/2,
    //           paddingRight: sidebarWidth/2
    //         }
    //       };
    //     default:
    //       return {};
    //   }
    // }, [element.scale, sidebarWidth]);

    const setFocus = useCallback(
      (focus: ItemFocus | null) => {
        setFocusBase(
          focus
            ? {
                ...focus,
                ...(layout === 'carousel'
                  ? { mode: 'expand' } // Always expand on focus for carousel.
                  : {}),
              }
            : null,
        )
      },
      [layout],
    )

    const handleImageSelect = useCallback(
      (evt: React.ChangeEvent<HTMLInputElement>) => {
        const { files } = evt.target
        if (!files || files.length === 0) return

        // Append selected files.
        const lastItem = _.last(items)
        let prevId = lastItem?.id ?? null

        // Add files to items if not there yet.
        const newUploads: Upload[] = []

        for (const file of files) {
          const id = nanoid()

          // @todo - check if item was not added already.
          newUploads.push({
            id,
            file,
            prevId,
          })

          prevId = id
        }

        setUploads((prev) => [...prev, ...newUploads])
      },
      [items],
    )

    const handleUploadComplete = useCallback(
      ({ item, upload }: { item: ImageItem; upload: Upload }) => {
        setUploads((prev) => {
          const idx = prev.findIndex((anUpload) => upload.id === anUpload.id)

          if (idx >= 0) {
            const clone = [...prev]
            clone.splice(idx, 1, { ...prev[idx], item })

            return clone
          }

          return prev
        })
      },
      [],
    )

    const handleCaptionChange = useCallback(
      (item: ImageItemWithUpload | null, value: string | null) => {
        const id = item?.upload?.item?.id ?? item?.id

        if (id) {
          // Update caption of the focused item.
          const items = [...(element.items ?? [])]
          const itemIdx = items.findIndex((item) => item.id === id)

          if (itemIdx >= 0) {
            items.splice(itemIdx, 1, { ...items[itemIdx], caption: value })

            Transforms.setNodes(
              editor,
              {
                items,
              } as Partial<Node>,
              { at: ReactEditor.findPath(editor, element) },
            )
          }

          return
        }

        // Otherwise update the global caption.
        Transforms.setNodes(
          editor,
          {
            caption: value,
          } as Partial<Node>,
          { at: ReactEditor.findPath(editor, element) },
        )
      },
      [editor, element],
    )

    const changeLayout = useCallback(
      (layout: ImageBlockElement['layout']) => {
        if (!layout) {
          return
        }

        // Wrap in a single atomic operation
        Transforms.setNodes(
          editor,
          { layout },
          { at: ReactEditor.findPath(editor, element) },
        )
      },
      [editor, element],
    )

    const menuItems = useCallback(
      (baseItems: BlockMenuItem[][]) => [
        ...baseItems,
        ...(items.length > 1
          ? [
              [
                {
                  id: 'layout-switcher',
                  icon:
                    layout === 'grid' ? (
                      <TbCarouselHorizontal className="s-4" />
                    ) : (
                      <LayoutGrid className="s-4" />
                    ),
                  onClick: () =>
                    changeLayout(layout === 'grid' ? 'carousel' : 'grid'),
                  tooltip:
                    layout === 'grid' ? 'Switch to Carousel' : 'Switch to Grid',
                },
              ],
            ]
          : []),
      ],
      [items.length, layout, changeLayout],
    )

    useEffect(() => {
      const itemIds = (element.items ?? [])
        .map((item) => item.id)
        .filter((id) => id !== undefined)

      const [uploadItemIds, uploadItemMap] = uploads.reduce(
        ([ids, obj], upload) => {
          // If the upload is not done yet we need to add a temporary item to ensure
          // the order is garanteed. First let's handle the case where the upload is
          // already done.
          if (upload.item?.id) {
            return [
              [...ids, upload.item?.id],
              {
                ...obj,
                [upload.item.id]: upload.item,
              },
            ]
          }

          return [ids, obj]
        },
        [[], {}] as [string[], { [id: string]: ImageItem }],
      )

      // We only update when all images get successfully uploaded.
      // This is important to ensure the original order of the
      // selected images.
      if (uploadItemIds.length != uploads.length) {
        return
      }

      const diffItemIds = _.difference(uploadItemIds, itemIds)

      if (diffItemIds.length > 0) {
        const newItems = diffItemIds.map((id) => uploadItemMap[id])
        const allItems = [...(element.items ?? []), ...newItems]

        Transforms.setNodes(
          editor,
          {
            layout:
              element.layout === 'grid'
                ? allItems.length > 4
                  ? 'carousel'
                  : 'grid'
                : element.layout === 'carousel'
                  ? 'carousel'
                  : allItems.length <= 4
                    ? 'grid'
                    : 'carousel',
            items: allItems,
          } as Partial<Node>,
          { at: ReactEditor.findPath(editor, element) },
        )
      }
    }, [editor, element, uploads])

    return (
      <ImageBlockElementContext.Provider
        value={{
          blockId: (element as any).id,
          itemsLength: items.length,
          focus,
          setFocus,
        }}
      >
        <Block
          {...attributes}
          isResizable={items.length > 0}
          element={element}
          className={clsx(['mb-6 pb-4'])}
          menuItems={menuItems}
        >
          <div contentEditable={false} className={clsx(['select-none'])}>
            {items.length ? (
              <div
                className={clsx([
                  'relative w-full overflow-hidden', // Added overflow-hidden to clip overlay corners
                  'rounded-lg',
                  isReadMode ? '' : 'cursor-pointer',
                ])}

                // The following onMouseDown affects click behavior inside the
                // images displayed in the grid. Our original idea was to have it
                // in order to correctly focus on the image-block element on clicking
                // but removing it now so we can edit captions when a specific image
                // is displayed in full window mode.
                // onMouseDown={(e) => {
                //   // Ensure the editor is focused before setting selection.
                //   // This is crucial when clicking the image when the editor is unfocused.
                //   ReactEditor.focus(editor);

                //   // Prevent browser default actions (like auto-scroll/focus jump)
                //   // This is critical for void nodes to prevent jumping to the bottom
                //   e.preventDefault();
                //   e.stopPropagation();

                //   // Manually select the node.
                //   // This ensures consistent selection even though we preventDefault above.
                //   const path = ReactEditor.findPath(editor, element);
                //   Transforms.select(editor, path);
                // }}
              >
                {/* Removed SELECTION OVERLAY per user request */}

                {layout === 'grid' && !isMobile ? (
                  <ImageBlockGrid
                    items={items}
                    caption={element.caption}
                    handleUploadComplete={handleUploadComplete}
                    onCaptionChange={handleCaptionChange}
                    onItemsMove={(newItems) => {
                      Transforms.setNodes(
                        editor,
                        { items: newItems },
                        { at: ReactEditor.findPath(editor, element) },
                      )
                    }}
                  />
                ) : (
                  <ImageBlockCarousel
                    items={items}
                    handleUploadComplete={handleUploadComplete}
                    onCaptionChange={handleCaptionChange}
                  />
                )}
              </div>
            ) : (
              <div
                className={`
                flex flex-col items-center justify-center p-8 gap-2
                border-2 border-dashed rounded-lg cursor-pointer transition-colors
                outline-none focus:outline-none
                
                // LIGHT MODE STYLES
                border-gray-300 hover:bg-gray-50 
                text-gray-500 bg-white
                
                // DARK MODE STYLES
                dark:border-gray-700 dark:bg-gray-900 dark:hover:bg-gray-800 
                dark:text-gray-400
              `}
                onClick={() => fileInputRef.current?.click()}
              >
                <div className="bg-gray-100 dark:bg-gray-800 p-3 rounded-full">
                  <UploadCloud className="w-6 h-6 text-gray-500 dark:text-gray-400" />
                </div>
                <div className="text-sm font-medium">Click to upload image</div>

                {/* {element.alt && <span className="text-xs text-gray-400 dark:text-gray-500">Alt: {element.alt}</span>} */}

                {/* Hidden File Input */}
                <input
                  type="file"
                  ref={fileInputRef}
                  className="hidden"
                  accept="image/*"
                  multiple
                  onChange={handleImageSelect}
                />
              </div>
            )}
          </div>

          {/* FIX: Render children (required by Slate for document model) 
            but hide it from the layout flow to prevent browser scroll jumping. 
            Converted inline style to Tailwind classes. */}
          <span className="absolute top-0 left-0 h-0 w-0 opacity-0 overflow-hidden">
            {children}
          </span>
        </Block>
      </ImageBlockElementContext.Provider>
    )
  },
)