e63b4b9927
Prettier by default tries to preserve whitespace around inline tags, which can prevent problems such as a space before the period in '<a>text</a>.': https://prettier.io/blog/2018/11/07/1.15.0.html#whitespace-sensitive-formatting Unfortunately only standard HTML block elements are excluded from this behaviour, so all of our Svelte components are treated the same way, even if they are block-based, or used in a way where the extra whitespace doesn't matter. This makes the code somewhat harder to read. Changing this option does carry the risk that rogue spaces will creep into our UI in the future as code is formatted, but as there don't appear to be any such issues with this initial reformat, I think the improved readability may justify the relatively small risk.
70 lines
1.8 KiB
Svelte
70 lines
1.8 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 "@tslib/ftl";
|
|
|
|
import IconButton from "../../components/IconButton.svelte";
|
|
import { execCommand } from "../../domlib";
|
|
import { mdiFormatBold, mdiFormatItalic, mdiFormatUnderline } from "../icons";
|
|
|
|
export let iconSize;
|
|
|
|
const textFormatting = [
|
|
{
|
|
name: "b",
|
|
title: tr.editingBoldText(),
|
|
icon: mdiFormatBold,
|
|
action: "bold",
|
|
},
|
|
{
|
|
name: "i",
|
|
title: tr.editingItalicText(),
|
|
icon: mdiFormatItalic,
|
|
action: "italic",
|
|
},
|
|
{
|
|
name: "u",
|
|
title: tr.editingUnderlineText(),
|
|
icon: mdiFormatUnderline,
|
|
action: "underline",
|
|
},
|
|
];
|
|
|
|
const textFormat = (tool: { name; title; icon; action }) => {
|
|
execCommand(tool.action, false, tool.name);
|
|
};
|
|
</script>
|
|
|
|
{#each textFormatting as tool}
|
|
<IconButton
|
|
id={"note-tool-" + tool.name}
|
|
class="note-tool-icon-button {tool.name === 'b' ? 'left-border-radius' : ''}"
|
|
{iconSize}
|
|
tooltip={tool.title}
|
|
on:click={() => {
|
|
// setActiveTool(tool);
|
|
textFormat(tool);
|
|
}}
|
|
>
|
|
{@html tool.icon}
|
|
</IconButton>
|
|
{/each}
|
|
|
|
<style lang="scss">
|
|
:global(.note-tool-icon-button) {
|
|
padding: 4px !important;
|
|
border-radius: 2px !important;
|
|
padding: 0px 6px 0px 6px !important;
|
|
}
|
|
|
|
:global(.left-border-radius) {
|
|
border-radius: 5px 0 0 5px !important;
|
|
}
|
|
|
|
:global(.right-border-radius) {
|
|
border-radius: 0 5px 5px 0 !important;
|
|
}
|
|
</style>
|