mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-26 11:43:59 -05:00
880e542351
* Remove redundant equal value Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Add NoteLoadingBoundary to fetch note from API before rendering Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Improve debug message for setHandler Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Add test for boundary Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Use common error page for note loading errors Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Fix tests Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Format code Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Add missing snapshot Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Reformat code Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { useMemo } from 'react'
|
|
import { useApplicationState } from './use-application-state'
|
|
|
|
/**
|
|
* Returns the markdown content from the global application state trimmed to the maximal note length and without the frontmatter lines.
|
|
*/
|
|
export const useTrimmedNoteMarkdownContentWithoutFrontmatter = (): string[] => {
|
|
const maxLength = useApplicationState((state) => state.config.maxDocumentLength)
|
|
const markdownContent = useApplicationState((state) => ({
|
|
lines: state.noteDetails.markdownContent.lines,
|
|
content: state.noteDetails.markdownContent.plain
|
|
}))
|
|
const lineOffset = useApplicationState((state) => state.noteDetails.frontmatterRendererInfo.lineOffset)
|
|
|
|
const trimmedLines = useMemo(() => {
|
|
if (markdownContent.content.length > maxLength) {
|
|
return markdownContent.content.slice(0, maxLength).split('\n')
|
|
} else {
|
|
return markdownContent.lines
|
|
}
|
|
}, [markdownContent, maxLength])
|
|
|
|
return useMemo(() => {
|
|
return trimmedLines.slice(lineOffset)
|
|
}, [lineOffset, trimmedLines])
|
|
}
|