├── .DS_Store ├── .gitattributes ├── .github └── workflows │ └── pull_request.yml ├── .gitignore ├── .node-version ├── .nvmrc ├── .prettierrc.json ├── .vscode └── settings.json ├── .yarnclean ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── babel.config.js ├── custom_typings └── import-png.d.ts ├── data-dictionary.model.lkml ├── dist ├── bundle.js ├── bundle.js.LICENSE.txt └── bundle.js.map ├── jest.config.js ├── manifest.lkml ├── marketplace.json ├── package.json ├── pull_request_template.md ├── src ├── __mocks__ │ ├── fileMock.js │ └── styleMock.js ├── __tests__ │ ├── MockData │ │ └── MockData.ts │ ├── comments.spec.ts │ ├── components │ │ ├── CommentIcon.spec.tsx │ │ ├── DataDictionary.spec.tsx │ │ ├── DetailDrawer.spec.tsx │ │ ├── DetailDrawerRow.spec.tsx │ │ ├── ExploreList.spec.tsx │ │ ├── ExternalLink.spec.tsx │ │ ├── FieldComment.spec.tsx │ │ ├── FieldCommentDisplay.spec.tsx │ │ ├── FieldCommentList.spec.tsx │ │ ├── FieldMetadata.spec.tsx │ │ ├── Fields.spec.tsx │ │ ├── PanelFields.spec.tsx │ │ ├── SQLSnippet.tsx │ │ ├── Sidebar.spec.tsx │ │ ├── SidebarToggle.spec.tsx │ │ ├── ViewOptions.tsx │ │ └── __snapshots__ │ │ │ ├── DetailDrawer.spec.tsx.snap │ │ │ ├── DetailDrawerRow.spec.tsx.snap │ │ │ ├── ExploreList.spec.tsx.snap │ │ │ ├── ExternalLink.spec.tsx.snap │ │ │ ├── FieldCommentList.spec.tsx.snap │ │ │ ├── Fields.spec.tsx.snap │ │ │ ├── SQLSnippet.tsx.snap │ │ │ └── ViewOptions.tsx.snap │ └── test_utils │ │ └── render_with_extension.tsx ├── components-generalized │ └── MetadataList.tsx ├── components │ ├── CategorizedLabel.tsx │ ├── CommentIcon.tsx │ ├── DataDictionary.tsx │ ├── DetailDrawer.tsx │ ├── DetailDrawerRow.tsx │ ├── ExploreList.tsx │ ├── Extension.tsx │ ├── ExternalLink.tsx │ ├── FieldComment.tsx │ ├── FieldCommentDisplay.tsx │ ├── FieldCommentList.tsx │ ├── FieldMetadata.tsx │ ├── Fields.tsx │ ├── NoModelsAvailable.tsx │ ├── PanelFields.tsx │ ├── QueryChart.tsx │ ├── QueryChartButton.tsx │ ├── QuickSearch.tsx │ ├── SQLSnippet.tsx │ ├── Sidebar.tsx │ ├── SidebarToggle.tsx │ ├── Spirals.tsx │ ├── ViewOptions.tsx │ ├── interfaces.ts │ └── styles.css ├── index.tsx └── utils │ ├── __mocks__ │ └── fetchers.js │ ├── constants.ts │ ├── fetchers.ts │ ├── queries.ts │ ├── routes.ts │ └── urls.ts ├── tsconfig.json ├── webpack.config.js ├── webpack.develop.js ├── webpack.prod.js └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 14.17.4 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.16.3 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- 1 | @types/react-native 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/babel.config.js -------------------------------------------------------------------------------- /custom_typings/import-png.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/custom_typings/import-png.d.ts -------------------------------------------------------------------------------- /data-dictionary.model.lkml: -------------------------------------------------------------------------------- 1 | connection: "@{CONNECTION_NAME}" 2 | -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /dist/bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/dist/bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/dist/bundle.js.map -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/jest.config.js -------------------------------------------------------------------------------- /manifest.lkml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/manifest.lkml -------------------------------------------------------------------------------- /marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/marketplace.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/package.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /src/__mocks__/fileMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__mocks__/fileMock.js -------------------------------------------------------------------------------- /src/__mocks__/styleMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__mocks__/styleMock.js -------------------------------------------------------------------------------- /src/__tests__/MockData/MockData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/MockData/MockData.ts -------------------------------------------------------------------------------- /src/__tests__/comments.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/comments.spec.ts -------------------------------------------------------------------------------- /src/__tests__/components/CommentIcon.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/CommentIcon.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/DataDictionary.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/DataDictionary.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/DetailDrawer.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/DetailDrawer.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/DetailDrawerRow.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/DetailDrawerRow.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/ExploreList.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/ExploreList.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/ExternalLink.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/ExternalLink.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/FieldComment.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/FieldComment.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/FieldCommentDisplay.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/FieldCommentDisplay.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/FieldCommentList.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/FieldCommentList.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/FieldMetadata.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/FieldMetadata.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/Fields.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/Fields.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/PanelFields.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/PanelFields.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/SQLSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/SQLSnippet.tsx -------------------------------------------------------------------------------- /src/__tests__/components/Sidebar.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/Sidebar.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/SidebarToggle.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/SidebarToggle.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/components/ViewOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/ViewOptions.tsx -------------------------------------------------------------------------------- /src/__tests__/components/__snapshots__/DetailDrawer.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/__snapshots__/DetailDrawer.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/components/__snapshots__/DetailDrawerRow.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/__snapshots__/DetailDrawerRow.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/components/__snapshots__/ExploreList.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/__snapshots__/ExploreList.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/components/__snapshots__/ExternalLink.spec.tsx.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`renders correctly 1`] = `"Link"`; 4 | -------------------------------------------------------------------------------- /src/__tests__/components/__snapshots__/FieldCommentList.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/__snapshots__/FieldCommentList.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/components/__snapshots__/Fields.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/__snapshots__/Fields.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/components/__snapshots__/SQLSnippet.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/__snapshots__/SQLSnippet.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/components/__snapshots__/ViewOptions.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/components/__snapshots__/ViewOptions.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/test_utils/render_with_extension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/__tests__/test_utils/render_with_extension.tsx -------------------------------------------------------------------------------- /src/components-generalized/MetadataList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components-generalized/MetadataList.tsx -------------------------------------------------------------------------------- /src/components/CategorizedLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/CategorizedLabel.tsx -------------------------------------------------------------------------------- /src/components/CommentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/CommentIcon.tsx -------------------------------------------------------------------------------- /src/components/DataDictionary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/DataDictionary.tsx -------------------------------------------------------------------------------- /src/components/DetailDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/DetailDrawer.tsx -------------------------------------------------------------------------------- /src/components/DetailDrawerRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/DetailDrawerRow.tsx -------------------------------------------------------------------------------- /src/components/ExploreList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/ExploreList.tsx -------------------------------------------------------------------------------- /src/components/Extension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/Extension.tsx -------------------------------------------------------------------------------- /src/components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/ExternalLink.tsx -------------------------------------------------------------------------------- /src/components/FieldComment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/FieldComment.tsx -------------------------------------------------------------------------------- /src/components/FieldCommentDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/FieldCommentDisplay.tsx -------------------------------------------------------------------------------- /src/components/FieldCommentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/FieldCommentList.tsx -------------------------------------------------------------------------------- /src/components/FieldMetadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/FieldMetadata.tsx -------------------------------------------------------------------------------- /src/components/Fields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/Fields.tsx -------------------------------------------------------------------------------- /src/components/NoModelsAvailable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/NoModelsAvailable.tsx -------------------------------------------------------------------------------- /src/components/PanelFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/PanelFields.tsx -------------------------------------------------------------------------------- /src/components/QueryChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/QueryChart.tsx -------------------------------------------------------------------------------- /src/components/QueryChartButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/QueryChartButton.tsx -------------------------------------------------------------------------------- /src/components/QuickSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/QuickSearch.tsx -------------------------------------------------------------------------------- /src/components/SQLSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/SQLSnippet.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/SidebarToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/SidebarToggle.tsx -------------------------------------------------------------------------------- /src/components/Spirals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/Spirals.tsx -------------------------------------------------------------------------------- /src/components/ViewOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/ViewOptions.tsx -------------------------------------------------------------------------------- /src/components/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/interfaces.ts -------------------------------------------------------------------------------- /src/components/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/components/styles.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/utils/__mocks__/fetchers.js: -------------------------------------------------------------------------------- 1 | export function useAllModels() { 2 | return {} 3 | } 4 | -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/fetchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/utils/fetchers.ts -------------------------------------------------------------------------------- /src/utils/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/utils/queries.ts -------------------------------------------------------------------------------- /src/utils/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/utils/routes.ts -------------------------------------------------------------------------------- /src/utils/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/src/utils/urls.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.develop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/webpack.develop.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/webpack.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looker-open-source/app-data-dictionary/HEAD/yarn.lock --------------------------------------------------------------------------------