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 131 132 133 134 135 136 137 | import React, { FC, useState, useEffect } from "react"; import uniq from "lodash/uniq"; import { useAppSelector } from "store/hooks"; import { backgroundSelectors } from "store/features/entities/entitiesState"; import { OptGroup, Option, OptionLabelWithPreview, SingleValueWithPreview, Select, SelectCommonProps, FormatFolderLabel, } from "ui/form/Select"; import { Background } from "shared/lib/entities/entitiesTypes"; 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; `; export const BackgroundSelect: FC<BackgroundSelectProps> = ({ value, onChange, ...selectProps }) => { const backgrounds = useAppSelector((state) => backgroundSelectors.selectAll(state) ); const backgroundsLookup = useAppSelector((state) => backgroundSelectors.selectEntities(state) ); const background = useAppSelector((state) => backgroundSelectors.selectById(state, value || "") ); const [options, setOptions] = useState<OptGroup[]>([]); const [currentBackground, setCurrentBackground] = useState<Background>(); const [currentValue, setCurrentValue] = useState<Option>(); useEffect(() => { const plugins = uniq(backgrounds.map((s) => s.plugin || "")).sort(); const options = 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[]); setOptions(options); }, [backgrounds]); useEffect(() => { setCurrentBackground(backgrounds.find((v) => v.id === value)); }, [backgrounds, value]); useEffect(() => { Iif (currentBackground) { setCurrentValue({ value: currentBackground.id, label: `${currentBackground.name}`, }); } }, [currentBackground]); 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} /> ); }; |