diff --git a/.env b/.env deleted file mode 100644 index c6352a4..0000000 --- a/.env +++ /dev/null @@ -1,2 +0,0 @@ -VITE_LIGHT_MODE=garden -VITE_DARK_MODE=sunset diff --git a/.env.checksum b/.env.checksum deleted file mode 100644 index 75e02cb..0000000 --- a/.env.checksum +++ /dev/null @@ -1 +0,0 @@ -84d588441b7e30aa991c53d842cd08cdeb5d97510f6026a0d44a7d3f5df133de diff --git a/.husky/pre-push b/.husky/_pre-push similarity index 100% rename from .husky/pre-push rename to .husky/_pre-push diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index cce9d3c..0000000 --- a/.prettierrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "semi": false -} diff --git a/index.html b/index.html index 2185441..85750ce 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + diff --git a/src/components/StackedNote.vue b/src/components/StackedNote.vue index ca9d900..8495ce8 100644 --- a/src/components/StackedNote.vue +++ b/src/components/StackedNote.vue @@ -5,28 +5,28 @@ import { nextTick, onMounted, ref, - watch, -} from "vue" + watch +} from 'vue' -import { useEditionMode } from "@/hooks/useEditionMode" -import { useFile } from "@/hooks/useFile.hook" -import { useGitHubContent } from "@/hooks/useGitHubContent.hook" -import { useImages } from "@/hooks/useImages.hook" -import { useLinks } from "@/hooks/useLinks.hook" -import { useNoteOverlay } from "@/hooks/useNoteOverlay.hook" -import { useRouteQueryStackedNotes } from "@/hooks/useRouteQueryStackedNotes.hook" -import { useTitleNotes } from "@/hooks/useTitleNotes.hook" -import { useUserRepoStore } from "@/modules/repo/store/userRepo.store" -import { encodeUTF8ToBase64 } from "@/utils/decodeBase64ToUTF8" -import { filenameToNoteTitle } from "@/utils/noteTitle" -import { generateTweets } from "@/utils/twitter" +import { useEditionMode } from '@/hooks/useEditionMode' +import { useFile } from '@/hooks/useFile.hook' +import { useGitHubContent } from '@/hooks/useGitHubContent.hook' +import { useImages } from '@/hooks/useImages.hook' +import { useLinks } from '@/hooks/useLinks.hook' +import { useNoteOverlay } from '@/hooks/useNoteOverlay.hook' +import { useRouteQueryStackedNotes } from '@/hooks/useRouteQueryStackedNotes.hook' +import { useTitleNotes } from '@/hooks/useTitleNotes.hook' +import { useUserRepoStore } from '@/modules/repo/store/userRepo.store' +import { encodeUTF8ToBase64 } from '@/utils/decodeBase64ToUTF8' +import { filenameToNoteTitle } from '@/utils/noteTitle' +import { generateTweets } from '@/utils/twitter' const LinkedNotes = defineAsyncComponent( - () => import("@/components/LinkedNotes.vue"), + () => import('@/components/LinkedNotes.vue') ) const EditNote = defineAsyncComponent( - () => import("@/modules/note/components/EditNote.vue"), + () => import('@/modules/note/components/EditNote.vue') ) const props = defineProps<{ @@ -50,7 +50,7 @@ const { rawContent, getRawContent, saveCacheNote, - getEditedSha, + getEditedSha } = useFile(sha) const initialRawContent = ref(null) const className = computed(() => `stacked-note-${props.index}`) @@ -62,12 +62,12 @@ const store = useUserRepoStore() const hasBacklinks = computed(() => store.userSettings?.backlink) const { displayNoteOverlay } = useNoteOverlay(className.value, index) -const displayedTitle = computed(() => filenameToNoteTitle(props.title ?? "")) -const breadcrumbs = computed(() => displayedTitle.value.split(" / ")) +const displayedTitle = computed(() => filenameToNoteTitle(props.title ?? '')) +const breadcrumbs = computed(() => displayedTitle.value.split(' / ')) const { updateFile } = useGitHubContent({ user: user.value, - repo: repo.value, + repo: repo.value }) onMounted(async () => { @@ -90,13 +90,13 @@ watch([content, mode], () => { watch(mode, async (newMode) => { const hasUserFinishedToEdit = - newMode === "read" && rawContent.value !== initialRawContent.value + newMode === 'read' && rawContent.value !== initialRawContent.value if (!hasUserFinishedToEdit) { return } if (!path.value) { - console.warn("no path found for this file") + console.warn('no path found for this file') return } @@ -105,17 +105,17 @@ watch(mode, async (newMode) => { const newSha = await updateFile({ content: rawContent.value, path: path.value, - sha: editedSha, + sha: editedSha }) if (!newSha) { - console.warn("no new SHA found for this file") + console.warn('no new SHA found for this file') return } await saveCacheNote(encodeUTF8ToBase64(rawContent.value), { - editedSha: newSha, + editedSha: newSha }) initialRawContent.value = rawContent.value }) @@ -127,7 +127,7 @@ watch(mode, async (newMode) => { :class="{ [className]: true, overlay: displayNoteOverlay, - [`note-${sha}`]: true, + [`note-${sha}`]: true }" > { v-if="false" :to="{ name: 'ShareNotes', - params: { user: user, repo: repo, note: sha }, + params: { user: user, repo: repo, note: sha } }" class="action" > diff --git a/src/components/ThemeSwap.vue b/src/components/ThemeSwap.vue index 3eba0e9..ec68a47 100644 --- a/src/components/ThemeSwap.vue +++ b/src/components/ThemeSwap.vue @@ -1,11 +1,12 @@