Files
remanso/src/views/FleetingNotes.vue
2026-03-28 09:38:55 +01:00

180 lines
4.6 KiB
Vue

<script lang="ts" setup>
import { format } from "date-fns"
import { computed, ref, watch } from "vue"
import FluxNote from "@/components/FluxNote.vue"
import { useEditionMode } from "@/hooks/useEditionMode"
import { useGitHubContent } from "@/hooks/useGitHubContent.hook"
import { useRouteQueryStackedNotes } from "@/hooks/useRouteQueryStackedNotes.hook"
import { prepareNoteCache } from "@/modules/note/cache/prepareNoteCache"
import EditNote from "@/modules/note/components/EditNote.vue"
import { useFolderNotes } from "@/modules/note/hooks/useFolderNotes"
import { encodeUTF8ToBase64 } from "@/utils/decodeBase64ToUTF8"
import { confirmMessage, errorMessage } from "@/utils/notif"
import { extractYouTubeId } from "@/utils/youtube"
const FLEETING_NOTES_FOLDER = ["inbox", "_inbox"]
const props = defineProps<{ user: string; repo: string }>()
const user = computed(() => props.user)
const repo = computed(() => props.repo)
const { addStackedNote } = useRouteQueryStackedNotes()
const { content } = useFolderNotes(FLEETING_NOTES_FOLDER)
const today = format(new Date(), "yyyy-MM-dd")
const newContentPath = `_inbox/${today}.md`
const initialContent = ``
const newContent = ref(initialContent)
const { mode, toggleMode } = useEditionMode()
const handleYouTube = async () => {
if (typeof navigator === "undefined" || !navigator.clipboard?.readText) {
errorMessage("Clipboard access is not available.")
return
}
let clipboardText: string
try {
clipboardText = (await navigator.clipboard.readText()).trim()
} catch (err) {
console.warn(err)
errorMessage("Unable to read from the clipboard.")
return
}
debugger
if (!clipboardText) {
errorMessage("Clipboard is empty.")
return
}
const videoId = extractYouTubeId(clipboardText)
if (!videoId) {
errorMessage("The clipboard does not contain a valid YouTube link or id.")
return
}
const snippet = `@[youtube](${videoId})`
try {
await navigator.clipboard.writeText(snippet)
} catch {
errorMessage("Unable to paste to the clipboard.")
}
confirmMessage("YouTube video embed added to the note.")
}
const { createFile } = useGitHubContent({
repo: repo.value,
user: user.value
})
const hasTodayNote = computed(() => content.value.includes(today))
watch(mode, async (newMode) => {
if (newMode === "read" && newContent.value.trim() !== initialContent) {
const content = `# ${new Date().toLocaleDateString()}\n\n${
newContent.value
}`
const newSha = await createFile({
content,
path: newContentPath
})
if (!newSha) {
return
}
newContent.value = initialContent
const { saveCacheNote } = prepareNoteCache(newSha, newContentPath)
await saveCacheNote(encodeUTF8ToBase64(content), {
editedSha: newSha,
path: newContentPath
})
addStackedNote("", newSha)
}
})
</script>
<template>
<div class="fleeting-notes">
<flux-note
key="fleeting-notes"
:user="user"
:repo="repo"
:content="content"
>
<h3 class="subtitle">Inbox</h3>
<div class="actions">
<button
v-if="!hasTodayNote"
class="btn btn-secondary"
@click="toggleMode"
>
new fleeting note
</button>
<button class="btn btn-outline" @click="handleYouTube">YouTube</button>
</div>
<div v-if="mode === 'edit'">
<edit-note v-model="newContent" />
<div class="columns">
<div class="column is-half">
<button class="btn btn-outline" @click="toggleMode">
<svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-device-floppy"
width="28"
height="28"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path
d="M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"
/>
<circle cx="12" cy="14" r="2" />
<polyline points="14 4 14 8 8 8 8 4" />
</svg>
</button>
</div>
</div>
</div>
</flux-note>
</div>
</template>
<style scoped lang="scss">
.fleeting-notes {
display: flex;
flex: 1;
.subtitle {
text-align: center;
}
.column {
display: flex;
justify-content: center;
}
.actions {
display: flex;
justify-content: center;
align-items: center;
gap: 1rem;
}
}
</style>