mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-26 09:33:49 +01:00
theme editor now allows import/export
This commit is contained in:
parent
65cb519801
commit
2d45784102
@ -15,30 +15,15 @@ interface IProps {
|
|||||||
onClose: () => void;
|
onClose: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
function ColorEditor({ name }: { name: string }): React.ReactElement {
|
interface IColorEditorProps {
|
||||||
const [color, setColor] = useState(Settings.theme[name]);
|
name: string;
|
||||||
if (color === undefined) return <></>;
|
color: string | undefined;
|
||||||
const valid = color.match(/#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})/g);
|
onColorChange: (name: string, value: string) => void;
|
||||||
|
defaultColor: string;
|
||||||
|
}
|
||||||
|
|
||||||
function set(): void {
|
function ColorEditor({ name, onColorChange, color, defaultColor }: IColorEditorProps): React.ReactElement {
|
||||||
if (!valid) return;
|
if (color === undefined) throw new Error("should not happen");
|
||||||
Settings.theme[name] = color;
|
|
||||||
ThemeEvents.emit();
|
|
||||||
}
|
|
||||||
|
|
||||||
function revert(): void {
|
|
||||||
Settings.theme[name] = defaultSettings.theme[name];
|
|
||||||
setColor(defaultSettings.theme[name]);
|
|
||||||
ThemeEvents.emit();
|
|
||||||
}
|
|
||||||
|
|
||||||
function onChange(event: React.ChangeEvent<HTMLInputElement>): void {
|
|
||||||
setColor(event.target.value);
|
|
||||||
}
|
|
||||||
|
|
||||||
function onColorPickerChange(newValue: Color): void {
|
|
||||||
setColor("#" + newValue.hex.toLowerCase());
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@ -46,20 +31,20 @@ function ColorEditor({ name }: { name: string }): React.ReactElement {
|
|||||||
sx={{ mx: 1 }}
|
sx={{ mx: 1 }}
|
||||||
label={name}
|
label={name}
|
||||||
value={color}
|
value={color}
|
||||||
onChange={onChange}
|
|
||||||
variant="standard"
|
variant="standard"
|
||||||
InputProps={{
|
InputProps={{
|
||||||
startAdornment: (
|
startAdornment: (
|
||||||
<>
|
<>
|
||||||
<ColorPicker hideTextfield value={color} onChange={onColorPickerChange} />
|
<ColorPicker
|
||||||
|
hideTextfield
|
||||||
|
value={color}
|
||||||
|
onChange={(newColor: Color) => onColorChange(name, "#" + newColor.hex)}
|
||||||
|
/>
|
||||||
</>
|
</>
|
||||||
),
|
),
|
||||||
endAdornment: (
|
endAdornment: (
|
||||||
<>
|
<>
|
||||||
<IconButton onClick={set} disabled={!valid}>
|
<IconButton onClick={() => onColorChange(name, defaultColor)}>
|
||||||
<DoneIcon color={valid ? "primary" : "error"} />
|
|
||||||
</IconButton>
|
|
||||||
<IconButton onClick={revert}>
|
|
||||||
<ReplyIcon color="primary" />
|
<ReplyIcon color="primary" />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</>
|
</>
|
||||||
@ -71,6 +56,34 @@ function ColorEditor({ name }: { name: string }): React.ReactElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function ThemeEditorModal(props: IProps): React.ReactElement {
|
export function ThemeEditorModal(props: IProps): React.ReactElement {
|
||||||
|
const [customTheme, setCustomTheme] = useState<{ [key: string]: string | undefined }>({
|
||||||
|
...Settings.theme,
|
||||||
|
});
|
||||||
|
|
||||||
|
function onThemeChange(event: React.ChangeEvent<HTMLInputElement>): void {
|
||||||
|
try {
|
||||||
|
const importedTheme = JSON.parse(event.target.value);
|
||||||
|
if (typeof importedTheme !== "object") return;
|
||||||
|
setCustomTheme(importedTheme);
|
||||||
|
for (const key of Object.keys(importedTheme)) {
|
||||||
|
Settings.theme[key] = importedTheme[key];
|
||||||
|
}
|
||||||
|
ThemeEvents.emit();
|
||||||
|
} catch (err) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function onColorChange(name: string, value: string): void {
|
||||||
|
setCustomTheme((old: any) => {
|
||||||
|
old[name] = value;
|
||||||
|
return old;
|
||||||
|
});
|
||||||
|
|
||||||
|
Settings.theme[name] = value;
|
||||||
|
ThemeEvents.emit();
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal open={props.open} onClose={props.onClose}>
|
<Modal open={props.open} onClose={props.onClose}>
|
||||||
<Button color="primary">primary</Button>
|
<Button color="primary">primary</Button>
|
||||||
@ -84,44 +97,177 @@ export function ThemeEditorModal(props: IProps): React.ReactElement {
|
|||||||
<Typography color="info">info</Typography>
|
<Typography color="info">info</Typography>
|
||||||
<Typography color="error">error</Typography>
|
<Typography color="error">error</Typography>
|
||||||
<br />
|
<br />
|
||||||
<ColorEditor name="primarylight" />
|
<ColorEditor
|
||||||
<ColorEditor name="primary" />
|
name="primarylight"
|
||||||
<ColorEditor name="primarydark" />
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["primarylight"]}
|
||||||
|
defaultColor={defaultSettings.theme["primarylight"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="primary"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["primary"]}
|
||||||
|
defaultColor={defaultSettings.theme["primary"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="primarydark"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["primarydark"]}
|
||||||
|
defaultColor={defaultSettings.theme["primarydark"]}
|
||||||
|
/>
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
<ColorEditor name="errorlight" />
|
<ColorEditor
|
||||||
<ColorEditor name="error" />
|
name="errorlight"
|
||||||
<ColorEditor name="errordark" />
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["errorlight"]}
|
||||||
|
defaultColor={defaultSettings.theme["errorlight"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="error"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["error"]}
|
||||||
|
defaultColor={defaultSettings.theme["error"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="errordark"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["errordark"]}
|
||||||
|
defaultColor={defaultSettings.theme["errordark"]}
|
||||||
|
/>
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
<ColorEditor name="secondarylight" />
|
<ColorEditor
|
||||||
<ColorEditor name="secondary" />
|
name="secondarylight"
|
||||||
<ColorEditor name="secondarydark" />
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["secondarylight"]}
|
||||||
|
defaultColor={defaultSettings.theme["secondarylight"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="secondary"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["secondary"]}
|
||||||
|
defaultColor={defaultSettings.theme["secondary"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="secondarydark"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["secondarydark"]}
|
||||||
|
defaultColor={defaultSettings.theme["secondarydark"]}
|
||||||
|
/>
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
<ColorEditor name="warninglight" />
|
<ColorEditor
|
||||||
<ColorEditor name="warning" />
|
name="warninglight"
|
||||||
<ColorEditor name="warningdark" />
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["warninglight"]}
|
||||||
|
defaultColor={defaultSettings.theme["warninglight"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="warning"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["warning"]}
|
||||||
|
defaultColor={defaultSettings.theme["warning"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="warningdark"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["warningdark"]}
|
||||||
|
defaultColor={defaultSettings.theme["warningdark"]}
|
||||||
|
/>
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
<ColorEditor name="infolight" />
|
<ColorEditor
|
||||||
<ColorEditor name="info" />
|
name="infolight"
|
||||||
<ColorEditor name="infodark" />
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["infolight"]}
|
||||||
|
defaultColor={defaultSettings.theme["infolight"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="info"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["info"]}
|
||||||
|
defaultColor={defaultSettings.theme["info"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="infodark"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["infodark"]}
|
||||||
|
defaultColor={defaultSettings.theme["infodark"]}
|
||||||
|
/>
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
<ColorEditor name="welllight" />
|
<ColorEditor
|
||||||
<ColorEditor name="well" />
|
name="welllight"
|
||||||
<ColorEditor name="white" />
|
onColorChange={onColorChange}
|
||||||
<ColorEditor name="black" />
|
color={customTheme["welllight"]}
|
||||||
|
defaultColor={defaultSettings.theme["welllight"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="well"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["well"]}
|
||||||
|
defaultColor={defaultSettings.theme["well"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="white"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["white"]}
|
||||||
|
defaultColor={defaultSettings.theme["white"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="black"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["black"]}
|
||||||
|
defaultColor={defaultSettings.theme["black"]}
|
||||||
|
/>
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
<ColorEditor name="hp" />
|
<ColorEditor
|
||||||
<ColorEditor name="money" />
|
name="hp"
|
||||||
<ColorEditor name="hack" />
|
onColorChange={onColorChange}
|
||||||
<ColorEditor name="combat" />
|
color={customTheme["hp"]}
|
||||||
<ColorEditor name="cha" />
|
defaultColor={defaultSettings.theme["hp"]}
|
||||||
<ColorEditor name="int" />
|
/>
|
||||||
<ColorEditor name="rep" />
|
<ColorEditor
|
||||||
|
name="money"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["money"]}
|
||||||
|
defaultColor={defaultSettings.theme["money"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="hack"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["hack"]}
|
||||||
|
defaultColor={defaultSettings.theme["hack"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="combat"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["combat"]}
|
||||||
|
defaultColor={defaultSettings.theme["combat"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="cha"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["cha"]}
|
||||||
|
defaultColor={defaultSettings.theme["cha"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="int"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["int"]}
|
||||||
|
defaultColor={defaultSettings.theme["int"]}
|
||||||
|
/>
|
||||||
|
<ColorEditor
|
||||||
|
name="rep"
|
||||||
|
onColorChange={onColorChange}
|
||||||
|
color={customTheme["rep"]}
|
||||||
|
defaultColor={defaultSettings.theme["rep"]}
|
||||||
|
/>
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
<TextField label={"import / export theme"} value={JSON.stringify(customTheme)} onChange={onThemeChange} />
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user