π File detail
components/CustomSelect/option-map.ts
π§© .tsπ 51 linesπΎ 1,189 bytesπ text
β Back to All Filesπ― Use case
This file lives under βcomponents/β, which covers shared React UI pieces. On the API surface it exposes OptionMap β mainly functions, hooks, or classes. Dependencies touch React UI. It composes internal code from select (relative imports).
Generated from folder role, exports, dependency roots, and inline comments β not hand-reviewed for every path.
π§ Inline summary
import type { ReactNode } from 'react' import type { OptionWithDescription } from './select.js' type OptionMapItem<T> = { label: ReactNode
π€ Exports (heuristic)
OptionMapdefault
π External import roots
Package roots from from "β¦" (relative paths omitted).
react
π₯οΈ Source preview
import type { ReactNode } from 'react'
import type { OptionWithDescription } from './select.js'
type OptionMapItem<T> = {
label: ReactNode
value: T
description?: string
previous: OptionMapItem<T> | undefined
next: OptionMapItem<T> | undefined
index: number
}
export default class OptionMap<T> extends Map<T, OptionMapItem<T>> {
readonly first: OptionMapItem<T> | undefined
readonly last: OptionMapItem<T> | undefined
constructor(options: OptionWithDescription<T>[]) {
const items: Array<[T, OptionMapItem<T>]> = []
let firstItem: OptionMapItem<T> | undefined
let lastItem: OptionMapItem<T> | undefined
let previous: OptionMapItem<T> | undefined
let index = 0
for (const option of options) {
const item = {
label: option.label,
value: option.value,
description: option.description,
previous,
next: undefined,
index,
}
if (previous) {
previous.next = item
}
firstItem ||= item
lastItem = item
items.push([option.value, item])
index++
previous = item
}
super(items)
this.first = firstItem
this.last = lastItem
}
}