68092082f2
* Enable access to old notetype name * Set minimum height for ChangeNotetypeDialog * Add bootstrap icons to change-notetype * Move alert up and make it collapsible * Tweak some CSS - Add variables --sticky-bg and --sticky-border to StickyContainer - Tweak base.css * Add translatable string "(Nothing)" * Rework ChangeNotetype screen * Initially load option at newIndex and remaining options on focus Optimization for big notetypes: Should increase efficiency from O(n²) to O(n). Test on notetype with 500 templates shows significant improvement in load time (~10s down to ~1s). * Try to satisfy rust test * Change arrow direction depending on reading direction + add 0.5em top padding to main * Create Alert.svelte * Introduce CSS variable --pane-bg * Revert "Initially load option at newIndex and remaining options on focus" This reverts commit f42beee45c27dba9433d76217fb583b117fb5231. * Final cleanup * Refine padding/gutter
69 lines
1.9 KiB
Svelte
69 lines
1.9 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 { onMount, createEventDispatcher, getContext } from "svelte";
|
|
import { nightModeKey, dropdownKey } from "./context-keys";
|
|
import type { DropdownProps } from "./dropdown";
|
|
|
|
export let id: string | undefined = undefined;
|
|
let className: string = "";
|
|
export { className as class };
|
|
export let theme = "anki";
|
|
|
|
function extendClassName(className: string, theme: string): string {
|
|
return `btn ${theme !== "anki" ? `btn-${theme}` : ""}${className}`;
|
|
}
|
|
|
|
export let tooltip: string | undefined = undefined;
|
|
export let active = false;
|
|
export let disabled = false;
|
|
export let tabbable = false;
|
|
|
|
const nightMode = getContext<boolean>(nightModeKey);
|
|
const dropdownProps = getContext<DropdownProps>(dropdownKey) ?? { dropdown: false };
|
|
|
|
let buttonRef: HTMLButtonElement;
|
|
|
|
const dispatch = createEventDispatcher();
|
|
onMount(() => dispatch("mount", { button: buttonRef }));
|
|
</script>
|
|
|
|
<button
|
|
bind:this={buttonRef}
|
|
{id}
|
|
class="label-button {extendClassName(className, theme)}"
|
|
class:active
|
|
class:dropdown-toggle={dropdownProps.dropdown}
|
|
class:btn-day={theme === "anki" && !nightMode}
|
|
class:btn-night={theme === "anki" && nightMode}
|
|
title={tooltip}
|
|
{...dropdownProps}
|
|
{disabled}
|
|
tabindex={tabbable ? 0 : -1}
|
|
on:click
|
|
on:mousedown|preventDefault
|
|
>
|
|
<slot />
|
|
</button>
|
|
|
|
<style lang="scss">
|
|
@use "sass/button-mixins" as button;
|
|
|
|
button {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
padding: 0 calc(var(--buttons-size) / 3);
|
|
font-size: var(--base-font-size);
|
|
width: auto;
|
|
height: var(--buttons-size);
|
|
|
|
@include button.btn-border-radius;
|
|
}
|
|
|
|
@include button.btn-day;
|
|
@include button.btn-night;
|
|
</style>
|