3 Commits

Author SHA1 Message Date
nicwands
a43c3221da fix new window loading bug 2026-05-08 13:18:16 -04:00
nicwands
75d3488de0 delete modal + btn 2026-05-07 13:11:16 -04:00
nicwands
1806a612b6 functionality updates for preferences 2026-04-09 14:58:06 -04:00
29 changed files with 572 additions and 103 deletions

View File

@@ -96,10 +96,10 @@ async function main() {
return return
} }
// if (isGitTagDirty()) { if (isGitTagDirty()) {
// console.log('Git working directory is dirty. Skipping upload.') console.log('Git working directory is dirty. Skipping upload.')
// return return
// } }
console.log( console.log(
`Uploading artifacts for ${platform} v${version} (tag: ${currentTag})`, `Uploading artifacts for ${platform} v${version} (tag: ${currentTag})`,

View File

@@ -79,7 +79,9 @@ const ajv = new Ajv({ allErrors: true, strict: false });
const getDefaultConfig = () => { const getDefaultConfig = () => {
return { return {
activeAdapter: "browser", activeAdapter: "browser",
theme: "dark" theme: "dark",
enableBlackletter: "true",
openNotesInNewWindow: "true"
}; };
}; };
const CONFIG_SCHEMA = { const CONFIG_SCHEMA = {
@@ -313,6 +315,7 @@ class NotesAPI {
} }
getNote(id) { getNote(id) {
const note = this.notesCache.get(id); const note = this.notesCache.get(id);
console.log(this.notesCache, id);
return note ? { ...note } : null; return note ? { ...note } : null;
} }
async createNote(metadata = {}, content = "", plainText = "") { async createNote(metadata = {}, content = "", plainText = "") {
@@ -435,6 +438,7 @@ const initializeCore = async (runtime, { plugins }) => {
let notesAPI = null; let notesAPI = null;
let initPromise = null; let initPromise = null;
const getNotesAPI = async () => { const getNotesAPI = async () => {
console.log("getNotesAPI before: ", notesAPI);
if (notesAPI) return notesAPI; if (notesAPI) return notesAPI;
if (!initPromise) { if (!initPromise) {
initPromise = (async () => { initPromise = (async () => {
@@ -455,6 +459,7 @@ const initializeCore = async (runtime, { plugins }) => {
); );
notesAPI = new NotesAPI(adapter, encryptionKey); notesAPI = new NotesAPI(adapter, encryptionKey);
await notesAPI.init(); await notesAPI.init();
console.log("getNotesAPI after: ", notesAPI);
return notesAPI; return notesAPI;
})(); })();
} }

View File

@@ -6,6 +6,8 @@ const getDefaultConfig = () => {
return { return {
activeAdapter: 'browser', activeAdapter: 'browser',
theme: 'dark', theme: 'dark',
enableBlackletter: 'true',
openNotesInNewWindow: 'true',
} }
} }

View File

@@ -72,7 +72,12 @@ export const createPluginManagerClient = () => {
}, },
async testPlugin(id, config) { async testPlugin(id, config) {
return window.api.pluginManagerCall('testPlugin', { id, config }) const test = await window.api.pluginManagerCall(
'testPlugin',
id,
config,
)
return test
}, },
} }
} }

View File

@@ -50,6 +50,35 @@ const initConfigManager = async (runtime, pluginManager) => {
return createConfigManager(storage, pluginManager) return createConfigManager(storage, pluginManager)
} }
let notesAPI = null
let initPromise = null
const initNotesAPI = async (configManager, pluginManager) => {
// Get fresh config to ensure adapters are populated from main process
const latestConfig = await configManager.loadConfig()
let encryptionKey = latestConfig?.encryptionKey
if (!encryptionKey) {
encryptionKey = generateEncryptionKey()
await configManager.setConfig({
...latestConfig,
encryptionKey,
})
}
const pluginId = latestConfig?.activeAdapter || 'filesystem'
const adapterConfig = latestConfig?.adapters?.[pluginId] || {}
const adapter = pluginManager.getAdapter(pluginId, adapterConfig)
const api = new NotesAPI(adapter, encryptionKey)
await api.init()
notesAPI = api
return api
}
export const initializeCore = async (runtime, { plugins }) => { export const initializeCore = async (runtime, { plugins }) => {
const pluginManager = initPluginManager(runtime, plugins) const pluginManager = initPluginManager(runtime, plugins)
const configManager = await initConfigManager(runtime, pluginManager) const configManager = await initConfigManager(runtime, pluginManager)
@@ -60,39 +89,11 @@ export const initializeCore = async (runtime, { plugins }) => {
pluginManager.setActivePlugin(config.activeAdapter, activeConfig) pluginManager.setActivePlugin(config.activeAdapter, activeConfig)
// Create API instance // Create API instance
let notesAPI = null
let initPromise = null
const getNotesAPI = async () => { const getNotesAPI = async () => {
if (notesAPI) return notesAPI if (notesAPI) return notesAPI
if (!initPromise) { if (!initPromise) {
initPromise = (async () => { initPromise = initNotesAPI(configManager, pluginManager)
// Get fresh config to ensure adapters are populated from main process
const latestConfig = await configManager.loadConfig()
let encryptionKey = latestConfig?.encryptionKey
if (!encryptionKey) {
encryptionKey = generateEncryptionKey()
await configManager.setConfig({
...latestConfig,
encryptionKey,
})
}
const pluginId = latestConfig?.activeAdapter || 'filesystem'
const adapterConfig = latestConfig?.adapters?.[pluginId] || {}
const adapter = pluginManager.getAdapter(
pluginId,
adapterConfig,
)
notesAPI = new NotesAPI(adapter, encryptionKey)
await notesAPI.init()
return notesAPI
})()
} }
return initPromise return initPromise

View File

@@ -0,0 +1,31 @@
<template>
<component :is="tag" class="btn">
<svg-btn-outline />
<slot />
</component>
</template>
<script setup>
import SvgBtnOutline from '@/components/svg/BtnOutline.vue'
const props = defineProps({
tag: {
type: String,
default: 'button',
},
})
</script>
<style lang="scss">
.btn {
text-transform: uppercase;
padding: 5px 16px 6px;
color: var(--grey-100);
position: relative;
&:hover {
color: var(--theme-accent);
}
}
</style>

View File

@@ -0,0 +1,36 @@
<template>
<div class="delete-menu">
<button
:class="['delete-button', { active: model }]"
@click="model = true"
>
Delete Items
</button>
<button v-if="model" class="close-button" @click="model = false">
X Close
</button>
</div>
</template>
<script setup>
const model = defineModel()
</script>
<style lang="scss">
.delete-menu {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
.delete-button {
color: var(--grey-100);
&:hover,
&.active {
color: var(--red);
}
}
}
</style>

View File

@@ -0,0 +1,51 @@
<template>
<div class="modal theme-dark">
<div class="modal-container" ref="container">
<slot />
</div>
</div>
</template>
<script setup>
import { onClickOutside } from '@vueuse/core'
import { ref } from 'vue'
const emit = defineEmits(['close'])
const container = ref(null)
onClickOutside(container, () => {
emit('close')
})
</script>
<style lang="scss">
.modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
.modal-container {
background: var(--theme-bg);
color: var(--theme-fg);
border: 1px solid var(--grey-100);
border-radius: 16px;
padding: 27px 21px;
text-align: center;
.btn-row {
display: flex;
justify-content: center;
gap: 12px;
margin-top: 26px;
.btn {
min-width: 80px;
}
}
}
}
</style>

View File

@@ -56,7 +56,11 @@ watch(open, async () => {
<style lang="scss"> <style lang="scss">
.move-menu { .move-menu {
width: 50vw; width: 50vw;
height: 100%; height: 100vh;
position: sticky;
top: 0;
overflow-y: auto;
padding-bottom: 20px;
border-left: 1px solid var(--grey-100); border-left: 1px solid var(--grey-100);
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View File

@@ -21,7 +21,7 @@ const onClick = async () => {
}, },
'', '',
) )
openNote(note.id) await openNote(note.id)
emit('noteOpened') emit('noteOpened')
} }

View File

@@ -1,36 +1,76 @@
<template> <template>
<div :class="['note-row', { 'move-active': moveActive }]"> <div
<span class="date">{{ formatDate(note.updatedAt) }}</span> :class="[
'note-row',
{ 'move-active': moveActive, 'delete-active': deleteActive },
]"
>
<button
v-if="deleteActive"
class="delete"
@click="deleteModalOpen = true"
>
Delete
</button>
<span v-else class="date">{{ formatDate(note.updatedAt) }}</span>
<div class="title-actions"> <div class="title-actions">
<button class="title bold" @click="openNote(note.id)"> <button
class="title bold"
@click="!deleteActive && openNote(note.id)"
>
{{ note.title }} {{ note.title }}
</button> </button>
<button class="action bold" @click="openNote(note.id)"> <button
class="action bold"
@click="!deleteActive && openNote(note.id)"
>
(open) (open)
</button> </button>
<button class="action bold move" @click="onMoveOpened"> <button class="action bold move" @click="onMoveOpened">
(move) (move)
</button> </button>
</div> </div>
<teleport to="body">
<modal v-if="deleteModalOpen" @close="deleteModalOpen = false">
<p>Are you sure?</p>
<div class="btn-row">
<btn @click="onDelete">Yes</btn>
<btn @click="deleteModalOpen = false">No</btn>
</div>
</modal>
</teleport>
</div> </div>
</template> </template>
<script setup> <script setup>
import useOpenNote from '@/composables/useOpenNote' import useOpenNote from '@/composables/useOpenNote'
import { useRoute, useRouter } from 'vue-router' import { useRoute, useRouter } from 'vue-router'
import { computed } from 'vue' import useNotes from '@/composables/useNotes'
import Modal from '@/components/Modal.vue'
import Btn from '@/components/Btn.vue'
import { computed, ref } from 'vue'
import { format } from 'fecha' import { format } from 'fecha'
const props = defineProps({ note: Object }) const props = defineProps({ note: Object, deleteActive: Boolean })
const deleteModalOpen = ref(false)
const { openNote } = useOpenNote() const { openNote } = useOpenNote()
const { deleteNote } = useNotes()
const formatDate = (date) => { const formatDate = (date) => {
const d = new Date(date) const d = new Date(date)
return format(d, 'MM/DD/YYYY') return format(d, 'MM/DD/YYYY')
} }
const onDelete = async () => {
await deleteNote(props.note.id)
}
// Moving // Moving
const route = useRoute() const route = useRoute()
const router = useRouter() const router = useRouter()
@@ -72,14 +112,32 @@ const moveActive = computed(() => route.query.move === props.note.id)
} }
} }
} }
&:hover,
&.move-active {
color: var(--theme-accent);
.title-actions .action { &.delete-active {
opacity: 1; align-items: flex-start;
.title,
.action {
cursor: default;
}
.delete {
cursor: pointer;
}
&:hover {
color: var(--red);
} }
} }
&:not(.delete-active) {
&:hover,
&.move-active {
color: var(--theme-accent);
.title-actions .action {
opacity: 1;
}
}
}
&.move-active { &.move-active {
.title-actions .move { .title-actions .move {
color: var(--theme-accent); color: var(--theme-accent);

View File

@@ -15,6 +15,7 @@ import SvgSpinner from '@/components/svg/Spinner.vue'
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
pointer-events: none;
svg { svg {
width: 20px; width: 20px;

View File

@@ -7,10 +7,13 @@
ref="input" ref="input"
@input="emit('input', model.value)" @input="emit('input', model.value)"
/> />
<svg-btn-outline />
</div> </div>
</template> </template>
<script setup> <script setup>
import SvgBtnOutline from '@/components/svg/BtnOutline.vue'
import { ref } from 'vue' import { ref } from 'vue'
const props = defineProps({ const props = defineProps({
@@ -38,37 +41,10 @@ defineExpose({
position: relative; position: relative;
padding: 5px 15px 6px; padding: 5px 15px 6px;
background: var(--theme-bg); background: var(--theme-bg);
--clip-start: 16px;
clip-path: polygon(
var(--clip-start) 1px,
calc(100% - var(--clip-start)) 1px,
calc(100% - 1.5px) 50%,
calc(100% - var(--clip-start)) calc(100% - 1px),
var(--clip-start) calc(100% - 1px),
1.5px 50%
);
&::placeholder { &::placeholder {
color: var(--grey-100); color: var(--grey-100);
} }
} }
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--theme-fg);
--clip-start: 15px;
clip-path: polygon(
var(--clip-start) 0,
calc(100% - var(--clip-start)) 0,
100% 50%,
calc(100% - var(--clip-start)) 100%,
var(--clip-start) 100%,
0% 50%
);
}
} }
</style> </style>

View File

@@ -0,0 +1,67 @@
<template>
<div class="preferences-boolean-input">
<label :for="key">
{{ label }}
</label>
<button
:class="['toggle-container', { active: model === 'true' }]"
@click="onToggleClick"
>
<div class="toggle-button" />
</button>
</div>
</template>
<script setup>
const props = defineProps({
label: String,
key: String,
required: Boolean,
default: String,
})
const model = defineModel()
const onToggleClick = () => {
if (model.value === 'true') {
model.value = 'false'
} else {
model.value = 'true'
}
}
</script>
<style lang="scss">
.preferences-boolean-input {
display: flex;
align-items: center;
justify-content: space-between;
.toggle-container {
width: 26px;
height: 15px;
border-radius: 10px;
border: 1px solid var(--theme-fg);
position: relative;
.toggle-button {
position: absolute;
top: 0;
left: 0;
width: 13px;
height: 13px;
border-radius: 50%;
background-color: var(--theme-fg);
}
&.active {
background: var(--grey-100);
.toggle-button {
transform: translateX(11px);
}
}
}
}
</style>

View File

@@ -53,6 +53,16 @@ const openDirectoryPicker = async () => {
} }
button { button {
padding: 0.2em 0.5em; padding: 0.2em 0.5em;
background: var(--theme-bg);
color: var(--theme-fg);
border: 1px solid var(--grey-100);
border-radius: 0.2em;
&:hover {
background: var(--theme-fg);
color: var(--theme-bg);
border-color: var(--theme-fg);
}
} }
} }
</style> </style>

View File

@@ -0,0 +1,48 @@
<template>
<div v-if="config" class="preferences-general">
<h2 class="section-title h1 mono">General</h2>
<div class="options">
<preferences-boolean-input
v-model="config.enableBlackletter"
label="Enable Blackletter"
key="enableBlackletter"
/>
<preferences-boolean-input
v-model="config.openNotesInNewWindow"
label="Open Notes in New Window"
key="openNotesInNewWindow"
/>
</div>
</div>
</template>
<script setup>
import PreferencesBooleanInput from '@/components/preferences/BooleanInput.vue'
import useConfig from '@/composables/useConfig'
import { onMounted } from 'vue'
const { config, ensureConfig } = useConfig()
onMounted(async () => {
await ensureConfig()
})
const validate = async () => {
// if (!config.value.encryptionKey) {
// throw new Error('Please fill in the encryption key')
// }
}
defineExpose({ validate })
</script>
<style lang="scss">
.preferences-general {
.options {
display: flex;
flex-direction: column;
gap: 16px;
}
}
</style>

View File

@@ -38,6 +38,11 @@
v-model="config.adapters[plugin.id][field.key]" v-model="config.adapters[plugin.id][field.key]"
v-bind="field" v-bind="field"
/> />
<boolean-input
v-else-if="field.type === 'boolean'"
v-model="config.adapters[plugin.id][field.key]"
v-bind="field"
/>
</div> </div>
</div> </div>
</div> </div>
@@ -47,6 +52,7 @@
<script setup> <script setup>
import DirectoryInput from '@/components/preferences/DirectoryInput.vue' import DirectoryInput from '@/components/preferences/DirectoryInput.vue'
import BooleanInput from '@/components/preferences/BooleanInput.vue'
import TextInput from '@/components/preferences/TextInput.vue' import TextInput from '@/components/preferences/TextInput.vue'
import usePlugins from '@/composables/usePlugins' import usePlugins from '@/composables/usePlugins'
import useConfig from '@/composables/useConfig' import useConfig from '@/composables/useConfig'
@@ -102,11 +108,10 @@ const validate = async () => {
} }
// Test connection // Test connection
// const testResult = await testPlugin(plugin.id, adapterConfig) const testResult = await testPlugin(plugin.id, adapterConfig)
// console.log(testResult) if (!testResult) {
// if (!testResult) { throw new Error(`Failed to connect to ${plugin.name}`)
// validationError.value = `Failed to connect to ${plugin.name}` }
// }
} }
await setActivePlugin(selectedPluginId.value, adapterConfig) await setActivePlugin(selectedPluginId.value, adapterConfig)
@@ -137,6 +142,8 @@ defineExpose({ validate })
} }
.info { .info {
flex: 1;
.description { .description {
color: var(--grey-100); color: var(--grey-100);
margin-top: 6px; margin-top: 6px;
@@ -146,7 +153,7 @@ defineExpose({ validate })
.config { .config {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 10px; gap: 16px;
margin-top: 16px; margin-top: 16px;
} }
} }

View File

@@ -2,17 +2,30 @@
<div class="preferences-text-input"> <div class="preferences-text-input">
<label :for="key"> {{ label }}{{ required ? '*' : '' }} </label> <label :for="key"> {{ label }}{{ required ? '*' : '' }} </label>
<input <div class="input-wrapper">
v-model="model" <input
:id="key" v-model="model"
:type="type" :id="key"
:placeholder="default" :type="isPasswordVisible ? 'text' : type"
:required="required" :placeholder="default"
/> :required="required"
/>
<button
v-if="type === 'password'"
type="button"
class="toggle-password"
@click="isPasswordVisible = !isPasswordVisible"
>
👁
</button>
</div>
</div> </div>
</template> </template>
<script setup> <script setup>
import { ref } from 'vue'
const props = defineProps({ const props = defineProps({
label: String, label: String,
key: String, key: String,
@@ -22,6 +35,7 @@ const props = defineProps({
}) })
const model = defineModel() const model = defineModel()
const isPasswordVisible = ref(false)
</script> </script>
<style lang="scss"> <style lang="scss">
@@ -30,11 +44,26 @@ const model = defineModel()
display: block; display: block;
margin-bottom: 6px; margin-bottom: 6px;
} }
.input-wrapper {
position: relative;
display: flex;
align-items: center;
}
input { input {
width: 100%; width: 100%;
border: 1px solid var(--grey-100); border: 1px solid var(--grey-100);
border-radius: 0.2em; border-radius: 0.2em;
padding: 0.2em 0.5em; padding: 0.2em 0.5em;
padding-right: 2.5em;
}
.toggle-password {
position: absolute;
right: 0.5em;
background: none;
border: none;
cursor: pointer;
padding: 0;
font-size: 1em;
} }
} }
</style> </style>

View File

@@ -0,0 +1,67 @@
<template>
<div class="svg-btn-outline">
<svg
class="side left"
width="16"
height="28"
viewBox="0 0 16 28"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M15.7207 0.5H14.7207L0.720634 14.8612L14.7207 27.5H15.7207"
stroke="currentColor"
/>
</svg>
<div class="fill">
<div class="borders" />
</div>
<svg
class="side right"
width="16"
height="28"
viewBox="0 0 16 28"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M15.7207 0.5H14.7207L0.720634 14.8612L14.7207 27.5H15.7207"
stroke="currentColor"
/>
</svg>
</div>
</template>
<style lang="scss">
.svg-btn-outline {
grid-template-columns: auto 1fr auto;
display: grid;
align-items: center;
position: absolute;
inset: 0;
width: 100%;
height: 100%;
pointer-events: none;
.side {
height: 100%;
&.right {
transform: scaleX(-1);
}
}
.fill {
height: 100%;
position: relative;
.borders {
position: absolute;
inset: 0 -1px;
border: solid currentColor;
border-width: 1px 0;
}
}
}
</style>

View File

@@ -12,6 +12,7 @@ export default () => {
// Change listeners for electron // Change listeners for electron
const { setupListeners, broadcastChange, changeCount } = useNoteListeners() const { setupListeners, broadcastChange, changeCount } = useNoteListeners()
setupListeners() setupListeners()
getNotesAPI()
const getDecryptionFailures = async () => { const getDecryptionFailures = async () => {
const api = await getNotesAPI() const api = await getNotesAPI()
@@ -30,7 +31,8 @@ export default () => {
} }
const loadNote = async (id) => { const loadNote = async (id) => {
const api = await getNotesAPI() const api = await getNotesAPI()
return api.getNote(id) console.log(api)
return await api.getNote(id)
} }
// Create // Create

View File

@@ -1,11 +1,15 @@
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router'
import { useEnvironment, ENVIRONMENTS } from './useEnvironment' import { useEnvironment, ENVIRONMENTS } from './useEnvironment'
import useConfig from '@/composables/useConfig'
export default () => { export default () => {
const router = useRouter() const router = useRouter()
const { config, ensureConfig } = useConfig()
function openNote(noteId, options = {}) { const openNote = async (noteId) => {
const { newWindow = true } = options await ensureConfig()
const newWindow =
config.value.openNotesInNewWindow === 'true' ? true : false
const environment = useEnvironment() const environment = useEnvironment()

View File

@@ -16,7 +16,7 @@ export default async () => {
} }
const testPlugin = async (pluginId, config = {}) => { const testPlugin = async (pluginId, config = {}) => {
await pluginManager.testPlugin(pluginId, { ...config }) return await pluginManager.testPlugin(pluginId, { ...config })
} }
return { return {

View File

@@ -5,6 +5,7 @@ const colors = {
green: '#87FF5B', green: '#87FF5B',
blue: '#5B92FF', blue: '#5B92FF',
purple: '#94079E', purple: '#94079E',
red: '#D40202',
} }
const themes = { const themes = {

View File

@@ -1,4 +1,7 @@
// z-index // z-index
.menu { .menu {
z-index: 20;
}
.nav {
z-index: 10; z-index: 10;
} }

View File

@@ -7,8 +7,15 @@
@edited="onCategoryEdited" @edited="onCategoryEdited"
/> />
<delete-menu v-model="deleteActive" />
<div class="notes"> <div class="notes">
<note-row v-for="note in notes" :note="note" :key="note.id" /> <note-row
v-for="note in notes"
:note="note"
:deleteActive="deleteActive"
:key="note.id"
/>
</div> </div>
<new-note :category="id" /> <new-note :category="id" />
@@ -22,12 +29,14 @@ import useNotes from '@/composables/useNotes'
import NoteRow from '@/components/NoteRow.vue' import NoteRow from '@/components/NoteRow.vue'
import CategoryRow from '@/components/CategoryRow.vue' import CategoryRow from '@/components/CategoryRow.vue'
import NewNote from '@/components/NewNote.vue' import NewNote from '@/components/NewNote.vue'
import DeleteMenu from '@/components/DeleteMenu.vue'
const route = useRoute() const route = useRoute()
const id = route.params?.id const id = route.params?.id
const router = useRouter() const router = useRouter()
const notes = ref() const notes = ref()
const deleteActive = ref(false)
const refreshNotes = async () => { const refreshNotes = async () => {
if (id) { if (id) {
@@ -48,7 +57,6 @@ onMounted(async () => {
if (!categories.value?.length) { if (!categories.value?.length) {
await loadCategories() await loadCategories()
console.log(categories.value)
} }
}) })
@@ -75,6 +83,9 @@ main.category {
.category-row { .category-row {
margin-top: 4px; margin-top: 4px;
} }
.delete-menu {
margin: 10px 0 12px;
}
.notes { .notes {
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View File

@@ -10,10 +10,19 @@
:key="category" :key="category"
/> />
<h2 v-if="notes?.length" class="label">Summarium</h2> <div class="bar">
<h2 v-if="notes?.length" class="label">Summarium</h2>
<delete-menu v-model="deleteActive" />
</div>
<div class="notes"> <div class="notes">
<note-row v-for="note in notes" :note="note" :key="note.id" /> <note-row
v-for="note in notes"
:note="note"
:deleteActive="deleteActive"
:key="note.id"
/>
</div> </div>
<new-note /> <new-note />
@@ -33,6 +42,7 @@ import DecryptionWarning from '@/components/DecryptionWarning.vue'
import { onMounted, ref, watchEffect, watch } from 'vue' import { onMounted, ref, watchEffect, watch } from 'vue'
import CategoryRow from '@/components/CategoryRow.vue' import CategoryRow from '@/components/CategoryRow.vue'
import PageLoading from '@/components/PageLoading.vue' import PageLoading from '@/components/PageLoading.vue'
import DeleteMenu from '@/components/DeleteMenu.vue'
import NoteRow from '@/components/NoteRow.vue' import NoteRow from '@/components/NoteRow.vue'
import useNotes from '@/composables/useNotes' import useNotes from '@/composables/useNotes'
import NewNote from '@/components/NewNote.vue' import NewNote from '@/components/NewNote.vue'
@@ -51,6 +61,7 @@ const {
const notes = ref() const notes = ref()
const loaded = ref(false) const loaded = ref(false)
const deleteActive = ref(false)
const refreshNotes = async () => { const refreshNotes = async () => {
loaded.value = false loaded.value = false
@@ -81,10 +92,16 @@ main.directory {
padding-top: var(--nav-height); padding-top: var(--nav-height);
padding-bottom: 60px; padding-bottom: 60px;
.label { .bar {
text-transform: uppercase; display: flex;
align-items: center;
gap: 27px;
margin: 17px 0 24px; margin: 17px 0 24px;
@include p;
.label {
text-transform: uppercase;
@include p;
}
} }
.notes { .notes {
display: flex; display: flex;

View File

@@ -15,6 +15,7 @@ const renderedContent = md.render(content)
<style lang="scss"> <style lang="scss">
main.instructions { main.instructions {
padding-top: var(--nav-height); padding-top: var(--nav-height);
padding-bottom: 50px;
.content { .content {
display: flex; display: flex;

View File

@@ -1,5 +1,9 @@
<template> <template>
<main class="note layout-block"> <main v-if="note" class="note layout-block">
<router-link v-if="!hideBack" class="back-link" to="/">
<- Back
</router-link>
<note-download :title="editorRef?.title" :editor="editorRef?.editor" /> <note-download :title="editorRef?.title" :editor="editorRef?.editor" />
<note-find <note-find
@@ -14,17 +18,24 @@
</template> </template>
<script setup> <script setup>
import { ref, watchEffect } from 'vue' import { computed, ref, watchEffect } from 'vue'
import { useMagicKeys } from '@vueuse/core' import { useMagicKeys } from '@vueuse/core'
import { useRoute } from 'vue-router' import { useRoute } from 'vue-router'
import useNotes from '@/composables/useNotes' import useNotes from '@/composables/useNotes'
import NoteEditor from '@/components/note/Editor.vue' import NoteEditor from '@/components/note/Editor.vue'
import NoteFind from '@/components/note/Find.vue' import NoteFind from '@/components/note/Find.vue'
import NoteDownload from '@/components/note/Download.vue' import NoteDownload from '@/components/note/Download.vue'
import useConfig from '@/composables/useConfig'
import { useEnvironment } from '@/composables/useEnvironment'
const route = useRoute() const route = useRoute()
const id = route.params.id const id = route.params.id
const { config, ensureConfig } = useConfig()
await ensureConfig()
const environment = useEnvironment()
const { loadNote } = useNotes() const { loadNote } = useNotes()
const note = await loadNote(id) const note = await loadNote(id)
@@ -52,6 +63,12 @@ const onTargetClick = () => {
editorRef.value.editor.getText().length + 1, editorRef.value.editor.getText().length + 1,
) )
} }
const hideBack = computed(
() =>
environment === 'electron' &&
config.value.openNotesInNewWindow === 'true',
)
</script> </script>
<style lang="scss"> <style lang="scss">
@@ -61,6 +78,11 @@ main.note {
grid-template-rows: auto auto 1fr; grid-template-rows: auto auto 1fr;
display: grid; display: grid;
.back-link {
color: var(--grey-100);
margin-right: auto;
margin-bottom: 10px;
}
.click-target { .click-target {
cursor: pointer; cursor: pointer;
min-height: 1em; min-height: 1em;

View File

@@ -3,6 +3,8 @@
<h1 class="title">Preferences</h1> <h1 class="title">Preferences</h1>
<div class="sections"> <div class="sections">
<preferences-general />
<preferences-encryption ref="encryption" /> <preferences-encryption ref="encryption" />
<suspense @resolve="ready = true"> <suspense @resolve="ready = true">
@@ -22,6 +24,7 @@
<script setup> <script setup>
import PreferencesEncryption from '@/components/preferences/Encryption.vue' import PreferencesEncryption from '@/components/preferences/Encryption.vue'
import PreferencesGeneral from '@/components/preferences/General.vue'
import PreferencesStorage from '@/components/preferences/Storage.vue' import PreferencesStorage from '@/components/preferences/Storage.vue'
import SvgSpinner from '@/components/svg/Spinner.vue' import SvgSpinner from '@/components/svg/Spinner.vue'
import { ref } from 'vue' import { ref } from 'vue'
@@ -61,6 +64,7 @@ const save = async () => {
.preferences { .preferences {
padding-top: var(--nav-height); padding-top: var(--nav-height);
padding-bottom: 60px; padding-bottom: 60px;
position: relative;
.title { .title {
margin-bottom: 25px; margin-bottom: 25px;
@@ -69,14 +73,20 @@ const save = async () => {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 30px; gap: 30px;
max-width: 500px;
} }
.section-title { .section-title {
margin-bottom: 20px; margin-bottom: 20px;
} }
.error { .error {
color: red; position: fixed;
margin-top: 16px; top: 0;
left: 0;
right: 0;
background: #ba3632;
padding: 5px var(--layout-margin);
text-align: center;
} }
.save-btn { .save-btn {