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 122 123 124 125 126 127 128 129 130 | import React, { memo, useMemo } from "react"; import uniq from "lodash/uniq"; import { useAppSelectorPick, useAppSelectorPickArray } from "store/hooks"; import { backgroundSelectors } from "store/features/entities/entitiesSelectors"; import { OptGroup, Option, OptionLabelWithPreview, SingleValueWithPreview, Select, SelectCommonProps, FormatFolderLabel, } from "ui/form/Select"; import styled from "styled-components"; import { assetURLStyleProp } from "shared/lib/helpers/assets"; import { isMonoOverride } from "shared/lib/assets/backgrounds"; import { SingleValue } from "react-select"; interface BackgroundSelectProps extends SelectCommonProps { name: string; value?: string; onChange?: (newId: string) => void; } const Thumbnail = styled.div` width: 20px; height: 20px; background-size: contain; background-repeat: no-repeat; background-position: center; `; const BackgroundSelectComponent = ({ value, onChange, ...selectProps }: BackgroundSelectProps) => { const backgrounds = useAppSelectorPickArray(backgroundSelectors.selectAll, [ "id", "name", "filename", "plugin", ] as const); const background = useAppSelectorPick( (state) => backgroundSelectors.selectById(state, value || ""), ["id", "filename", "plugin"] as const, ); const backgroundsLookup = useMemo( () => Object.fromEntries(backgrounds.map((item) => [item.id, item])), [backgrounds], ); const options = useMemo(() => { const plugins = uniq(backgrounds.map((s) => s.plugin || "")).sort(); return plugins.reduce((memo, plugin) => { memo.push({ label: plugin, options: backgrounds .filter( (s) => !isMonoOverride(s.filename) && (plugin ? s.plugin === plugin : !s.plugin), ) .map((background) => { return { label: background.name, value: background.id, }; }), }); return memo; }, [] as OptGroup[]); }, [backgrounds]); const currentValue = useMemo(() => { const currentBackground = backgrounds.find((item) => item.id === value); return currentBackground ? { value: currentBackground.id, label: currentBackground.name } : undefined; }, [backgrounds, value]); const onSelectChange = (newValue: SingleValue<Option>) => { Iif (newValue) { onChange?.(newValue.value); } }; return ( <Select value={currentValue} options={options} onChange={onSelectChange} formatOptionLabel={(option: Option) => { const background = backgroundsLookup[option.value]; return ( <OptionLabelWithPreview preview={ <Thumbnail style={{ backgroundImage: background && assetURLStyleProp("backgrounds", background), }} /> } > <FormatFolderLabel label={option.label} /> </OptionLabelWithPreview> ); }} components={{ SingleValue: () => ( <SingleValueWithPreview preview={ <Thumbnail style={{ backgroundImage: background && assetURLStyleProp("backgrounds", background), }} /> } > <FormatFolderLabel label={currentValue?.label} /> </SingleValueWithPreview> ), }} {...selectProps} /> ); }; export const BackgroundSelect = memo(BackgroundSelectComponent); |