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
39 lines
1.1 KiB
Svelte
39 lines
1.1 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 Col from "../components/Col.svelte";
|
|
import Row from "../components/Row.svelte";
|
|
import type { ChangeNotetypeState, MapContext } from "./lib";
|
|
|
|
export let state: ChangeNotetypeState;
|
|
export let ctx: MapContext;
|
|
export let newIndex: number;
|
|
|
|
const info = state.info;
|
|
|
|
function onChange(evt: Event) {
|
|
const oldIdx = parseInt((evt.target as HTMLSelectElement).value, 10);
|
|
state.setOldIndex(ctx, newIndex, oldIdx);
|
|
}
|
|
</script>
|
|
|
|
<Row --cols={2}>
|
|
<Col --col-size={1}>
|
|
<!-- svelte-ignore a11y-no-onchange -->
|
|
<select
|
|
value={$info.getOldIndex(ctx, newIndex)}
|
|
class="form-select"
|
|
on:change={onChange}
|
|
>
|
|
{#each $info.getOldNamesIncludingNothing(ctx) as name, idx}
|
|
<option value={idx}>{name}</option>
|
|
{/each}
|
|
</select>
|
|
</Col>
|
|
<Col --col-size={1}>
|
|
{$info.getNewName(ctx, newIndex)}
|
|
</Col>
|
|
</Row>
|