🐛 (title) only use title notes not path
This commit is contained in:
@@ -6,7 +6,7 @@ import { useOverlay } from '@/hooks/useOverlay.hook'
|
|||||||
import { useQueryStackedNotes } from '@/hooks/useQueryStackedNotes.hook'
|
import { useQueryStackedNotes } from '@/hooks/useQueryStackedNotes.hook'
|
||||||
import { resolvePath } from '@/modules/repo/services/resolvePath'
|
import { resolvePath } from '@/modules/repo/services/resolvePath'
|
||||||
import { useUserRepoStore } from '@/modules/repo/store/userRepo.store'
|
import { useUserRepoStore } from '@/modules/repo/store/userRepo.store'
|
||||||
import { pathToNoteTitle } from '@/utils/noteTitle'
|
import { pathToNotePathTitle } from '@/utils/noteTitle'
|
||||||
|
|
||||||
export const useNote = (containerClass: string) => {
|
export const useNote = (containerClass: string) => {
|
||||||
const store = useUserRepoStore()
|
const store = useUserRepoStore()
|
||||||
@@ -20,7 +20,7 @@ export const useNote = (containerClass: string) => {
|
|||||||
}
|
}
|
||||||
const filePath = store.files.find((file) => file.sha === note)?.path ?? ''
|
const filePath = store.files.find((file) => file.sha === note)?.path ?? ''
|
||||||
|
|
||||||
obj[note] = pathToNoteTitle(filePath)
|
obj[note] = pathToNotePathTitle(filePath)
|
||||||
|
|
||||||
return obj
|
return obj
|
||||||
}, {})
|
}, {})
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
export const filenameToNoteTitle = (title: string) =>
|
export const filenameToNoteTitle = (title: string) =>
|
||||||
title.replaceAll('/', ' / ').replaceAll('-', ' ')
|
title.replaceAll('/', ' / ').replaceAll('-', ' ')
|
||||||
|
|
||||||
export const pathToNoteTitle = (path: string) => {
|
export const pathToNotePathTitle = (path: string) => {
|
||||||
const fileNames = path.split('.')
|
const fileNames = path.split('.')
|
||||||
|
|
||||||
fileNames.pop()
|
fileNames.pop()
|
||||||
@@ -12,3 +12,7 @@ export const pathToNoteTitle = (path: string) => {
|
|||||||
.join('/')
|
.join('/')
|
||||||
.replaceAll('-', ' ')
|
.replaceAll('-', ' ')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const pathToNoteTitle = (notePathTitle: string) => {
|
||||||
|
return pathToNotePathTitle(notePathTitle).split('/').pop()?.trim() ?? ''
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user