├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── release.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── assets ├── PathGraphModal.png ├── PathGraphView.png ├── PathPanelClosed.png ├── PathPanelHover.png ├── PathPanelHoverNode.png ├── PathPanelOpen.png ├── PathPanelSettings.png ├── PathView.png ├── find-all-paths-as-graph.gif ├── find-all-paths.gif └── find-shortest-path.gif ├── esbuild.config.mjs ├── manifest.json ├── package.json ├── src ├── algorithms │ └── graph │ │ ├── dijkstra.ts │ │ ├── get_next_path.ts │ │ ├── weighted_graph.ts │ │ └── weighted_graph_with_node_id.ts ├── generic_text_suggester.ts ├── main.ts ├── modals.ts ├── settings.ts ├── suggest.ts ├── test │ ├── dijkstra.test.ts │ ├── memset.test.ts │ ├── random.test.ts │ ├── weighted_graph.test.ts │ └── weighted_graph_with_node_id.test.ts ├── ui │ ├── d3_force_graph_with_labels.ts │ ├── force_graph_control.ts │ └── graph_control.ts ├── utils │ ├── graph_data.ts │ ├── memset.ts │ ├── random.ts │ ├── random_string.ts │ ├── random_weighted_graph_generator.ts │ ├── random_weighted_graph_with_node_id_generator.ts │ └── weighted_graph_with_node_id_data.ts └── view.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs ├── versions.json └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/README.md -------------------------------------------------------------------------------- /assets/PathGraphModal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/assets/PathGraphModal.png -------------------------------------------------------------------------------- /assets/PathGraphView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/assets/PathGraphView.png -------------------------------------------------------------------------------- /assets/PathPanelClosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/assets/PathPanelClosed.png -------------------------------------------------------------------------------- /assets/PathPanelHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/assets/PathPanelHover.png -------------------------------------------------------------------------------- /assets/PathPanelHoverNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/assets/PathPanelHoverNode.png -------------------------------------------------------------------------------- /assets/PathPanelOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/assets/PathPanelOpen.png -------------------------------------------------------------------------------- /assets/PathPanelSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/assets/PathPanelSettings.png -------------------------------------------------------------------------------- /assets/PathView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/assets/PathView.png -------------------------------------------------------------------------------- /assets/find-all-paths-as-graph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/assets/find-all-paths-as-graph.gif -------------------------------------------------------------------------------- /assets/find-all-paths.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/assets/find-all-paths.gif -------------------------------------------------------------------------------- /assets/find-shortest-path.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/assets/find-shortest-path.gif -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/package.json -------------------------------------------------------------------------------- /src/algorithms/graph/dijkstra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/algorithms/graph/dijkstra.ts -------------------------------------------------------------------------------- /src/algorithms/graph/get_next_path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/algorithms/graph/get_next_path.ts -------------------------------------------------------------------------------- /src/algorithms/graph/weighted_graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/algorithms/graph/weighted_graph.ts -------------------------------------------------------------------------------- /src/algorithms/graph/weighted_graph_with_node_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/algorithms/graph/weighted_graph_with_node_id.ts -------------------------------------------------------------------------------- /src/generic_text_suggester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/generic_text_suggester.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/modals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/modals.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/suggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/suggest.ts -------------------------------------------------------------------------------- /src/test/dijkstra.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/test/dijkstra.test.ts -------------------------------------------------------------------------------- /src/test/memset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/test/memset.test.ts -------------------------------------------------------------------------------- /src/test/random.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/test/random.test.ts -------------------------------------------------------------------------------- /src/test/weighted_graph.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/test/weighted_graph.test.ts -------------------------------------------------------------------------------- /src/test/weighted_graph_with_node_id.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/test/weighted_graph_with_node_id.test.ts -------------------------------------------------------------------------------- /src/ui/d3_force_graph_with_labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/ui/d3_force_graph_with_labels.ts -------------------------------------------------------------------------------- /src/ui/force_graph_control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/ui/force_graph_control.ts -------------------------------------------------------------------------------- /src/ui/graph_control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/ui/graph_control.ts -------------------------------------------------------------------------------- /src/utils/graph_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/utils/graph_data.ts -------------------------------------------------------------------------------- /src/utils/memset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/utils/memset.ts -------------------------------------------------------------------------------- /src/utils/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/utils/random.ts -------------------------------------------------------------------------------- /src/utils/random_string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/utils/random_string.ts -------------------------------------------------------------------------------- /src/utils/random_weighted_graph_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/utils/random_weighted_graph_generator.ts -------------------------------------------------------------------------------- /src/utils/random_weighted_graph_with_node_id_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/utils/random_weighted_graph_with_node_id_generator.ts -------------------------------------------------------------------------------- /src/utils/weighted_graph_with_node_id_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/utils/weighted_graph_with_node_id_data.ts -------------------------------------------------------------------------------- /src/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/src/view.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "1.0.0": "0.12.0" 3 | } -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerrywcy/obsidian-path-finder/HEAD/vitest.config.ts --------------------------------------------------------------------------------