1
0
Fork 0
mirror of synced 2024-10-02 01:56:57 +13:00

Add button to reset theme to default and fix determination of theme

This commit is contained in:
Andrew Kingston 2021-09-06 16:51:40 +01:00
parent 363998a2af
commit 7b919cb2e7
3 changed files with 28 additions and 17 deletions

View file

@ -24,7 +24,6 @@
<div> <div>
<Select <Select
autoWidth
value={$store.theme} value={$store.theme}
options={themeOptions} options={themeOptions}
placeholder={null} placeholder={null}

View file

@ -8,6 +8,7 @@
ColorPicker, ColorPicker,
Label, Label,
Select, Select,
Button,
} from "@budibase/bbui" } from "@budibase/bbui"
import { store } from "builderStore" import { store } from "builderStore"
import AppThemeSelect from "./AppThemeSelect.svelte" import AppThemeSelect from "./AppThemeSelect.svelte"
@ -49,6 +50,10 @@
}) })
} }
} }
const resetTheme = () => {
store.actions.customTheme.save(null)
}
</script> </script>
<div class="container"> <div class="container">
@ -68,13 +73,15 @@
</div> </div>
<div class="setting"> <div class="setting">
<Label size="L">Button roundness</Label> <Label size="L">Button roundness</Label>
<Select <div class="select-wrapper">
autoWidth <Select
value={$store.customTheme?.buttonBorderRadius || placeholder={null}
defaultTheme.buttonBorderRadius} value={$store.customTheme?.buttonBorderRadius ||
on:change={updateProperty("buttonBorderRadius")} defaultTheme.buttonBorderRadius}
options={buttonBorderRadiusOptions} on:change={updateProperty("buttonBorderRadius")}
/> options={buttonBorderRadiusOptions}
/>
</div>
</div> </div>
<div class="setting"> <div class="setting">
<Label size="L">Primary color</Label> <Label size="L">Primary color</Label>
@ -111,6 +118,9 @@
/> />
</div> </div>
</Layout> </Layout>
<div slot="footer">
<Button secondary quiet on:click={resetTheme}>Reset</Button>
</div>
</ModalContent> </ModalContent>
</Modal> </Modal>
@ -123,11 +133,8 @@
flex-direction: row; flex-direction: row;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
padding-bottom: var(--spectrum-global-dimension-static-size-200);
border-bottom: var(--border-light);
} }
.setting:last-child { .select-wrapper {
padding-bottom: 0; width: 100px;
border-bottom: none;
} }
</style> </style>

View file

@ -18,12 +18,17 @@ const createThemeStore = () => {
const store = derived( const store = derived(
[builderStore, appStore], [builderStore, appStore],
([$builderStore, $appStore]) => { ([$builderStore, $appStore]) => {
const theme = let theme = $appStore.application?.theme
$builderStore.theme || $appStore.application?.theme || defaultTheme let customTheme = $appStore.application?.customTheme
if ($builderStore.inBuilder) {
theme = $builderStore.theme
customTheme = $builderStore.customTheme
}
// Ensure theme is set
theme = theme || defaultTheme
// Delete and nullish keys from the custom theme // Delete and nullish keys from the custom theme
let customTheme =
$builderStore.customTheme || $appStore.application?.customTheme
if (customTheme) { if (customTheme) {
Object.entries(customTheme).forEach(([key, value]) => { Object.entries(customTheme).forEach(([key, value]) => {
if (value == null || value === "") { if (value == null || value === "") {