summaryrefslogtreecommitdiffstats
path: root/apps/web-shared/src/components/blowout-toolbelt.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web-shared/src/components/blowout-toolbelt.svelte')
-rw-r--r--apps/web-shared/src/components/blowout-toolbelt.svelte60
1 files changed, 60 insertions, 0 deletions
diff --git a/apps/web-shared/src/components/blowout-toolbelt.svelte b/apps/web-shared/src/components/blowout-toolbelt.svelte
new file mode 100644
index 0000000..69e9902
--- /dev/null
+++ b/apps/web-shared/src/components/blowout-toolbelt.svelte
@@ -0,0 +1,60 @@
+<script>
+ import {createEventDispatcher} from "svelte";
+ import ThemeSwitcher from "./theme-switcher.svelte";
+ import ThemeSwitcherIcon from "./theme-switcher-icon.svelte";
+ import LocaleSwitcher from "./locale-switcher.svelte";
+ import LocaleSwitcherIcon from "./locale-switcher-icon.svelte";
+ import {ChevronsRightIcon, ChevronsLeftIcon} from "svelte-feather-icons";
+
+ const dispatch = createEventDispatcher();
+
+ function locale_change(event) {
+ dispatch("change", {name: "locale", value: event.detail})
+ }
+
+ let expanded = false;
+ const localeSwitcher = {
+ show: false,
+ selection: "preffered"
+ };
+
+ const themeSwitcher = {
+ show: false,
+ selection: "system"
+ };
+</script>
+<style>
+ .blowout {
+ right: -80px;
+ }
+
+ .expanded {
+ right: 0 !important;
+ }
+</style>
+<aside class="blowout position-fixed bg-light inner-glow shadow-xs padding-xxs bottom-50% right-0 z-index-2 {expanded ? 'expanded' : ''}">
+ <LocaleSwitcher bind:show="{localeSwitcher.show}"
+ glow="{false}"
+ on:change={locale_change}
+ bind:selection="{localeSwitcher.selection}"/>
+ <ThemeSwitcher bind:show="{themeSwitcher.show}"
+ glow="{false}"
+ bind:selection="{themeSwitcher.selection}"/>
+ <div class="flex flex-row gap-sm justify-end">
+ {#if !expanded}
+ <div class="flex ld-switch-btn"
+ on:click={() => expanded = true}>
+ <ChevronsLeftIcon/>
+ </div>
+ {:else}
+ <div class="flex ld-switch-btn"
+ on:click={() => expanded = false}>
+ <ChevronsRightIcon/>
+ </div>
+ {/if}
+ <LocaleSwitcherIcon bind:show="{localeSwitcher.show}"
+ bind:selection="{localeSwitcher.selection}"/>
+ <ThemeSwitcherIcon bind:show="{themeSwitcher.show}"
+ bind:selection="{themeSwitcher.selection}"/>
+ </div>
+</aside>