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 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 | import React, { useEffect, useMemo, useState } from "react"; import Path from "path"; import ThemeProvider from "ui/theme/ThemeProvider"; import GlobalStyle from "ui/globalStyle"; import { PreferencesWrapper } from "ui/preferences/Preferences"; import { FormField, FormRow } from "ui/form/layout/FormLayout"; import { TextField } from "ui/form/TextField"; import { Button } from "ui/buttons/Button"; import { DotsIcon } from "ui/icons/Icons"; import { FixedSpacer, FlexGrow } from "ui/spacing/Spacing"; import { AppSelect } from "ui/form/AppSelect"; import { OptionLabelWithInfo, Select } from "ui/form/Select"; import API from "renderer/lib/api"; import l10n from "shared/lib/lang/l10n"; interface Options { value: number; label: string; } // ZoomLevel scale := 1.2 ^ level const zoomOptions: Options[] = [ { value: -3.80178, label: `50%` }, { value: -3, label: `58%` }, { value: -2, label: `69%` }, { value: -1, label: `83%` }, { value: 0, label: `100%` }, { value: 1, label: `120%` }, { value: 2.2239, label: `150%` }, { value: 3, label: `172%` }, { value: 3.80178, label: `200%` }, ]; const Preferences = () => { const pathError = ""; const [tmpPath, setTmpPath] = useState<string>(""); const [imageEditorPath, setImageEditorPath] = useState<string>(""); const [musicEditorPath, setMusicEditorPath] = useState<string>(""); const [zoomLevel, setZoomLevel] = useState<number>(0); const [trackerKeyBindings, setTrackerKeyBindings] = useState<number>(0); const currentZoomValue = zoomOptions.find((o) => o.value === zoomLevel); useEffect(() => { async function fetchData() { setTmpPath(await API.paths.getTmpPath()); setImageEditorPath(await API.settings.getString("imageEditorPath", "")); setMusicEditorPath(await API.settings.getString("musicEditorPath", "")); setZoomLevel(await API.settings.app.getUIScale()); setTrackerKeyBindings(await API.settings.app.getTrackerKeyBindings()); } fetchData(); }, []); const trackerKeyBindingsOptions: Options[] = useMemo( () => [ { value: 0, label: l10n("FIELD_UI_LINEAR") }, { value: 1, label: l10n("FIELD_UI_PIANO") }, ], [] ); const trackerKeyBindingsOptionsInfo: string[] = useMemo( () => [l10n("FIELD_UI_LINEAR_INFO"), l10n("FIELD_UI_PIANO_INFO")], [] ); const currentTrackerKeyBindings = trackerKeyBindingsOptions.find( (o) => o.value === trackerKeyBindings ); const onChangeTmpPath = (e: React.ChangeEvent<HTMLInputElement>) => { const newPath = e.currentTarget.value; setTmpPath(newPath); API.settings.set("tmpDir", newPath); }; const onChangeImageEditorPath = (path: string) => { setImageEditorPath(path); API.settings.set("imageEditorPath", path); }; const onChangeMusicEditorPath = (path: string) => { setMusicEditorPath(path); API.settings.set("musicEditorPath", path); }; const onChangeZoomLevel = (zoomLevel: number) => { setZoomLevel(zoomLevel); API.settings.app.setUIScale(zoomLevel); }; const onChangeTrackerKeyBindings = (trackerKeyBindings: number) => { setTrackerKeyBindings(trackerKeyBindings); API.settings.app.setTrackerKeyBindings(trackerKeyBindings); }; const onSelectTmpFolder = async () => { const path = await API.dialog.chooseDirectory(); Iif (path) { const newPath = Path.normalize(`${path}/`); setTmpPath(newPath); API.settings.set("tmpDir", newPath); } }; const onRestoreDefaultTmpPath = async () => { API.settings.delete("tmpDir"); setTmpPath(await API.paths.getTmpPath()); }; return ( <ThemeProvider> <GlobalStyle /> <PreferencesWrapper> <FormRow> <TextField name="path" label={l10n("FIELD_TMP_DIRECTORY")} errorLabel={pathError} value={tmpPath} onChange={onChangeTmpPath} additionalRight={ <Button onClick={onSelectTmpFolder} type="button"> <DotsIcon /> </Button> } info={l10n("FIELD_TMP_DIRECTORY_INFO")} /> </FormRow> <FormRow> <Button onClick={onRestoreDefaultTmpPath}> {l10n("FIELD_RESTORE_DEFAULT")} </Button> </FormRow> <FlexGrow /> <FormRow> <FormField name="musicEditorPath" label={l10n("FIELD_DEFAULT_IMAGE_EDITOR")} > <AppSelect value={imageEditorPath} onChange={onChangeImageEditorPath} /> </FormField> <FormField name="musicEditorPath" label={l10n("FIELD_DEFAULT_MUSIC_EDITOR")} > <AppSelect value={musicEditorPath} onChange={onChangeMusicEditorPath} /> </FormField> </FormRow> <FixedSpacer height={10} /> <FormRow> <FormField name="zoomLevel" label={l10n("FIELD_UI_ELEMENTS_SCALING")}> <Select value={currentZoomValue} options={zoomOptions} onChange={(newValue) => { Iif (newValue) { onChangeZoomLevel(newValue.value); } }} /> </FormField> </FormRow> <FixedSpacer height={10} /> <FormRow> <FormField name="trackerKeyBindings" label={l10n("FIELD_UI_TRACKER_KEYBINDINGS")} > <Select value={currentTrackerKeyBindings} options={trackerKeyBindingsOptions} onChange={(newValue) => { Iif (newValue) { onChangeTrackerKeyBindings(newValue.value); } }} formatOptionLabel={( option: Options, { context }: { context: "menu" | "value" } ) => { return ( <OptionLabelWithInfo info={ context === "menu" ? trackerKeyBindingsOptionsInfo[option.value] : "" } > {option.label} {context === "value" ? ` (${trackerKeyBindingsOptionsInfo[option.value]})` : ""} </OptionLabelWithInfo> ); }} /> </FormField> </FormRow> </PreferencesWrapper> </ThemeProvider> ); }; export default Preferences; |