├── .all-contributorsrc ├── .babelrc ├── .github └── workflows │ ├── integration-test.yaml │ ├── production-build.yaml │ ├── publish-nightly-to-market.yml │ └── publish-to-market.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── .vscodeignore ├── .yarnrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── contributing.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── first.integration.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── docs └── assets │ ├── demo.png │ └── logo.png ├── icons ├── bubbles.png └── icon.png ├── package.json ├── prettier.config.js ├── scripts └── prepare-nightly-build.js ├── src ├── common │ ├── graphql.ts │ └── pubSub.ts ├── entities │ ├── GqlFile.ts │ ├── GqlIndexerStatus.ts │ ├── GqlLocation.ts │ ├── GqlProjectInfo.ts │ ├── GqlSearchResult.ts │ ├── GqlSymbolInformation.ts │ └── GqlSymbolReferences.ts ├── extension │ ├── ContentProvider.ts │ ├── api │ │ ├── ConfigResolver.ts │ │ ├── index.ts │ │ ├── static-files.ts │ │ └── symbol-resolver │ │ │ ├── OpenFileArgs.ts │ │ │ ├── ReIndexArgs.ts │ │ │ └── index.ts │ ├── extension.ts │ └── typings.d.ts ├── indexer │ ├── ESModuleItem.ts │ ├── ExportStatement.ts │ ├── FileType.ts │ ├── ImportStatement.ts │ ├── Indexer.ts │ ├── Project.ts │ ├── SourceFile.ts │ ├── Worker.ts │ ├── WorkerRunner.ts │ ├── fileResolver.ts │ ├── tests │ │ └── indexer │ │ │ ├── should-get-markers-for-imports │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.ts.snap │ │ │ ├── index.test.ts │ │ │ └── project │ │ │ │ ├── a.js │ │ │ │ └── b.js │ │ │ ├── should-ignore-files.test.ts │ │ │ ├── should-include-symbols-from-file-in-markers │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.ts.snap │ │ │ ├── index.test.ts │ │ │ └── project │ │ │ │ └── a.js │ │ │ ├── should-insert-import-statement │ │ │ ├── project │ │ │ │ └── a.js │ │ │ └── should-insert-import-statement.test.ts │ │ │ ├── should-link-re-exported-symbols │ │ │ ├── __snapshots__ │ │ │ │ └── should-link-re-exported-symbols.test.ts.snap │ │ │ ├── project │ │ │ │ ├── a.js │ │ │ │ ├── b.js │ │ │ │ └── c.js │ │ │ └── should-link-re-exported-symbols.test.ts │ │ │ └── should-understand-default-import │ │ │ ├── __snapshots__ │ │ │ └── should-undertstand-default-import.test.ts.snap │ │ │ ├── project │ │ │ ├── a.js │ │ │ ├── b.js │ │ │ └── c.js │ │ │ └── should-undertstand-default-import.test.ts │ └── util.ts ├── test │ ├── dummy-project-used-by-tests │ │ ├── index.js │ │ └── views │ │ │ ├── components │ │ │ ├── dropdown.jsx │ │ │ └── select.jsx │ │ │ └── stores │ │ │ └── item.ts │ ├── runTest.ts │ └── suite │ │ └── index.ts └── ui │ ├── App.tsx │ ├── assets │ └── JsBubblesLogo.png │ ├── gql │ └── SearchMutation.gql │ ├── index.tsx │ ├── store │ ├── index.ts │ ├── models │ │ ├── DocumentLocation.ts │ │ ├── DocumentSymbol.ts │ │ ├── IndexerStatus.ts │ │ ├── PathMap.ts │ │ ├── Preference.ts │ │ ├── app.ts │ │ ├── bookmarks │ │ │ ├── Bookmark.ts │ │ │ └── index.ts │ │ └── workspace │ │ │ └── index.ts │ └── services │ │ ├── config.ts │ │ ├── file.ts │ │ ├── index.ts │ │ ├── misc.ts │ │ ├── search.ts │ │ └── workspace.ts │ ├── theme.ts │ ├── typings.d.ts │ ├── util │ ├── graphql.ts │ └── hooks.ts │ └── view │ ├── VSCodeStyleOverride.tsx │ ├── bookmarks │ └── index.tsx │ ├── components │ ├── SymbolItem.tsx │ ├── SymbolKindIcon.tsx │ ├── SymbolMenu.tsx │ ├── WidgetFrame.tsx │ └── useThemeColor.ts │ ├── index.tsx │ ├── preference │ ├── directory-panel.tsx │ └── index.tsx │ ├── status-bar │ ├── index.tsx │ └── status.tsx │ ├── symbol-search │ └── index.tsx │ └── workspace-overview │ └── index.tsx ├── tsconfig.json ├── webpack.config.js ├── website ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ ├── 1-getting-started.md │ ├── 2-folder-to-index.md │ ├── 3-alias-configuration.md │ ├── 4-running-extension.md │ ├── 5-writing-integration-test.md │ ├── 6-publishing-extension-to-marketplace.md │ ├── 7-features.mdx │ ├── 8-bookmarks.mdx │ ├── mdx.md │ └── reference.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ └── styles.module.css ├── static │ ├── .nojekyll │ ├── img │ │ ├── WaypointLogo.png │ │ └── favicon.png │ └── videos │ │ ├── bookmark.mp4 │ │ └── search.mp4 └── yarn.lock └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/integration-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/.github/workflows/integration-test.yaml -------------------------------------------------------------------------------- /.github/workflows/production-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/.github/workflows/production-build.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-nightly-to-market.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/.github/workflows/publish-nightly-to-market.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-market.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/.github/workflows/publish-to-market.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/.vscodeignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/.yarnrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "projectId": "uppygv" 3 | } 4 | -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/first.integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/cypress/integration/first.integration.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /docs/assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/docs/assets/demo.png -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /icons/bubbles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/icons/bubbles.png -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/icons/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/prettier.config.js -------------------------------------------------------------------------------- /scripts/prepare-nightly-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/scripts/prepare-nightly-build.js -------------------------------------------------------------------------------- /src/common/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/common/graphql.ts -------------------------------------------------------------------------------- /src/common/pubSub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/common/pubSub.ts -------------------------------------------------------------------------------- /src/entities/GqlFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/entities/GqlFile.ts -------------------------------------------------------------------------------- /src/entities/GqlIndexerStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/entities/GqlIndexerStatus.ts -------------------------------------------------------------------------------- /src/entities/GqlLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/entities/GqlLocation.ts -------------------------------------------------------------------------------- /src/entities/GqlProjectInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/entities/GqlProjectInfo.ts -------------------------------------------------------------------------------- /src/entities/GqlSearchResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/entities/GqlSearchResult.ts -------------------------------------------------------------------------------- /src/entities/GqlSymbolInformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/entities/GqlSymbolInformation.ts -------------------------------------------------------------------------------- /src/entities/GqlSymbolReferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/entities/GqlSymbolReferences.ts -------------------------------------------------------------------------------- /src/extension/ContentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/extension/ContentProvider.ts -------------------------------------------------------------------------------- /src/extension/api/ConfigResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/extension/api/ConfigResolver.ts -------------------------------------------------------------------------------- /src/extension/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/extension/api/index.ts -------------------------------------------------------------------------------- /src/extension/api/static-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/extension/api/static-files.ts -------------------------------------------------------------------------------- /src/extension/api/symbol-resolver/OpenFileArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/extension/api/symbol-resolver/OpenFileArgs.ts -------------------------------------------------------------------------------- /src/extension/api/symbol-resolver/ReIndexArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/extension/api/symbol-resolver/ReIndexArgs.ts -------------------------------------------------------------------------------- /src/extension/api/symbol-resolver/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/extension/api/symbol-resolver/index.ts -------------------------------------------------------------------------------- /src/extension/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/extension/extension.ts -------------------------------------------------------------------------------- /src/extension/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/extension/typings.d.ts -------------------------------------------------------------------------------- /src/indexer/ESModuleItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/ESModuleItem.ts -------------------------------------------------------------------------------- /src/indexer/ExportStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/ExportStatement.ts -------------------------------------------------------------------------------- /src/indexer/FileType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/FileType.ts -------------------------------------------------------------------------------- /src/indexer/ImportStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/ImportStatement.ts -------------------------------------------------------------------------------- /src/indexer/Indexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/Indexer.ts -------------------------------------------------------------------------------- /src/indexer/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/Project.ts -------------------------------------------------------------------------------- /src/indexer/SourceFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/SourceFile.ts -------------------------------------------------------------------------------- /src/indexer/Worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/Worker.ts -------------------------------------------------------------------------------- /src/indexer/WorkerRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/WorkerRunner.ts -------------------------------------------------------------------------------- /src/indexer/fileResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/fileResolver.ts -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-get-markers-for-imports/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-get-markers-for-imports/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-get-markers-for-imports/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-get-markers-for-imports/index.test.ts -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-get-markers-for-imports/project/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-get-markers-for-imports/project/a.js -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-get-markers-for-imports/project/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-get-markers-for-imports/project/b.js -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-ignore-files.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-ignore-files.test.ts -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-include-symbols-from-file-in-markers/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-include-symbols-from-file-in-markers/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-include-symbols-from-file-in-markers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-include-symbols-from-file-in-markers/index.test.ts -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-include-symbols-from-file-in-markers/project/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-include-symbols-from-file-in-markers/project/a.js -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-insert-import-statement/project/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-insert-import-statement/project/a.js -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-insert-import-statement/should-insert-import-statement.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-insert-import-statement/should-insert-import-statement.test.ts -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-link-re-exported-symbols/__snapshots__/should-link-re-exported-symbols.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-link-re-exported-symbols/__snapshots__/should-link-re-exported-symbols.test.ts.snap -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-link-re-exported-symbols/project/a.js: -------------------------------------------------------------------------------- 1 | export { functionA } from "./b"; 2 | -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-link-re-exported-symbols/project/b.js: -------------------------------------------------------------------------------- 1 | export { functionA } from "./c"; 2 | -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-link-re-exported-symbols/project/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-link-re-exported-symbols/project/c.js -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-link-re-exported-symbols/should-link-re-exported-symbols.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-link-re-exported-symbols/should-link-re-exported-symbols.test.ts -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-understand-default-import/__snapshots__/should-undertstand-default-import.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-understand-default-import/__snapshots__/should-undertstand-default-import.test.ts.snap -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-understand-default-import/project/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-understand-default-import/project/a.js -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-understand-default-import/project/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-understand-default-import/project/b.js -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-understand-default-import/project/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-understand-default-import/project/c.js -------------------------------------------------------------------------------- /src/indexer/tests/indexer/should-understand-default-import/should-undertstand-default-import.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/tests/indexer/should-understand-default-import/should-undertstand-default-import.test.ts -------------------------------------------------------------------------------- /src/indexer/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/indexer/util.ts -------------------------------------------------------------------------------- /src/test/dummy-project-used-by-tests/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/dummy-project-used-by-tests/views/components/dropdown.jsx: -------------------------------------------------------------------------------- 1 | export class Dropdown {} 2 | -------------------------------------------------------------------------------- /src/test/dummy-project-used-by-tests/views/components/select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/test/dummy-project-used-by-tests/views/components/select.jsx -------------------------------------------------------------------------------- /src/test/dummy-project-used-by-tests/views/stores/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/test/dummy-project-used-by-tests/views/stores/item.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /src/ui/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/App.tsx -------------------------------------------------------------------------------- /src/ui/assets/JsBubblesLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/assets/JsBubblesLogo.png -------------------------------------------------------------------------------- /src/ui/gql/SearchMutation.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/gql/SearchMutation.gql -------------------------------------------------------------------------------- /src/ui/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/index.tsx -------------------------------------------------------------------------------- /src/ui/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/index.ts -------------------------------------------------------------------------------- /src/ui/store/models/DocumentLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/models/DocumentLocation.ts -------------------------------------------------------------------------------- /src/ui/store/models/DocumentSymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/models/DocumentSymbol.ts -------------------------------------------------------------------------------- /src/ui/store/models/IndexerStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/models/IndexerStatus.ts -------------------------------------------------------------------------------- /src/ui/store/models/PathMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/models/PathMap.ts -------------------------------------------------------------------------------- /src/ui/store/models/Preference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/models/Preference.ts -------------------------------------------------------------------------------- /src/ui/store/models/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/models/app.ts -------------------------------------------------------------------------------- /src/ui/store/models/bookmarks/Bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/models/bookmarks/Bookmark.ts -------------------------------------------------------------------------------- /src/ui/store/models/bookmarks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/models/bookmarks/index.ts -------------------------------------------------------------------------------- /src/ui/store/models/workspace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/models/workspace/index.ts -------------------------------------------------------------------------------- /src/ui/store/services/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/services/config.ts -------------------------------------------------------------------------------- /src/ui/store/services/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/services/file.ts -------------------------------------------------------------------------------- /src/ui/store/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/services/index.ts -------------------------------------------------------------------------------- /src/ui/store/services/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/services/misc.ts -------------------------------------------------------------------------------- /src/ui/store/services/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/services/search.ts -------------------------------------------------------------------------------- /src/ui/store/services/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/store/services/workspace.ts -------------------------------------------------------------------------------- /src/ui/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/theme.ts -------------------------------------------------------------------------------- /src/ui/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/typings.d.ts -------------------------------------------------------------------------------- /src/ui/util/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/util/graphql.ts -------------------------------------------------------------------------------- /src/ui/util/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/util/hooks.ts -------------------------------------------------------------------------------- /src/ui/view/VSCodeStyleOverride.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/VSCodeStyleOverride.tsx -------------------------------------------------------------------------------- /src/ui/view/bookmarks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/bookmarks/index.tsx -------------------------------------------------------------------------------- /src/ui/view/components/SymbolItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/components/SymbolItem.tsx -------------------------------------------------------------------------------- /src/ui/view/components/SymbolKindIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/components/SymbolKindIcon.tsx -------------------------------------------------------------------------------- /src/ui/view/components/SymbolMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/components/SymbolMenu.tsx -------------------------------------------------------------------------------- /src/ui/view/components/WidgetFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/components/WidgetFrame.tsx -------------------------------------------------------------------------------- /src/ui/view/components/useThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/components/useThemeColor.ts -------------------------------------------------------------------------------- /src/ui/view/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/index.tsx -------------------------------------------------------------------------------- /src/ui/view/preference/directory-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/preference/directory-panel.tsx -------------------------------------------------------------------------------- /src/ui/view/preference/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/preference/index.tsx -------------------------------------------------------------------------------- /src/ui/view/status-bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/status-bar/index.tsx -------------------------------------------------------------------------------- /src/ui/view/status-bar/status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/status-bar/status.tsx -------------------------------------------------------------------------------- /src/ui/view/symbol-search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/symbol-search/index.tsx -------------------------------------------------------------------------------- /src/ui/view/workspace-overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/src/ui/view/workspace-overview/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/webpack.config.js -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/docs/1-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/docs/1-getting-started.md -------------------------------------------------------------------------------- /website/docs/2-folder-to-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/docs/2-folder-to-index.md -------------------------------------------------------------------------------- /website/docs/3-alias-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/docs/3-alias-configuration.md -------------------------------------------------------------------------------- /website/docs/4-running-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/docs/4-running-extension.md -------------------------------------------------------------------------------- /website/docs/5-writing-integration-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/docs/5-writing-integration-test.md -------------------------------------------------------------------------------- /website/docs/6-publishing-extension-to-marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/docs/6-publishing-extension-to-marketplace.md -------------------------------------------------------------------------------- /website/docs/7-features.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/docs/7-features.mdx -------------------------------------------------------------------------------- /website/docs/8-bookmarks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/docs/8-bookmarks.mdx -------------------------------------------------------------------------------- /website/docs/mdx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/docs/mdx.md -------------------------------------------------------------------------------- /website/docs/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/docs/reference.md -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/sidebars.js -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/src/pages/index.js -------------------------------------------------------------------------------- /website/src/pages/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/src/pages/styles.module.css -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/img/WaypointLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/static/img/WaypointLogo.png -------------------------------------------------------------------------------- /website/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/static/img/favicon.png -------------------------------------------------------------------------------- /website/static/videos/bookmark.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/static/videos/bookmark.mp4 -------------------------------------------------------------------------------- /website/static/videos/search.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/static/videos/search.mp4 -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/website/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/waypoint/HEAD/yarn.lock --------------------------------------------------------------------------------