summaryrefslogtreecommitdiffstats
path: root/apps/web-shared/src/components/blowout-toolbelt.svelte
blob: 2927d705fb7a81e190daf81b3734581c8a9d4e8a (plain) (blame)
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
<script>
	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";

	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-popover {expanded ? 'expanded' : ''}">
    <LocaleSwitcher bind:show="{localeSwitcher.show}"
                    glow="{false}"
                    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>