Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tag and reference graphs #32

Merged
merged 28 commits into from
Aug 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
185d291
Add tag graph builder
lggruspe Aug 8, 2023
f40e5e1
Add reference graph builder
lggruspe Aug 8, 2023
83e6f6e
Add nodes for isolated tags and refs in tag and ref graphs
lggruspe Aug 8, 2023
37d3ea8
Generate tag and ref graphs during build
lggruspe Aug 8, 2023
032e99b
Config mocha for ts
lggruspe Aug 9, 2023
f4f4d2a
Define page routes
lggruspe Aug 9, 2023
ba915a3
Add new router implementation
lggruspe Aug 9, 2023
b71a035
Add hash prop to Route objects
lggruspe Aug 9, 2023
15c2315
Delete old router implementation
lggruspe Aug 9, 2023
560de38
Fix prefix of tag routes
lggruspe Aug 9, 2023
3051660
Remove unnecessary prefixes from graph node data
lggruspe Aug 9, 2023
bc2335f
Show tag graph in #tags and reference graph in #references
lggruspe Aug 9, 2023
4367a34
Use fcose instead of preset layout
lggruspe Aug 9, 2023
4a48acd
Update graph style
lggruspe Aug 10, 2023
92b27ab
Rename data.json to notes.json
lggruspe Aug 10, 2023
ec2914d
Generate graph of notes that cite the same reference
lggruspe Aug 10, 2023
ac5c763
Improve graph view performance
lggruspe Aug 10, 2023
a16fdc0
Fix cytoscape z-index options
lggruspe Aug 10, 2023
ccd60d0
Preselect root nodes in note graphs
lggruspe Aug 11, 2023
fe0c1bb
Select nodes asychronously
lggruspe Aug 11, 2023
0f638e7
Pre-compute layouts only of large note graphs
lggruspe Aug 11, 2023
548d6e2
Use pre-computed layout if available
lggruspe Aug 11, 2023
b382351
Fix missing node labels in graphs
lggruspe Aug 11, 2023
658aaae
Strip titles before sending graphs to graphviz
lggruspe Aug 11, 2023
334c0ce
Increase distance between nodes in pre-computed layout
lggruspe Aug 11, 2023
f8ae24e
Don't subscript tuple and Counter
lggruspe Aug 12, 2023
d78b2a8
Mark new tests that require pandoc
lggruspe Aug 12, 2023
e2cc5a4
Use typing.Counter
lggruspe Aug 12, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion js/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@ module.exports = {
ecmaVersion: "latest",
},
plugins: ["@typescript-eslint"],
rules: {},
rules: {
"@typescript-eslint/ban-ts-comment": "off",
},
};
5 changes: 5 additions & 0 deletions js/.mocharc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require: "ts-node/register"
extensions:
- "ts"
spec:
- "test/**/*.test.ts"
Loading
Loading