62 lines
1.7 KiB
Svelte
62 lines
1.7 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 * as tr from "../lib/ftl";
|
||
|
import Badge from "../components/Badge.svelte";
|
||
|
import Alert from "./Alert.svelte";
|
||
|
import Container from "../components/Container.svelte";
|
||
|
import Row from "../components/Row.svelte";
|
||
|
import Col from "../components/Col.svelte";
|
||
|
import { exclamationIcon } from "./icons";
|
||
|
import { ChangeNotetypeState, MapContext } from "./lib";
|
||
|
import StickyContainer from "../components/StickyContainer.svelte";
|
||
|
|
||
|
export let state: ChangeNotetypeState;
|
||
|
export let ctx: MapContext;
|
||
|
|
||
|
$: info = state.info;
|
||
|
|
||
|
let heading: string =
|
||
|
ctx === MapContext.Field
|
||
|
? tr.changeNotetypeFields()
|
||
|
: tr.changeNotetypeTemplates();
|
||
|
|
||
|
$: unused = $info.unusedItems(ctx);
|
||
|
</script>
|
||
|
|
||
|
<StickyContainer
|
||
|
--sticky-bg={"var(--pane-bg)"}
|
||
|
--sticky-border="var(--border)"
|
||
|
--sticky-borders="0px 0 1px"
|
||
|
>
|
||
|
<h1>
|
||
|
{heading}
|
||
|
{#if unused.length > 0}
|
||
|
<Badge iconSize={80}>
|
||
|
{@html exclamationIcon}
|
||
|
</Badge>
|
||
|
{/if}
|
||
|
</h1>
|
||
|
|
||
|
{#if unused.length > 0}
|
||
|
<Alert {unused} {ctx} />
|
||
|
{/if}
|
||
|
|
||
|
{#if $info.templates}
|
||
|
<Container --gutter-inline="0.5rem" --gutter-block="0.2rem">
|
||
|
<Row --cols={2}>
|
||
|
<Col --col-size={1}><b>{tr.changeNotetypeCurrent()}</b></Col>
|
||
|
<Col --col-size={1}><b>{tr.changeNotetypeNew()}</b></Col>
|
||
|
</Row>
|
||
|
</Container>
|
||
|
{/if}
|
||
|
</StickyContainer>
|
||
|
|
||
|
<style lang="scss">
|
||
|
h1 {
|
||
|
padding-top: 0.5em;
|
||
|
}
|
||
|
</style>
|