65 lines
2.3 KiB
Svelte
65 lines
2.3 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="typescript">
|
|
import WithTheming from "components/WithTheming.svelte";
|
|
import Detachable from "components/Detachable.svelte";
|
|
|
|
import type { ButtonRegistration } from "./buttons";
|
|
import { ButtonPosition } from "./buttons";
|
|
import type { Register } from "./registration";
|
|
|
|
import { getContext, hasContext } from "svelte";
|
|
import { buttonGroupKey } from "./contextKeys";
|
|
|
|
export let id: string | undefined = undefined;
|
|
export let registration: ButtonRegistration | undefined = undefined;
|
|
|
|
let detached: boolean;
|
|
let position_: ButtonPosition;
|
|
let style: string;
|
|
|
|
const radius = "calc(var(--toolbar-size) / 7.5)";
|
|
|
|
$: {
|
|
switch (position_) {
|
|
case ButtonPosition.Standalone:
|
|
style = `--border-left-radius: ${radius}; --border-right-radius: ${radius}; `;
|
|
break;
|
|
case ButtonPosition.Leftmost:
|
|
style = `--border-left-radius: ${radius}; --border-right-radius: 0; `;
|
|
break;
|
|
case ButtonPosition.Center:
|
|
style = "--border-left-radius: 0; --border-right-radius: 0; ";
|
|
break;
|
|
case ButtonPosition.Rightmost:
|
|
style = `--border-left-radius: 0; --border-right-radius: ${radius}; `;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (registration) {
|
|
const { detach, position } = registration;
|
|
detach.subscribe((value: boolean) => (detached = value));
|
|
position.subscribe((value: ButtonPosition) => (position_ = value));
|
|
} else if (hasContext(buttonGroupKey)) {
|
|
const registerComponent = getContext<Register<ButtonRegistration>>(
|
|
buttonGroupKey
|
|
);
|
|
const { detach, position } = registerComponent();
|
|
detach.subscribe((value: boolean) => (detached = value));
|
|
position.subscribe((value: ButtonPosition) => (position_ = value));
|
|
} else {
|
|
detached = false;
|
|
position_ = ButtonPosition.Standalone;
|
|
}
|
|
</script>
|
|
|
|
<!-- div in WithTheming is necessary to preserve item position -->
|
|
<WithTheming {id} {style}>
|
|
<Detachable {detached}>
|
|
<slot />
|
|
</Detachable>
|
|
</WithTheming>
|