Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | import React, { FC, useEffect, useState } from "react"; import { useAppSelector } from "store/hooks"; import { fontSelectors } from "store/features/entities/entitiesState"; import { Font } from "shared/lib/entities/entitiesTypes"; import { Option, Select, OptionLabelWithPreview, SingleValueWithPreview, SelectCommonProps, } from "ui/form/Select"; import { FontIcon } from "ui/icons/Icons"; import { SingleValue } from "react-select"; interface FontSelectProps extends SelectCommonProps { name: string; value?: string; onChange?: (newId: string) => void; optional?: boolean; optionalLabel?: string; optionalDefaultFontId?: string; } interface FontOption extends Option { font: Font; } export const FontSelect: FC<FontSelectProps> = ({ value, onChange, optional, optionalLabel, optionalDefaultFontId, ...selectProps }) => { const fonts = useAppSelector((state) => fontSelectors.selectAll(state)); const [options, setOptions] = useState<FontOption[]>([]); const [currentFont, setCurrentFont] = useState<Font>(); const [currentValue, setCurrentValue] = useState<FontOption>(); useEffect(() => { setOptions( ([] as FontOption[]).concat( optional ? ([ { value: "", label: optionalLabel || "None", font: fonts.find((p) => p.id === optionalDefaultFontId), }, ] as FontOption[]) : ([] as FontOption[]), fonts.map((font) => ({ value: font.id, label: font.name, font, })) ) ); }, [fonts, optional, optionalDefaultFontId, optionalLabel]); useEffect(() => { setCurrentFont(fonts.find((v) => v.id === value)); }, [fonts, value]); useEffect(() => { if (currentFont) { setCurrentValue({ value: currentFont.id, label: `${currentFont.name}`, font: currentFont, }); } else if (optional) { const optionalFont = fonts.find((p) => p.id === optionalDefaultFontId); setCurrentValue({ value: "", label: optionalLabel || "None", font: optionalFont as Font, }); } else { const firstFont = fonts[0]; Iif (firstFont) { setCurrentValue({ value: firstFont.id, label: `${firstFont.name}`, font: firstFont, }); } } }, [currentFont, fonts, optional, optionalDefaultFontId, optionalLabel]); const onSelectChange = (newValue: SingleValue<Option>) => { Iif (newValue) { onChange?.(newValue.value); } }; return ( <Select value={currentValue} options={options} onChange={onSelectChange} formatOptionLabel={(option: FontOption) => { return ( <OptionLabelWithPreview preview={<FontIcon />}> {option.label} </OptionLabelWithPreview> ); }} components={{ SingleValue: () => ( <SingleValueWithPreview preview={<FontIcon />}> {currentValue?.label} </SingleValueWithPreview> ), }} {...selectProps} /> ); }; |