mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-07-24 21:42:58 +00:00
138 lines
3.7 KiB
Svelte
138 lines
3.7 KiB
Svelte
<script lang="ts">
|
|
import { renderMessageMarkdown } from "./renderMessageMarkdown";
|
|
|
|
type Props = {
|
|
title: string;
|
|
message: string;
|
|
buttons: string[];
|
|
actionLayout?: ConfirmActionLayout;
|
|
commit: (button: string) => void;
|
|
};
|
|
type ConfirmActionLayout = "auto" | "vertical";
|
|
let { title, message, buttons, actionLayout, commit }: Props = $props();
|
|
const renderedMessage = $derived(renderMessageMarkdown(message));
|
|
|
|
function handleEsc(event: KeyboardEvent) {
|
|
if (event.key === "Escape") {
|
|
commit("");
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<popup>
|
|
<header>{title}</header>
|
|
<article><div class="msg">{@html renderedMessage}</div></article>
|
|
<div class:vertical={actionLayout === "vertical"} class="buttons">
|
|
{#each buttons as button}
|
|
<button onclick={() => commit(button)}>{button}</button>
|
|
{/each}
|
|
</div>
|
|
</popup>
|
|
<div class="background" onclick={() => commit("")} onkeydown={handleEsc} role="none"></div>
|
|
|
|
<style>
|
|
popup {
|
|
z-index: 1000;
|
|
position: fixed;
|
|
background: rgba(255, 255, 255, 0.8);
|
|
max-width: 70vw;
|
|
max-height: 80vh;
|
|
margin: auto;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
min-width: 50vw;
|
|
min-height: 50vh;
|
|
backdrop-filter: blur(5px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-radius: 5px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
|
border: 1px solid var(--background-primary-alt);
|
|
justify-content: space-between;
|
|
}
|
|
popup header {
|
|
background: var(--background-primary);
|
|
color: var(--text-normal);
|
|
padding: 1em;
|
|
border-bottom: 1px solid var(--background-primary-alt);
|
|
font: size 1.4em;
|
|
}
|
|
popup article {
|
|
padding: 1em;
|
|
display: flex;
|
|
justify-content: center;
|
|
overflow-y: auto;
|
|
}
|
|
popup article .msg {
|
|
width: 100%;
|
|
line-height: 1.5;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
popup article .msg :global(:first-child) {
|
|
margin-top: 0;
|
|
}
|
|
popup article .msg :global(:last-child) {
|
|
margin-bottom: 0;
|
|
}
|
|
popup article .msg :global(pre) {
|
|
overflow-x: auto;
|
|
padding: 0.75em;
|
|
border-radius: 4px;
|
|
background: var(--background-secondary);
|
|
}
|
|
popup article .msg :global(code) {
|
|
font-family: var(--font-monospace);
|
|
}
|
|
popup article .msg :global(blockquote) {
|
|
margin: 0;
|
|
padding-left: 1em;
|
|
border-left: 3px solid var(--background-modifier-border);
|
|
color: var(--text-muted);
|
|
}
|
|
popup article .msg :global(ul),
|
|
popup article .msg :global(ol) {
|
|
padding-left: 1.5em;
|
|
}
|
|
popup article .msg :global(table) {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
popup article .msg :global(th),
|
|
popup article .msg :global(td) {
|
|
padding: 0.4em 0.6em;
|
|
border: 1px solid var(--background-modifier-border);
|
|
}
|
|
popup article .msg :global(a) {
|
|
color: var(--text-accent);
|
|
}
|
|
popup .buttons {
|
|
border-top: 1px solid var(--background-primary-alt);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 1em;
|
|
}
|
|
popup .buttons button {
|
|
margin: 0 0.5em;
|
|
background-color: var(--background-primary-alt);
|
|
}
|
|
popup .buttons.vertical {
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
}
|
|
popup .buttons.vertical button {
|
|
margin: 0.25em 0;
|
|
width: 100%;
|
|
}
|
|
popup ~ .background {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.125);
|
|
}
|
|
</style>
|