added basic config

This commit is contained in:
2023-08-21 20:00:26 +09:00
parent 39158a2ef6
commit b390b4cd14
2 changed files with 34 additions and 9 deletions

View File

@ -25,7 +25,30 @@ export const defaultContentPageLayout: PageLayout = {
Component.Darkmode(),
Component.DesktopOnly(Component.TableOfContents()),
],
right: [Component.Graph(), Component.Backlinks()],
right: [Component.Graph({
localGraph: {
drag: true, // whether to allow panning the view around
zoom: true, // whether to allow zooming in and out
depth: 2, // how many hops of notes to display
scale: 1.1, // default view scale
repelForce: 0.5, // how much nodes should repel each other
centerForce: 0.3, // how much force to use when trying to center the nodes
linkDistance: 30, // how long should the links be by default?
fontSize: 0.6, // what size should the node labels be?
opacityScale: 1, // how quickly do we fade out the labels when zooming out?
},
globalGraph: {
drag: true,
zoom: true,
depth: -1,
scale: 0.9,
repelForce: 0.5,
centerForce: 0.3,
linkDistance: 30,
fontSize: 0.6,
opacityScale: 1,
},
}), Component.Backlinks()],
}
// components for pages that display lists of pages (e.g. tags or folders)
@ -39,3 +62,5 @@ export const defaultListPageLayout: PageLayout = {
],
right: [],
}