30bbbaf00b
* Make eslint sort our imports * fix missing deps in eslint rule (dae) Caught on Linux due to the stricter sandboxing * Remove exports-last eslint rule (for now?) * Adjust browserslist settings - We use ResizeObserver which is not supported in browsers like KaiOS, Baidu or Android UC * Raise minimum iOS version 13.4 - It's the first version that supports ResizeObserver * Apply new eslint rules to sort imports
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 { getContext } from "svelte";
|
|
import type { Readable } from "svelte/store";
|
|
|
|
import { directionKey, fontFamilyKey, fontSizeKey } from "../../lib/context-keys";
|
|
import { promiseWithResolver } from "../../lib/promise";
|
|
import type { StyleLinkType, StyleObject } from "./CustomStyles.svelte";
|
|
import CustomStyles from "./CustomStyles.svelte";
|
|
|
|
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.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} />
|