From 78f15c54c2e0d1f61abc9eec4d88ee020b191e95 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Tue, 2 Nov 2021 23:24:07 +0100 Subject: Feat/collapse: add collapsible/toggleable headers and outline layout in the preview panel (#139) * feat(preview): collapsible headings * feat(preview): collapsible headings * feat(collapse): change icons for headings * feat(collapse): * feat(collapse): use new uniorg and better looks * feat(collapse): fix typescript errors * fix(ci): better filter * feat(collapse): more small adjustments * feat(collapse): collapse all button * fix(collapse): fix global css * fix(cd): remove yarn and add export * fix(collapse): type-errors * fix(cd): fix format-all fucking up yml --- components/Sidebar/Backlinks.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'components/Sidebar/Backlinks.tsx') diff --git a/components/Sidebar/Backlinks.tsx b/components/Sidebar/Backlinks.tsx index d82fbba..e115225 100644 --- a/components/Sidebar/Backlinks.tsx +++ b/components/Sidebar/Backlinks.tsx @@ -15,10 +15,12 @@ export interface BacklinksProps { nodeByCite: NodeByCite setSidebarHighlightedNode: OrgRoamNode openContextMenu: any + outline: boolean } import { PreviewLink } from './Link' import { OrgRoamNode } from '../../api' +import { Section } from './Section' export const Backlinks = (props: BacklinksProps) => { const { @@ -29,6 +31,7 @@ export const Backlinks = (props: BacklinksProps) => { linksByNodeId, nodeByCite, openContextMenu, + outline, } = props const links = linksByNodeId[previewNode?.id] ?? [] @@ -40,8 +43,8 @@ export const Backlinks = (props: BacklinksProps) => { .map((l) => l.source) return ( - - {`Backlinks (${backLinks.length})`} + +

{`Linked references (${backLinks.length})`}

{ backLinks.map((link) => { const title = nodeById[link as string]?.title ?? '' return ( - + {nodeById[link as string]?.title} -- cgit v1.2.3