65 lines
2.2 KiB
Svelte
65 lines
2.2 KiB
Svelte
|
<!--
|
||
|
Copyright: Ankitects Pty Ltd and contributors
|
||
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||
|
-->
|
||
|
<script lang="ts">
|
||
|
import CustomStyles from "./CustomStyles.svelte";
|
||
|
|
||
|
import { promiseWithResolver } from "../lib/promise";
|
||
|
import type { StyleLinkType, StyleObject } from "./CustomStyles.svelte";
|
||
|
import { getContext } from "svelte";
|
||
|
import type { Readable } from "svelte/store";
|
||
|
import { fontFamilyKey, fontSizeKey, directionKey } from "../lib/context-keys";
|
||
|
|
||
|
const [promise, customStylesResolve] = promiseWithResolver<CustomStyles>();
|
||
|
const [userBaseStyle, userBaseResolve] = promiseWithResolver<StyleObject>();
|
||
|
const [userBaseRule, userBaseRuleResolve] = promiseWithResolver<CSSStyleRule>();
|
||
|
|
||
|
const stylesDidLoad: Promise<unknown> = Promise.all([
|
||
|
promise,
|
||
|
userBaseStyle,
|
||
|
userBaseRule,
|
||
|
]);
|
||
|
|
||
|
userBaseStyle.then((baseStyle: StyleObject) => {
|
||
|
const sheet = baseStyle.element.sheet as CSSStyleSheet;
|
||
|
const baseIndex = sheet.insertRule("anki-editable {}");
|
||
|
userBaseRuleResolve(sheet.cssRules[baseIndex] as CSSStyleRule);
|
||
|
});
|
||
|
|
||
|
export let color: string;
|
||
|
const fontFamily = getContext<Readable<string>>(fontFamilyKey);
|
||
|
const fontSize = getContext<Readable<number>>(fontSizeKey);
|
||
|
const direction = getContext<Readable<"ltr" | "rtl">>(directionKey);
|
||
|
|
||
|
async function setStyling(property: string, value: unknown): Promise<void> {
|
||
|
const rule = await userBaseRule;
|
||
|
rule.style[property] = value;
|
||
|
}
|
||
|
|
||
|
$: setStyling("color", color);
|
||
|
$: setStyling("fontFamily", $fontFamily);
|
||
|
$: setStyling("fontSize", $fontSize + "px");
|
||
|
$: setStyling("direction", $direction);
|
||
|
|
||
|
const styles = [
|
||
|
{
|
||
|
id: "rootStyle",
|
||
|
type: "link" as "link",
|
||
|
href: "./_anki/css/editable-build.css",
|
||
|
} as StyleLinkType,
|
||
|
];
|
||
|
|
||
|
function attachToShadow(element: Element) {
|
||
|
const customStyles = new CustomStyles({
|
||
|
target: element.shadowRoot as any,
|
||
|
props: { styles },
|
||
|
});
|
||
|
|
||
|
customStyles.addStyleTag("userBase").then(userBaseResolve);
|
||
|
customStylesResolve(customStyles);
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<slot {attachToShadow} {promise} {stylesDidLoad} />
|