public
anord
read
Ledger
Why work hard when you can work easier?
Languages
Repository composition by tracked source files.
TypeScript
86%
CSS
10%
SQL
3%
Shell
1%
HTML
0%
Trace
apps/web/src/components/DocsSidebar.tsx
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
DocsSidebar.tsx
on main
Author
Date
Commit
Line
Code
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 1
import { useMemo, useState } from "react";
import { useMemo, useState } from "react";
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 2
import { Link, useLocation } from "react-router-dom";
import { Link, useLocation } from "react-router-dom";
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 3
import type { PageSummary } from "@ledger/shared";
import type { PageSummary } from "@ledger/shared";
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 4
import { Icon } from "./Icon";
import { Icon } from "./Icon";
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 5
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 6
type Space = {
type Space = {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 7
id: string;
id: string;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 8
name: string;
name: string;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 9
key: string;
key: string;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 10
visibility: string;
visibility: string;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 11
};
};
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 12
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 13
type PageNode = PageSummary & { children: PageNode[] };
type PageNode = PageSummary & { children: PageNode[] };
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 14
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 15
function closeSidebarOnMobile(onClose: () => void) {
function closeSidebarOnMobile(onClose: () => void) {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 16
if (window.innerWidth <= 920) {
if (window.innerWidth <= 920) {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 17
onClose();
onClose();
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 18
}
}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 19
}
}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 20
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 21
function buildTree(pages: PageSummary[]) {
function buildTree(pages: PageSummary[]) {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 22
const byId = new Map<string, PageNode>();
const byId = new Map<string, PageNode>();
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 23
const roots: PageNode[] = [];
const roots: PageNode[] = [];
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 24
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 25
for (const page of pages) {
for (const page of pages) {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 26
byId.set(page.id, { ...page, children: [] });
byId.set(page.id, { ...page, children: [] });
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 27
}
}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 28
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 29
for (const node of byId.values()) {
for (const node of byId.values()) {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 30
if (node.parentPageId && byId.has(node.parentPageId)) {
if (node.parentPageId && byId.has(node.parentPageId)) {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 31
byId.get(node.parentPageId)!.children.push(node);
byId.get(node.parentPageId)!.children.push(node);
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 32
} else {
} else {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 33
roots.push(node);
roots.push(node);
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 34
}
}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 35
}
}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 36
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 37
const sortNodes = (nodes: PageNode[]) => {
const sortNodes = (nodes: PageNode[]) => {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 38
nodes.sort((a, b) => a.title.localeCompare(b.title));
nodes.sort((a, b) => a.title.localeCompare(b.title));
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 39
nodes.forEach((node) => sortNodes(node.children));
nodes.forEach((node) => sortNodes(node.children));
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 40
};
};
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 41
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 42
sortNodes(roots);
sortNodes(roots);
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 43
return roots;
return roots;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 44
}
}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 45
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 46
function TreeNode({
function TreeNode({
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 47
node,
node,
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 48
depth,
depth,
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 49
currentSlug,
currentSlug,
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 50
onClose
onClose
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 51
}: {
}: {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 52
node: PageNode;
node: PageNode;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 53
depth: number;
depth: number;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 54
currentSlug: string | undefined;
currentSlug: string | undefined;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 55
onClose: () => void;
onClose: () => void;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 56
}) {
}) {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 57
const [isOpen, setIsOpen] = useState(true);
const [isOpen, setIsOpen] = useState(true);
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 58
const isActive = node.slug === currentSlug;
const isActive = node.slug === currentSlug;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 59
const hasChildren = node.children.length > 0;
const hasChildren = node.children.length > 0;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 60
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 61
return (
return (
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 62
<div className="tree-node">
<div className="tree-node">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 63
<div className={`tree-item${isActive ? " is-active" : ""}`} style={{ paddingLeft: `${depth * 0.85 + 0.75}rem` }}>
<div className={`tree-item${isActive ? " is-active" : ""}`} style={{ paddingLeft: `${depth * 0.85 + 0.75}rem` }}>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 64
{hasChildren ? (
{hasChildren ? (
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 65
<button
<button
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 66
type="button"
type="button"
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 67
className="tree-toggle"
className="tree-toggle"
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 68
onClick={() => setIsOpen((value) => !value)}
onClick={() => setIsOpen((value) => !value)}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 69
aria-label={isOpen ? "Collapse section" : "Expand section"}
aria-label={isOpen ? "Collapse section" : "Expand section"}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 70
>
>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 71
<Icon name={isOpen ? "chevronDown" : "chevronRight"} className="icon icon-sm" />
<Icon name={isOpen ? "chevronDown" : "chevronRight"} className="icon icon-sm" />
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 72
</button>
</button>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 73
) : (
) : (
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 74
<span className="tree-spacer" />
<span className="tree-spacer" />
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 75
)}
)}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 76
<Link to={`/page/${node.slug}`} className="tree-link" onClick={() => closeSidebarOnMobile(onClose)}>
<Link to={`/page/${node.slug}`} className="tree-link" onClick={() => closeSidebarOnMobile(onClose)}>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 77
<span className="tree-link__title">{node.title}</span>
<span className="tree-link__title">{node.title}</span>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 78
<span className={`badge badge-${node.visibility}`}>{node.visibility}</span>
<span className={`badge badge-${node.visibility}`}>{node.visibility}</span>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 79
</Link>
</Link>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 80
</div>
</div>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 81
{hasChildren && isOpen ? (
{hasChildren && isOpen ? (
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 82
<div className="tree-children">
<div className="tree-children">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 83
{node.children.map((child) => (
{node.children.map((child) => (
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 84
<TreeNode key={child.id} node={child} depth={depth + 1} currentSlug={currentSlug} onClose={onClose} />
<TreeNode key={child.id} node={child} depth={depth + 1} currentSlug={currentSlug} onClose={onClose} />
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 85
))}
))}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 86
</div>
</div>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 87
) : null}
) : null}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 88
</div>
</div>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 89
);
);
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 90
}
}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 91
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 92
export function DocsSidebar({
export function DocsSidebar({
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 93
spaces,
spaces,
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 94
pagesBySpace,
pagesBySpace,
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 95
currentSpaceKey,
currentSpaceKey,
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 96
currentSlug,
currentSlug,
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 97
user,
user,
Alex Nord
3 months ago
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 98
preferences,
preferences,
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 99
isOpen,
isOpen,
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 100
onClose
onClose
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 101
}: {
}: {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 102
spaces: Space[];
spaces: Space[];
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 103
pagesBySpace: Record<string, PageSummary[]>;
pagesBySpace: Record<string, PageSummary[]>;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 104
currentSpaceKey?: string;
currentSpaceKey?: string;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 105
currentSlug?: string;
currentSlug?: string;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 106
user: { displayName: string; role: string } | null;
user: { displayName: string; role: string } | null;
Alex Nord
3 months ago
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 107
preferences: { compactSidebar: boolean };
preferences: { compactSidebar: boolean };
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 108
isOpen: boolean;
isOpen: boolean;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 109
onClose: () => void;
onClose: () => void;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 110
}) {
}) {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 111
const location = useLocation();
const location = useLocation();
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 112
const [collapsedSpaces, setCollapsedSpaces] = useState<Record<string, boolean>>({});
const [collapsedSpaces, setCollapsedSpaces] = useState<Record<string, boolean>>({});
Alex Nord
3 months ago
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 113
const accountTarget = user ? "/preferences/profile" : "/login";
const accountTarget = user ? "/preferences/profile" : "/login";
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 114
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 115
const recentPages = useMemo(
const recentPages = useMemo(
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 116
() =>
() =>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 117
Object.values(pagesBySpace)
Object.values(pagesBySpace)
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 118
.flat()
.flat()
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 119
.sort((a, b) => Date.parse(b.updatedAt) - Date.parse(a.updatedAt))
.sort((a, b) => Date.parse(b.updatedAt) - Date.parse(a.updatedAt))
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 120
.slice(0, 5),
.slice(0, 5),
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 121
[pagesBySpace]
[pagesBySpace]
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 122
);
);
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 123
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 124
return (
return (
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 125
<>
<>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 126
<div className={`sidebar-overlay${isOpen ? " is-open" : ""}`} onClick={onClose} />
<div className={`sidebar-overlay${isOpen ? " is-open" : ""}`} onClick={onClose} />
Alex Nord
3 months ago
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 127
<aside className={`sidebar${isOpen ? " is-open" : ""}${preferences.compactSidebar ? " is-compact" : ""}`}>
<aside className={`sidebar${isOpen ? " is-open" : ""}${preferences.compactSidebar ? " is-compact" : ""}`}>
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 128
<div className="sidebar__top">
<div className="sidebar__top">
Alex Nord
3 months ago
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 129
<div className="sidebar__brand">
<div className="sidebar__brand">
same change
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 130
<span className="sidebar__brand-mark">L</span>
<span className="sidebar__brand-mark">L</span>
same change
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 131
<div>
<div>
same change
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 132
<h2 className="sidebar__workspace">Ledger</h2>
<h2 className="sidebar__workspace">Ledger</h2>
same change
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 133
<p className="muted">{user ? "Documentation workspace" : "Public knowledge base"}</p>
<p className="muted">{user ? "Documentation workspace" : "Public knowledge base"}</p>
same change
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 134
</div>
</div>
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 135
</div>
</div>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 136
<button type="button" className="mobile-only button-ghost" onClick={onClose} aria-label="Close navigation">
<button type="button" className="mobile-only button-ghost" onClick={onClose} aria-label="Close navigation">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 137
<Icon name="chevronRight" className="icon" />
<Icon name="chevronRight" className="icon" />
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 138
</button>
</button>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 139
</div>
</div>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 140
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 141
<nav className="sidebar-nav" aria-label="Primary">
<nav className="sidebar-nav" aria-label="Primary">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 142
<Link
<Link
Alex Nord
3 months ago
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 143
className={`sidebar-nav__item${location.pathname === "/spaces" || location.pathname === "/" || location.pathname.startsWith("/space/") ? " is-current" : ""}`}
className={`sidebar-nav__item${location.pathname === "/spaces" || location.pathname === "/" || location.pathname.startsWith("/space/") ? " is-current" : ""}`}
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 144
to="/spaces"
to="/spaces"
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 145
onClick={() => closeSidebarOnMobile(onClose)}
onClick={() => closeSidebarOnMobile(onClose)}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 146
>
>
Alex Nord
3 months ago
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 147
<Icon name="home" className="icon icon-sm" />
<Icon name="home" className="icon icon-sm" />
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 148
<span>Home</span>
<span>Home</span>
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 149
</Link>
</Link>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 150
<Link
<Link
Alex Nord
3 months ago
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 151
className={`sidebar-nav__item${location.pathname === "/search" ? " is-current" : ""}`}
className={`sidebar-nav__item${location.pathname === "/search" ? " is-current" : ""}`}
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 152
to="/search"
to="/search"
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 153
onClick={() => closeSidebarOnMobile(onClose)}
onClick={() => closeSidebarOnMobile(onClose)}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 154
>
>
Alex Nord
3 months ago
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 155
<Icon name="search" className="icon icon-sm" />
<Icon name="search" className="icon icon-sm" />
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 156
<span>Search</span>
<span>Search</span>
Alex Nord
3 months ago
ea3e37e
Continuing UI fixes
- Full commit hash
ea3e37e37b76a90a5a290f47538dfb1ceac8c446- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 157
</Link>
</Link>
same change
ea3e37e
Continuing UI fixes
- Full commit hash
ea3e37e37b76a90a5a290f47538dfb1ceac8c446- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 158
<Link
<Link
same change
ea3e37e
Continuing UI fixes
- Full commit hash
ea3e37e37b76a90a5a290f47538dfb1ceac8c446- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 159
className={`sidebar-nav__item${location.pathname === "/drafts" ? " is-current" : ""}`}
className={`sidebar-nav__item${location.pathname === "/drafts" ? " is-current" : ""}`}
same change
ea3e37e
Continuing UI fixes
- Full commit hash
ea3e37e37b76a90a5a290f47538dfb1ceac8c446- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 160
to="/drafts"
to="/drafts"
same change
ea3e37e
Continuing UI fixes
- Full commit hash
ea3e37e37b76a90a5a290f47538dfb1ceac8c446- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 161
onClick={() => closeSidebarOnMobile(onClose)}
onClick={() => closeSidebarOnMobile(onClose)}
same change
ea3e37e
Continuing UI fixes
- Full commit hash
ea3e37e37b76a90a5a290f47538dfb1ceac8c446- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 162
>
>
same change
ea3e37e
Continuing UI fixes
- Full commit hash
ea3e37e37b76a90a5a290f47538dfb1ceac8c446- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 163
<Icon name="document" className="icon icon-sm" />
<Icon name="document" className="icon icon-sm" />
same change
ea3e37e
Continuing UI fixes
- Full commit hash
ea3e37e37b76a90a5a290f47538dfb1ceac8c446- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 164
<span>Drafts</span>
<span>Drafts</span>
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 165
</Link>
</Link>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 166
</nav>
</nav>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 167
Alex Nord
3 months ago
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 168
<section className="sidebar-section">
<section className="sidebar-section">
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 169
<div className="sidebar-section__header">
<div className="sidebar-section__header">
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 170
<span>Workspace</span>
<span>Workspace</span>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 171
</div>
</div>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 172
<div className="sidebar-list">
<div className="sidebar-list">
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 173
<Link
<Link
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 174
className={`sidebar-doc${location.pathname === "/imports" ? " is-current" : ""}`}
className={`sidebar-doc${location.pathname === "/imports" ? " is-current" : ""}`}
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 175
to="/imports"
to="/imports"
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 176
onClick={() => closeSidebarOnMobile(onClose)}
onClick={() => closeSidebarOnMobile(onClose)}
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 177
>
>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 178
<Icon name="plus" className="icon icon-sm" />
<Icon name="plus" className="icon icon-sm" />
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 179
<span>Imports</span>
<span>Imports</span>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 180
</Link>
</Link>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 181
<Link
<Link
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 182
className={`sidebar-doc${location.pathname === "/ask-ai" ? " is-current" : ""}`}
className={`sidebar-doc${location.pathname === "/ask-ai" ? " is-current" : ""}`}
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 183
to="/ask-ai"
to="/ask-ai"
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 184
onClick={() => closeSidebarOnMobile(onClose)}
onClick={() => closeSidebarOnMobile(onClose)}
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 185
>
>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 186
<Icon name="spark" className="icon icon-sm" />
<Icon name="spark" className="icon icon-sm" />
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 187
<span>Ask AI</span>
<span>Ask AI</span>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 188
</Link>
</Link>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 189
<Link
<Link
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 190
className={`sidebar-doc${location.pathname.startsWith("/admin") ? " is-current" : ""}`}
className={`sidebar-doc${location.pathname.startsWith("/admin") ? " is-current" : ""}`}
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 191
to="/admin/general"
to="/admin/general"
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 192
onClick={() => closeSidebarOnMobile(onClose)}
onClick={() => closeSidebarOnMobile(onClose)}
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 193
>
>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 194
<Icon name="settings" className="icon icon-sm" />
<Icon name="settings" className="icon icon-sm" />
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 195
<span>Admin</span>
<span>Admin</span>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 196
</Link>
</Link>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 197
</div>
</div>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 198
</section>
</section>
same change
8c672a8
Continues UI Fixes part 2
- Full commit hash
8c672a87b0f35ddbd3fef3f3ebe1c5a3d11f3c6c- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 199
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 200
<section className="sidebar-section">
<section className="sidebar-section">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 201
<div className="sidebar-section__header">
<div className="sidebar-section__header">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 202
<span>Recent</span>
<span>Recent</span>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 203
</div>
</div>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 204
<div className="sidebar-list">
<div className="sidebar-list">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 205
{recentPages.length === 0 ? <p className="muted">No documents yet.</p> : null}
{recentPages.length === 0 ? <p className="muted">No documents yet.</p> : null}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 206
{recentPages.map((page) => (
{recentPages.map((page) => (
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 207
<Link
<Link
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 208
key={page.id}
key={page.id}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 209
to={`/page/${page.slug}`}
to={`/page/${page.slug}`}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 210
className={`sidebar-doc${page.slug === currentSlug ? " is-current" : ""}`}
className={`sidebar-doc${page.slug === currentSlug ? " is-current" : ""}`}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 211
onClick={() => closeSidebarOnMobile(onClose)}
onClick={() => closeSidebarOnMobile(onClose)}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 212
>
>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 213
<Icon name="document" className="icon icon-sm" />
<Icon name="document" className="icon icon-sm" />
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 214
<span>{page.title}</span>
<span>{page.title}</span>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 215
</Link>
</Link>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 216
))}
))}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 217
</div>
</div>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 218
</section>
</section>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 219
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 220
<section className="sidebar-section">
<section className="sidebar-section">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 221
<div className="sidebar-section__header">
<div className="sidebar-section__header">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 222
<span>Collections</span>
<span>Collections</span>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 223
</div>
</div>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 224
<div className="sidebar-collections">
<div className="sidebar-collections">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 225
{spaces.map((space) => {
{spaces.map((space) => {
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 226
const isCollapsed = collapsedSpaces[space.key] ?? false;
const isCollapsed = collapsedSpaces[space.key] ?? false;
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 227
const tree = buildTree(pagesBySpace[space.key] ?? []);
const tree = buildTree(pagesBySpace[space.key] ?? []);
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 228
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 229
return (
return (
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 230
<div key={space.id} className="collection-group">
<div key={space.id} className="collection-group">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 231
<button
<button
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 232
type="button"
type="button"
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 233
className={`collection-group__header${space.key === currentSpaceKey ? " is-current" : ""}`}
className={`collection-group__header${space.key === currentSpaceKey ? " is-current" : ""}`}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 234
onClick={() =>
onClick={() =>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 235
setCollapsedSpaces((current) => ({
setCollapsedSpaces((current) => ({
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 236
...current,
...current,
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 237
[space.key]: !isCollapsed
[space.key]: !isCollapsed
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 238
}))
}))
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 239
}
}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 240
>
>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 241
<span className="collection-group__title">
<span className="collection-group__title">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 242
<Icon name={isCollapsed ? "chevronRight" : "chevronDown"} className="icon icon-sm" />
<Icon name={isCollapsed ? "chevronRight" : "chevronDown"} className="icon icon-sm" />
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 243
<Icon name="collection" className="icon icon-sm" />
<Icon name="collection" className="icon icon-sm" />
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 244
{space.name}
{space.name}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 245
</span>
</span>
Alex Nord
3 months ago
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 246
<span className={`badge badge-${space.visibility}`}>{space.visibility}</span>
<span className={`badge badge-${space.visibility}`}>{space.visibility}</span>
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 247
</button>
</button>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 248
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 249
{!isCollapsed ? (
{!isCollapsed ? (
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 250
<div className="collection-group__body">
<div className="collection-group__body">
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 251
<Link
<Link
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 252
to={`/space/${space.key}`}
to={`/space/${space.key}`}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 253
className={`collection-link${space.key === currentSpaceKey && !currentSlug ? " is-current" : ""}`}
className={`collection-link${space.key === currentSpaceKey && !currentSlug ? " is-current" : ""}`}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 254
onClick={() => closeSidebarOnMobile(onClose)}
onClick={() => closeSidebarOnMobile(onClose)}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 255
>
>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 256
Browse collection
Browse collection
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 257
</Link>
</Link>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 258
{tree.length === 0 ? <p className="muted">No published pages yet.</p> : null}
{tree.length === 0 ? <p className="muted">No published pages yet.</p> : null}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 259
{tree.map((node) => (
{tree.map((node) => (
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 260
<TreeNode key={node.id} node={node} depth={0} currentSlug={currentSlug} onClose={onClose} />
<TreeNode key={node.id} node={node} depth={0} currentSlug={currentSlug} onClose={onClose} />
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 261
))}
))}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 262
</div>
</div>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 263
) : null}
) : null}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 264
</div>
</div>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 265
);
);
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 266
})}
})}
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 267
</div>
</div>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 268
</section>
</section>
Alex Nord
3 months ago
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 269
same change
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 270
<div className="sidebar__footer">
<div className="sidebar__footer">
Alex Nord
3 months ago
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 271
<Link to={accountTarget} className={`sidebar__account${location.pathname.startsWith("/preferences") ? " is-current" : ""}`} onClick={() => closeSidebarOnMobile(onClose)}>
<Link to={accountTarget} className={`sidebar__account${location.pathname.startsWith("/preferences") ? " is-current" : ""}`} onClick={() => closeSidebarOnMobile(onClose)}>
Alex Nord
3 months ago
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 272
<div className="sidebar__avatar">{user ? user.displayName.slice(0, 1).toUpperCase() : "P"}</div>
<div className="sidebar__avatar">{user ? user.displayName.slice(0, 1).toUpperCase() : "P"}</div>
same change
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 273
<div className="sidebar__account-body">
<div className="sidebar__account-body">
same change
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 274
<strong>{user?.displayName ?? "Public visitor"}</strong>
<strong>{user?.displayName ?? "Public visitor"}</strong>
same change
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 275
<span>{user?.role ?? "public"}</span>
<span>{user?.role ?? "public"}</span>
same change
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 276
</div>
</div>
Alex Nord
3 months ago
39c4a7e
Continues UI fixes and fixing Docs
- Full commit hash
39c4a7eb40e70508ca2290d8656cf640971c5c56- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 277
</Link>
</Link>
Alex Nord
3 months ago
bf8ab75
Continues UI Fixes part 3
- Full commit hash
bf8ab75a8c0f353cc71637613dd04ca4b125685d- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 278
</div>
</div>
Alex Nord
3 months ago
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 279
</aside>
</aside>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 280
</>
</>
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 281
);
);
same change
9693751
Redesign the web app into a docs-first knowledge base UI
- Full commit hash
9693751c4efa74f02fcfa752eedbe80955e1f2ee- Author
- Alex Nord <[email protected]>
- Date
- 3 months ago
- Selected line
- 282
}
}