├── .DS_Store ├── .bitmap ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── .umirc.ts ├── LEGAL.md ├── LICENSE ├── README.md ├── package.json ├── public └── assets │ └── favicon.png ├── src ├── app.tsx ├── assets │ ├── icons │ │ ├── demo.css │ │ ├── demo_index.html │ │ ├── iconfont.css │ │ ├── iconfont.js │ │ ├── iconfont.json │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ └── node-icons │ │ ├── demo.css │ │ ├── demo_index.html │ │ ├── iconfont.css │ │ ├── iconfont.js │ │ ├── iconfont.json │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 ├── components │ ├── color-picker │ │ ├── constant │ │ │ └── index.ts │ │ ├── index.less │ │ └── index.tsx │ ├── console-menu │ │ ├── index.less │ │ └── index.tsx │ ├── console │ │ ├── auth-manager │ │ │ ├── account-manager │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── edit-role │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── edit-user │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── index.module.less │ │ │ ├── index.tsx │ │ │ └── role-manager │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ ├── constant │ │ │ └── index.ts │ │ ├── database-info │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── hooks │ │ │ ├── useDataInfo.ts │ │ │ ├── useGraph.ts │ │ │ ├── useRole.ts │ │ │ └── useUser.ts │ │ ├── index.ts │ │ ├── interface │ │ │ ├── role.ts │ │ │ └── user.ts │ │ ├── mock.ts │ │ └── utils │ │ │ ├── localStorage.ts │ │ │ ├── query.ts │ │ │ ├── request.tsx │ │ │ └── timeFormatter.ts │ ├── custom-color-picker │ │ ├── index.less │ │ └── index.tsx │ ├── guidance │ │ ├── assets │ │ │ └── index.ts │ │ ├── download.tsx │ │ ├── end.tsx │ │ ├── filter.tsx │ │ ├── index.module.less │ │ ├── index.tsx │ │ ├── query.tsx │ │ ├── spread.tsx │ │ ├── style.tsx │ │ ├── types.ts │ │ └── welcome.tsx │ ├── icon-font │ │ ├── index.less │ │ └── index.tsx │ ├── icon-loader │ │ └── index.ts │ ├── icon-picker │ │ ├── constant │ │ │ ├── defaultClassIcons.ts │ │ │ └── index.ts │ │ ├── index.less │ │ └── index.tsx │ └── studio │ │ ├── components │ │ ├── async-table │ │ │ └── index.tsx │ │ ├── auth-item │ │ │ └── index.tsx │ │ ├── collapsable-steps │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── demo-card │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── edit-password │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── edit-table │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── garph-canvas │ │ │ └── index.tsx │ │ ├── graph-canvas-layout │ │ │ ├── constant │ │ │ │ └── index.ts │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── graph-canvas-tools │ │ │ ├── components │ │ │ │ ├── auto-zoom.tsx │ │ │ │ ├── real-zoom.tsx │ │ │ │ ├── zoom-in.tsx │ │ │ │ └── zoom-out.tsx │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── icon-font │ │ │ └── index.tsx │ │ ├── icon-item │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── search-input │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── split-panle │ │ │ └── index.tsx │ │ ├── switch-drawer │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── text-tabs │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ └── tooltip-text │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── constant │ │ ├── demo-json │ │ │ └── schema-demo.json │ │ └── index.tsx │ │ ├── domain-core │ │ ├── graph-construct │ │ │ ├── add-nodes-edges │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── edit-nodes-edges │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── file-uploader │ │ │ │ └── index.tsx │ │ │ ├── import-data-config │ │ │ │ ├── data-map.tsx │ │ │ │ ├── data-mapping.tsx │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── import-data-result │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── import-data │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── index.module.less │ │ │ ├── index.tsx │ │ │ └── nodes-edges-list │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ ├── graph-query │ │ │ ├── components │ │ │ │ ├── excecute-result-panle │ │ │ │ │ ├── index.module.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── excecute-result │ │ │ │ │ ├── index.module.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── model-overview │ │ │ │ │ ├── components │ │ │ │ │ │ ├── edge-node-list │ │ │ │ │ │ │ ├── index.module.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── graph-canvas-mini │ │ │ │ │ │ │ ├── index.module.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.module.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── node-query │ │ │ │ │ ├── index.module.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── path-query │ │ │ │ │ ├── index.module.less │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── path-modal │ │ │ │ │ │ ├── index.module.less │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── statement-query-list │ │ │ │ │ ├── index.module.less │ │ │ │ │ └── index.tsx │ │ │ │ └── stored-procedure │ │ │ │ │ ├── index.module.less │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── stored-checkout │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── stored-download │ │ │ │ │ ├── index.module.less │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── stored-khop-panle │ │ │ │ │ ├── index.module.less │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── stored-list │ │ │ │ │ ├── index.module.less │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── stored-form │ │ │ │ │ │ ├── index.module.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── stored-result │ │ │ │ │ ├── index.module.less │ │ │ │ │ └── index.tsx │ │ │ ├── constant │ │ │ │ └── index.tsx │ │ │ ├── cypherEditor.less │ │ │ ├── cypherEditor.tsx │ │ │ ├── index.module.less │ │ │ ├── index.tsx │ │ │ ├── interface │ │ │ │ └── excecute.ts │ │ │ └── utils │ │ │ │ ├── editEdgeParamsTransform.ts │ │ │ │ └── getConnectOptions.ts │ │ └── project │ │ │ └── project-list │ │ │ ├── components │ │ │ ├── add-tugraph │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── edit-form │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── edit-tugraph │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── empty-project │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ └── project-card │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ └── translator │ │ │ └── index.tsx │ │ ├── graph-list │ │ ├── index.module.less │ │ └── index.tsx │ │ ├── hooks │ │ ├── useGraph.ts │ │ ├── useGraphData.ts │ │ ├── useImport.ts │ │ ├── useProcedure.ts │ │ ├── useQuery.ts │ │ ├── useSchema.ts │ │ └── useVisible.ts │ │ ├── index.md │ │ ├── index.ts │ │ ├── interface │ │ ├── graph.ts │ │ ├── graphData.ts │ │ ├── import.ts │ │ ├── procedure.ts │ │ ├── query.ts │ │ └── schema.ts │ │ ├── login │ │ ├── index.module.less │ │ ├── index.tsx │ │ └── particles-config.ts │ │ ├── mock.ts │ │ ├── services │ │ ├── ProcedureController.ts │ │ └── SchemaController.ts │ │ ├── styles │ │ └── mixin.less │ │ ├── user-center │ │ ├── index.module.less │ │ └── index.tsx │ │ └── utils │ │ ├── bigNumberTransform.ts │ │ ├── dataImportTransform.ts │ │ ├── downloadFile.ts │ │ ├── getDefaultDemoList.ts │ │ ├── getFileSizeTransform.ts │ │ ├── getZhPeriod.ts │ │ ├── graphTranslator.ts │ │ ├── index.ts │ │ ├── localStorage.ts │ │ ├── nodesEdgesListTranslator.ts │ │ ├── objectOper.ts │ │ ├── parseCsv.ts │ │ ├── processEdges.ts │ │ ├── request.tsx │ │ ├── routeParams.ts │ │ ├── schemaTransform.ts │ │ ├── uploadFile.ts │ │ └── url.ts ├── constants │ ├── demo_data │ │ ├── TheThreeBody │ │ │ ├── import.json │ │ │ ├── organization-organization-relationship.csv │ │ │ ├── organization-plan-relationship.csv │ │ │ ├── organizes.csv │ │ │ ├── person-organization-relationship.csv │ │ │ ├── person-person-relationship.csv │ │ │ ├── person-plan-relationship.csv │ │ │ ├── persons.csv │ │ │ ├── plans.csv │ │ │ ├── timeRelationship.csv │ │ │ └── timeline.csv │ │ ├── ThreeKingdoms │ │ │ ├── battle.csv │ │ │ ├── civil-servant.csv │ │ │ ├── civilServant_to_lord.csv │ │ │ ├── civilServant_to_state.csv │ │ │ ├── general.csv │ │ │ ├── general_father_lord.csv │ │ │ ├── general_to_battle.csv │ │ │ ├── general_to_lord.csv │ │ │ ├── general_to_state.csv │ │ │ ├── import.json │ │ │ ├── lord.csv │ │ │ ├── lord_brother_lord.csv │ │ │ ├── lord_father_lord.csv │ │ │ ├── lord_to_battle.csv │ │ │ ├── lord_to_lord.csv │ │ │ ├── lord_to_state.csv │ │ │ └── state.csv │ │ ├── WanderingEarth │ │ │ ├── celestialFsacilities.csv │ │ │ ├── event_celestialFacilities.csv │ │ │ ├── event_organization_celestialFacilities.csv │ │ │ ├── event_organization_role.csv │ │ │ ├── event_role_celestialFacility.csv │ │ │ ├── event_role_organization.csv │ │ │ ├── event_role_role.csv │ │ │ ├── import.json │ │ │ ├── organizations.csv │ │ │ ├── relationship_role_celestialFacility.csv │ │ │ ├── relationship_role_organization.csv │ │ │ ├── relationship_role_role.csv │ │ │ └── roles.csv │ │ └── movie │ │ │ ├── edge_acted_in.csv │ │ │ ├── edge_directed.csv │ │ │ ├── edge_has_genre.csv │ │ │ ├── edge_has_keyword.csv │ │ │ ├── edge_is_friend.csv │ │ │ ├── edge_produce.csv │ │ │ ├── edge_rate.csv │ │ │ ├── edge_write.csv │ │ │ ├── import.json │ │ │ ├── vertex_genre.csv │ │ │ ├── vertex_keyword.csv │ │ │ ├── vertex_movie.csv │ │ │ ├── vertex_person.csv │ │ │ └── vertex_user.csv │ └── index.ts ├── domains-core │ └── graph-analysis │ │ └── graph-schema │ │ ├── components │ │ ├── array-tabs │ │ │ └── index.tsx │ │ ├── attibutes-filter │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── attributes-filter-form │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── canvas-container │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── canvas-legend-pie-chart │ │ │ └── index.tsx │ │ ├── canvas-legend │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── canvas-sider │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── canvas-toolbar-segmented │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── config-query │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── context-menu │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── download-canvas │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── drawer-handler │ │ │ └── index.tsx │ │ ├── element-info │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── filter-segmented │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── graph-canvas │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── graph-filter │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── graph-json-view │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── graph-style-setting │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── graph-table-view │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── language-query │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── lasso-select │ │ │ └── index.tsx │ │ ├── layout-form-slider │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── layout-form-xy-input │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── layout-form │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── layout-style-segmented │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── page-back-arrow │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── page-layout-segmented │ │ │ └── index.tsx │ │ ├── page-title │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── path-chart │ │ │ └── index.tsx │ │ ├── path-query │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── query-filter-segmented │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── query-segmented │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── schema-field │ │ │ └── index.tsx │ │ ├── statistics-filter-attribute-select │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── statistics-filter-column-chart │ │ │ └── index.tsx │ │ ├── statistics-filter-form │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── statistics-filter-histogram-chart │ │ │ └── index.tsx │ │ ├── statistics-filter-line-chart │ │ │ └── index.tsx │ │ ├── statistics-filter-pie-chart │ │ │ └── index.tsx │ │ ├── statistics-filter-world-cloud-chart │ │ │ └── index.tsx │ │ ├── statistics-filter │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── view-select │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── zoom-in-out │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── constants │ │ ├── action-bar.ts │ │ ├── config-center.ts │ │ ├── graph-style.ts │ │ ├── index.ts │ │ ├── layout.tsx │ │ └── schema.ts │ │ ├── contexts │ │ └── index.ts │ │ ├── hooks │ │ ├── use-schema-form-value │ │ │ └── index.ts │ │ └── use-schema-tab-container │ │ │ └── index.ts │ │ ├── interfaces │ │ └── index.ts │ │ ├── registers │ │ ├── breathing-node │ │ │ └── index.ts │ │ └── cluster-dagre-layout │ │ │ └── index.ts │ │ ├── root │ │ └── index.ts │ │ ├── translators │ │ ├── env-graph-language-translator │ │ │ └── index.ts │ │ ├── graph-schema-translator │ │ │ └── index.ts │ │ └── properties-translator │ │ │ └── index.ts │ │ └── utils │ │ ├── download-json │ │ └── index.ts │ │ ├── download-png │ │ └── index.tsx │ │ ├── filter-by-property-condition │ │ └── index.ts │ │ ├── filter-by-top-rule │ │ └── index.ts │ │ ├── filter-element-by-property-value │ │ └── index.ts │ │ ├── filter-graph-data-by-value │ │ └── index.ts │ │ ├── filter-graph-data │ │ └── index.ts │ │ ├── generate-edge-type-map │ │ └── index.ts │ │ ├── get-chart-data │ │ └── index.ts │ │ ├── get-engine-type-by-env │ │ └── index.ts │ │ ├── get-filtered-element-style │ │ └── index.ts │ │ ├── get-histogram-data │ │ └── index.ts │ │ ├── get-label-text-by-style-config │ │ └── index.ts │ │ ├── get-node-icon-by-style-config │ │ └── index.ts │ │ ├── get-node-size-by-style-config │ │ └── index.ts │ │ ├── get-operator-list-by-value-type │ │ └── index.ts │ │ ├── get-property-value-ranks │ │ └── index.ts │ │ ├── get-schema-by-env │ │ └── index.ts │ │ ├── get-styled-graph-data │ │ └── index.ts │ │ ├── get-styles-from-schema │ │ └── index.ts │ │ ├── graph-data-2-property-graph │ │ └── index.ts │ │ ├── group-and-count-nodes-by-label │ │ └── index.ts │ │ ├── hex-to-rgba │ │ └── index.ts │ │ ├── highlight-sub-graph │ │ └── index.ts │ │ ├── merge-graph-data │ │ └── index.ts │ │ ├── pie-chart-edges-translator │ │ └── index.ts │ │ ├── reset-graph-active-status │ │ └── index.ts │ │ ├── resize-canvas │ │ └── index.ts │ │ ├── set-graph-active-status │ │ └── index.ts │ │ ├── unique-elements-by │ │ └── index.ts │ │ └── update-graph-style-options │ │ └── index.ts ├── hooks │ └── useAnalysis.ts ├── layouts │ ├── index.less │ ├── index.tsx │ └── nav.tsx ├── pages │ ├── console.tsx │ ├── construct.tsx │ ├── graph-schema │ │ ├── index.less │ │ └── index.tsx │ ├── index.tsx │ ├── login.tsx │ ├── query.tsx │ ├── resetPassword.less │ ├── resetPassword.tsx │ └── studio.tsx ├── queries │ ├── analysis.ts │ ├── data.ts │ ├── graph.ts │ ├── info.ts │ ├── procedure.ts │ ├── query.ts │ ├── schema.ts │ └── security.ts ├── services │ ├── analysisi.ts │ ├── data.ts │ ├── info.ts │ ├── procedure.ts │ ├── query.ts │ ├── request.ts │ └── schema │ │ ├── IndexSchema.ts │ │ ├── index.ts │ │ ├── label.ts │ │ └── schema.ts ├── translator │ ├── graph-data-tanslator │ │ └── index.ts │ └── index.ts ├── types │ ├── services │ │ └── index.ts │ ├── studio │ │ └── procedure.ts │ └── typings.d.ts └── utils │ ├── common.ts │ ├── filterTitleEllipsis.ts │ ├── getEditorTotalCountByLineNumber.ts │ ├── getId.ts │ ├── history.ts │ ├── index.ts │ ├── originUtils.ts │ ├── parseHash.ts │ ├── parseSearch.ts │ ├── query.ts │ ├── safeParseJSON.ts │ ├── schema.ts │ └── transformHexToRgb.ts ├── tsconfig.json └── workspace.jsonc /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/.DS_Store -------------------------------------------------------------------------------- /.bitmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/.bitmap -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.umirc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/.umirc.ts -------------------------------------------------------------------------------- /LEGAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/LEGAL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/public/assets/favicon.png -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/assets/icons/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/icons/demo.css -------------------------------------------------------------------------------- /src/assets/icons/demo_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/icons/demo_index.html -------------------------------------------------------------------------------- /src/assets/icons/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/icons/iconfont.css -------------------------------------------------------------------------------- /src/assets/icons/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/icons/iconfont.js -------------------------------------------------------------------------------- /src/assets/icons/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/icons/iconfont.json -------------------------------------------------------------------------------- /src/assets/icons/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/icons/iconfont.ttf -------------------------------------------------------------------------------- /src/assets/icons/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/icons/iconfont.woff -------------------------------------------------------------------------------- /src/assets/icons/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/icons/iconfont.woff2 -------------------------------------------------------------------------------- /src/assets/node-icons/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/node-icons/demo.css -------------------------------------------------------------------------------- /src/assets/node-icons/demo_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/node-icons/demo_index.html -------------------------------------------------------------------------------- /src/assets/node-icons/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/node-icons/iconfont.css -------------------------------------------------------------------------------- /src/assets/node-icons/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/node-icons/iconfont.js -------------------------------------------------------------------------------- /src/assets/node-icons/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/node-icons/iconfont.json -------------------------------------------------------------------------------- /src/assets/node-icons/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/node-icons/iconfont.ttf -------------------------------------------------------------------------------- /src/assets/node-icons/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/node-icons/iconfont.woff -------------------------------------------------------------------------------- /src/assets/node-icons/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/assets/node-icons/iconfont.woff2 -------------------------------------------------------------------------------- /src/components/color-picker/constant/index.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_NODE_ACTIVE_COLOR = '#1890ff'; 2 | -------------------------------------------------------------------------------- /src/components/color-picker/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/color-picker/index.less -------------------------------------------------------------------------------- /src/components/color-picker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/color-picker/index.tsx -------------------------------------------------------------------------------- /src/components/console-menu/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console-menu/index.less -------------------------------------------------------------------------------- /src/components/console-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console-menu/index.tsx -------------------------------------------------------------------------------- /src/components/console/auth-manager/account-manager/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/auth-manager/account-manager/index.module.less -------------------------------------------------------------------------------- /src/components/console/auth-manager/account-manager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/auth-manager/account-manager/index.tsx -------------------------------------------------------------------------------- /src/components/console/auth-manager/edit-role/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/auth-manager/edit-role/index.module.less -------------------------------------------------------------------------------- /src/components/console/auth-manager/edit-role/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/auth-manager/edit-role/index.tsx -------------------------------------------------------------------------------- /src/components/console/auth-manager/edit-user/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/auth-manager/edit-user/index.module.less -------------------------------------------------------------------------------- /src/components/console/auth-manager/edit-user/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/auth-manager/edit-user/index.tsx -------------------------------------------------------------------------------- /src/components/console/auth-manager/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/auth-manager/index.module.less -------------------------------------------------------------------------------- /src/components/console/auth-manager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/auth-manager/index.tsx -------------------------------------------------------------------------------- /src/components/console/auth-manager/role-manager/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/auth-manager/role-manager/index.module.less -------------------------------------------------------------------------------- /src/components/console/auth-manager/role-manager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/auth-manager/role-manager/index.tsx -------------------------------------------------------------------------------- /src/components/console/constant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/constant/index.ts -------------------------------------------------------------------------------- /src/components/console/database-info/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/database-info/index.module.less -------------------------------------------------------------------------------- /src/components/console/database-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/database-info/index.tsx -------------------------------------------------------------------------------- /src/components/console/hooks/useDataInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/hooks/useDataInfo.ts -------------------------------------------------------------------------------- /src/components/console/hooks/useGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/hooks/useGraph.ts -------------------------------------------------------------------------------- /src/components/console/hooks/useRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/hooks/useRole.ts -------------------------------------------------------------------------------- /src/components/console/hooks/useUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/hooks/useUser.ts -------------------------------------------------------------------------------- /src/components/console/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/index.ts -------------------------------------------------------------------------------- /src/components/console/interface/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/interface/role.ts -------------------------------------------------------------------------------- /src/components/console/interface/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/interface/user.ts -------------------------------------------------------------------------------- /src/components/console/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/mock.ts -------------------------------------------------------------------------------- /src/components/console/utils/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/utils/localStorage.ts -------------------------------------------------------------------------------- /src/components/console/utils/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/utils/query.ts -------------------------------------------------------------------------------- /src/components/console/utils/request.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/utils/request.tsx -------------------------------------------------------------------------------- /src/components/console/utils/timeFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/console/utils/timeFormatter.ts -------------------------------------------------------------------------------- /src/components/custom-color-picker/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/custom-color-picker/index.less -------------------------------------------------------------------------------- /src/components/custom-color-picker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/custom-color-picker/index.tsx -------------------------------------------------------------------------------- /src/components/guidance/assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/guidance/assets/index.ts -------------------------------------------------------------------------------- /src/components/guidance/download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/guidance/download.tsx -------------------------------------------------------------------------------- /src/components/guidance/end.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/guidance/end.tsx -------------------------------------------------------------------------------- /src/components/guidance/filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/guidance/filter.tsx -------------------------------------------------------------------------------- /src/components/guidance/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/guidance/index.module.less -------------------------------------------------------------------------------- /src/components/guidance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/guidance/index.tsx -------------------------------------------------------------------------------- /src/components/guidance/query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/guidance/query.tsx -------------------------------------------------------------------------------- /src/components/guidance/spread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/guidance/spread.tsx -------------------------------------------------------------------------------- /src/components/guidance/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/guidance/style.tsx -------------------------------------------------------------------------------- /src/components/guidance/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/guidance/types.ts -------------------------------------------------------------------------------- /src/components/guidance/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/guidance/welcome.tsx -------------------------------------------------------------------------------- /src/components/icon-font/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/icon-font/index.less -------------------------------------------------------------------------------- /src/components/icon-font/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/icon-font/index.tsx -------------------------------------------------------------------------------- /src/components/icon-loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/icon-loader/index.ts -------------------------------------------------------------------------------- /src/components/icon-picker/constant/defaultClassIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/icon-picker/constant/defaultClassIcons.ts -------------------------------------------------------------------------------- /src/components/icon-picker/constant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/icon-picker/constant/index.ts -------------------------------------------------------------------------------- /src/components/icon-picker/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/icon-picker/index.less -------------------------------------------------------------------------------- /src/components/icon-picker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/icon-picker/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/async-table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/async-table/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/auth-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/auth-item/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/collapsable-steps/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/collapsable-steps/index.module.less -------------------------------------------------------------------------------- /src/components/studio/components/collapsable-steps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/collapsable-steps/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/demo-card/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/demo-card/index.module.less -------------------------------------------------------------------------------- /src/components/studio/components/demo-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/demo-card/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/edit-password/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/edit-password/index.module.less -------------------------------------------------------------------------------- /src/components/studio/components/edit-password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/edit-password/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/edit-table/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/edit-table/index.module.less -------------------------------------------------------------------------------- /src/components/studio/components/edit-table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/edit-table/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/garph-canvas/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/garph-canvas/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/graph-canvas-layout/constant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/graph-canvas-layout/constant/index.ts -------------------------------------------------------------------------------- /src/components/studio/components/graph-canvas-layout/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/graph-canvas-layout/index.module.less -------------------------------------------------------------------------------- /src/components/studio/components/graph-canvas-layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/graph-canvas-layout/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/graph-canvas-tools/components/auto-zoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/graph-canvas-tools/components/auto-zoom.tsx -------------------------------------------------------------------------------- /src/components/studio/components/graph-canvas-tools/components/real-zoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/graph-canvas-tools/components/real-zoom.tsx -------------------------------------------------------------------------------- /src/components/studio/components/graph-canvas-tools/components/zoom-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/graph-canvas-tools/components/zoom-in.tsx -------------------------------------------------------------------------------- /src/components/studio/components/graph-canvas-tools/components/zoom-out.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/graph-canvas-tools/components/zoom-out.tsx -------------------------------------------------------------------------------- /src/components/studio/components/graph-canvas-tools/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/graph-canvas-tools/index.module.less -------------------------------------------------------------------------------- /src/components/studio/components/graph-canvas-tools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/graph-canvas-tools/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/icon-font/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/icon-font/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/icon-item/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/icon-item/index.module.less -------------------------------------------------------------------------------- /src/components/studio/components/icon-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/icon-item/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/search-input/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/search-input/index.module.less -------------------------------------------------------------------------------- /src/components/studio/components/search-input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/search-input/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/split-panle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/split-panle/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/switch-drawer/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/switch-drawer/index.module.less -------------------------------------------------------------------------------- /src/components/studio/components/switch-drawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/switch-drawer/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/text-tabs/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/text-tabs/index.module.less -------------------------------------------------------------------------------- /src/components/studio/components/text-tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/text-tabs/index.tsx -------------------------------------------------------------------------------- /src/components/studio/components/tooltip-text/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/tooltip-text/index.module.less -------------------------------------------------------------------------------- /src/components/studio/components/tooltip-text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/components/tooltip-text/index.tsx -------------------------------------------------------------------------------- /src/components/studio/constant/demo-json/schema-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/constant/demo-json/schema-demo.json -------------------------------------------------------------------------------- /src/components/studio/constant/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/constant/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/add-nodes-edges/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/add-nodes-edges/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/add-nodes-edges/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/add-nodes-edges/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/edit-nodes-edges/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/edit-nodes-edges/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/edit-nodes-edges/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/edit-nodes-edges/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/file-uploader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/file-uploader/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/import-data-config/data-map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/import-data-config/data-map.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/import-data-config/data-mapping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/import-data-config/data-mapping.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/import-data-config/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/import-data-config/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/import-data-config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/import-data-config/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/import-data-result/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/import-data-result/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/import-data-result/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/import-data-result/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/import-data/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/import-data/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/import-data/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/import-data/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/nodes-edges-list/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/nodes-edges-list/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-construct/nodes-edges-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-construct/nodes-edges-list/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/excecute-result-panle/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/excecute-result-panle/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/excecute-result-panle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/excecute-result-panle/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/excecute-result/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/excecute-result/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/excecute-result/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/excecute-result/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/model-overview/components/edge-node-list/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/model-overview/components/edge-node-list/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/model-overview/components/edge-node-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/model-overview/components/edge-node-list/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/model-overview/components/graph-canvas-mini/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/model-overview/components/graph-canvas-mini/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/model-overview/components/graph-canvas-mini/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/model-overview/components/graph-canvas-mini/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/model-overview/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/model-overview/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/model-overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/model-overview/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/node-query/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/node-query/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/node-query/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/node-query/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/path-query/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/path-query/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/path-query/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/path-query/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/path-query/path-modal/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/path-query/path-modal/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/path-query/path-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/path-query/path-modal/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/statement-query-list/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/statement-query-list/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/statement-query-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/statement-query-list/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/stored-checkout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/stored-checkout/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/stored-download/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/stored-download/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/stored-download/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/stored-download/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/stored-khop-panle/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/stored-khop-panle/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/stored-khop-panle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/stored-khop-panle/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/stored-list/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/stored-list/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/stored-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/stored-list/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/stored-list/stored-form/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/stored-list/stored-form/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/stored-list/stored-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/stored-list/stored-form/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/stored-result/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/stored-result/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/components/stored-procedure/stored-result/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/components/stored-procedure/stored-result/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/constant/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/constant/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/cypherEditor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/cypherEditor.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/cypherEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/cypherEditor.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/interface/excecute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/interface/excecute.ts -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/utils/editEdgeParamsTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/utils/editEdgeParamsTransform.ts -------------------------------------------------------------------------------- /src/components/studio/domain-core/graph-query/utils/getConnectOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/graph-query/utils/getConnectOptions.ts -------------------------------------------------------------------------------- /src/components/studio/domain-core/project/project-list/components/add-tugraph/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/project/project-list/components/add-tugraph/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/project/project-list/components/add-tugraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/project/project-list/components/add-tugraph/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/project/project-list/components/edit-form/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/project/project-list/components/edit-form/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/project/project-list/components/edit-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/project/project-list/components/edit-form/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/project/project-list/components/edit-tugraph/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/project/project-list/components/edit-tugraph/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/project/project-list/components/edit-tugraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/project/project-list/components/edit-tugraph/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/project/project-list/components/empty-project/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/project/project-list/components/empty-project/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/project/project-list/components/empty-project/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/project/project-list/components/empty-project/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/project/project-list/components/project-card/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/project/project-list/components/project-card/index.module.less -------------------------------------------------------------------------------- /src/components/studio/domain-core/project/project-list/components/project-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/project/project-list/components/project-card/index.tsx -------------------------------------------------------------------------------- /src/components/studio/domain-core/project/project-list/translator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/domain-core/project/project-list/translator/index.tsx -------------------------------------------------------------------------------- /src/components/studio/graph-list/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/graph-list/index.module.less -------------------------------------------------------------------------------- /src/components/studio/graph-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/graph-list/index.tsx -------------------------------------------------------------------------------- /src/components/studio/hooks/useGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/hooks/useGraph.ts -------------------------------------------------------------------------------- /src/components/studio/hooks/useGraphData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/hooks/useGraphData.ts -------------------------------------------------------------------------------- /src/components/studio/hooks/useImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/hooks/useImport.ts -------------------------------------------------------------------------------- /src/components/studio/hooks/useProcedure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/hooks/useProcedure.ts -------------------------------------------------------------------------------- /src/components/studio/hooks/useQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/hooks/useQuery.ts -------------------------------------------------------------------------------- /src/components/studio/hooks/useSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/hooks/useSchema.ts -------------------------------------------------------------------------------- /src/components/studio/hooks/useVisible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/hooks/useVisible.ts -------------------------------------------------------------------------------- /src/components/studio/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/index.md -------------------------------------------------------------------------------- /src/components/studio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/index.ts -------------------------------------------------------------------------------- /src/components/studio/interface/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/interface/graph.ts -------------------------------------------------------------------------------- /src/components/studio/interface/graphData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/interface/graphData.ts -------------------------------------------------------------------------------- /src/components/studio/interface/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/interface/import.ts -------------------------------------------------------------------------------- /src/components/studio/interface/procedure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/interface/procedure.ts -------------------------------------------------------------------------------- /src/components/studio/interface/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/interface/query.ts -------------------------------------------------------------------------------- /src/components/studio/interface/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/interface/schema.ts -------------------------------------------------------------------------------- /src/components/studio/login/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/login/index.module.less -------------------------------------------------------------------------------- /src/components/studio/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/login/index.tsx -------------------------------------------------------------------------------- /src/components/studio/login/particles-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/login/particles-config.ts -------------------------------------------------------------------------------- /src/components/studio/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/mock.ts -------------------------------------------------------------------------------- /src/components/studio/services/ProcedureController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/services/ProcedureController.ts -------------------------------------------------------------------------------- /src/components/studio/services/SchemaController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/services/SchemaController.ts -------------------------------------------------------------------------------- /src/components/studio/styles/mixin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/styles/mixin.less -------------------------------------------------------------------------------- /src/components/studio/user-center/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/user-center/index.module.less -------------------------------------------------------------------------------- /src/components/studio/user-center/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/user-center/index.tsx -------------------------------------------------------------------------------- /src/components/studio/utils/bigNumberTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/bigNumberTransform.ts -------------------------------------------------------------------------------- /src/components/studio/utils/dataImportTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/dataImportTransform.ts -------------------------------------------------------------------------------- /src/components/studio/utils/downloadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/downloadFile.ts -------------------------------------------------------------------------------- /src/components/studio/utils/getDefaultDemoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/getDefaultDemoList.ts -------------------------------------------------------------------------------- /src/components/studio/utils/getFileSizeTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/getFileSizeTransform.ts -------------------------------------------------------------------------------- /src/components/studio/utils/getZhPeriod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/getZhPeriod.ts -------------------------------------------------------------------------------- /src/components/studio/utils/graphTranslator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/graphTranslator.ts -------------------------------------------------------------------------------- /src/components/studio/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/index.ts -------------------------------------------------------------------------------- /src/components/studio/utils/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/localStorage.ts -------------------------------------------------------------------------------- /src/components/studio/utils/nodesEdgesListTranslator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/nodesEdgesListTranslator.ts -------------------------------------------------------------------------------- /src/components/studio/utils/objectOper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/objectOper.ts -------------------------------------------------------------------------------- /src/components/studio/utils/parseCsv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/parseCsv.ts -------------------------------------------------------------------------------- /src/components/studio/utils/processEdges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/processEdges.ts -------------------------------------------------------------------------------- /src/components/studio/utils/request.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/request.tsx -------------------------------------------------------------------------------- /src/components/studio/utils/routeParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/routeParams.ts -------------------------------------------------------------------------------- /src/components/studio/utils/schemaTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/schemaTransform.ts -------------------------------------------------------------------------------- /src/components/studio/utils/uploadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/uploadFile.ts -------------------------------------------------------------------------------- /src/components/studio/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/components/studio/utils/url.ts -------------------------------------------------------------------------------- /src/constants/demo_data/TheThreeBody/import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/TheThreeBody/import.json -------------------------------------------------------------------------------- /src/constants/demo_data/TheThreeBody/organization-organization-relationship.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/TheThreeBody/organization-organization-relationship.csv -------------------------------------------------------------------------------- /src/constants/demo_data/TheThreeBody/organization-plan-relationship.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/TheThreeBody/organization-plan-relationship.csv -------------------------------------------------------------------------------- /src/constants/demo_data/TheThreeBody/organizes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/TheThreeBody/organizes.csv -------------------------------------------------------------------------------- /src/constants/demo_data/TheThreeBody/person-organization-relationship.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/TheThreeBody/person-organization-relationship.csv -------------------------------------------------------------------------------- /src/constants/demo_data/TheThreeBody/person-person-relationship.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/TheThreeBody/person-person-relationship.csv -------------------------------------------------------------------------------- /src/constants/demo_data/TheThreeBody/person-plan-relationship.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/TheThreeBody/person-plan-relationship.csv -------------------------------------------------------------------------------- /src/constants/demo_data/TheThreeBody/persons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/TheThreeBody/persons.csv -------------------------------------------------------------------------------- /src/constants/demo_data/TheThreeBody/plans.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/TheThreeBody/plans.csv -------------------------------------------------------------------------------- /src/constants/demo_data/TheThreeBody/timeRelationship.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/TheThreeBody/timeRelationship.csv -------------------------------------------------------------------------------- /src/constants/demo_data/TheThreeBody/timeline.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/TheThreeBody/timeline.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/battle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/battle.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/civil-servant.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/civil-servant.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/civilServant_to_lord.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/civilServant_to_lord.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/civilServant_to_state.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/civilServant_to_state.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/general.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/general.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/general_father_lord.csv: -------------------------------------------------------------------------------- 1 | son,father 2 | 马超,马腾 -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/general_to_battle.csv: -------------------------------------------------------------------------------- 1 | name,war 2 | 张绣,宛城之战 -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/general_to_lord.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/general_to_lord.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/general_to_state.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/general_to_state.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/import.json -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/lord.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/lord.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/lord_brother_lord.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/lord_brother_lord.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/lord_father_lord.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/lord_father_lord.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/lord_to_battle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/lord_to_battle.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/lord_to_lord.csv: -------------------------------------------------------------------------------- 1 | slaver,master 2 | 司马懿,曹操 -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/lord_to_state.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/lord_to_state.csv -------------------------------------------------------------------------------- /src/constants/demo_data/ThreeKingdoms/state.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/ThreeKingdoms/state.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/celestialFsacilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/celestialFsacilities.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/event_celestialFacilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/event_celestialFacilities.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/event_organization_celestialFacilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/event_organization_celestialFacilities.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/event_organization_role.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/event_organization_role.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/event_role_celestialFacility.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/event_role_celestialFacility.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/event_role_organization.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/event_role_organization.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/event_role_role.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/event_role_role.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/import.json -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/organizations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/organizations.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/relationship_role_celestialFacility.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/relationship_role_celestialFacility.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/relationship_role_organization.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/relationship_role_organization.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/relationship_role_role.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/relationship_role_role.csv -------------------------------------------------------------------------------- /src/constants/demo_data/WanderingEarth/roles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/WanderingEarth/roles.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/edge_acted_in.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/edge_acted_in.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/edge_directed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/edge_directed.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/edge_has_genre.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/edge_has_genre.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/edge_has_keyword.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/edge_has_keyword.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/edge_is_friend.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/edge_is_friend.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/edge_produce.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/edge_produce.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/edge_rate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/edge_rate.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/edge_write.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/edge_write.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/import.json -------------------------------------------------------------------------------- /src/constants/demo_data/movie/vertex_genre.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/vertex_genre.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/vertex_keyword.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/vertex_keyword.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/vertex_movie.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/vertex_movie.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/vertex_person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/vertex_person.csv -------------------------------------------------------------------------------- /src/constants/demo_data/movie/vertex_user.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/demo_data/movie/vertex_user.csv -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/array-tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/array-tabs/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/attibutes-filter/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/attibutes-filter/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/attibutes-filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/attibutes-filter/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/attributes-filter-form/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/attributes-filter-form/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/attributes-filter-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/attributes-filter-form/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/canvas-container/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/canvas-container/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/canvas-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/canvas-container/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/canvas-legend-pie-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/canvas-legend-pie-chart/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/canvas-legend/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/canvas-legend/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/canvas-legend/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/canvas-legend/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/canvas-sider/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/canvas-sider/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/canvas-sider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/canvas-sider/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/canvas-toolbar-segmented/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/canvas-toolbar-segmented/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/canvas-toolbar-segmented/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/canvas-toolbar-segmented/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/config-query/index.less: -------------------------------------------------------------------------------- 1 | .config-query { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/config-query/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/config-query/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/context-menu/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/context-menu/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/context-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/context-menu/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/download-canvas/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/download-canvas/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/download-canvas/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/download-canvas/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/drawer-handler/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/drawer-handler/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/element-info/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/element-info/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/element-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/element-info/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/filter-segmented/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/filter-segmented/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/filter-segmented/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/filter-segmented/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/graph-canvas/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/graph-canvas/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/graph-canvas/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/graph-canvas/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/graph-filter/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/graph-filter/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/graph-filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/graph-filter/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/graph-json-view/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/graph-json-view/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/graph-json-view/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/graph-json-view/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/graph-style-setting/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/graph-style-setting/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/graph-style-setting/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/graph-style-setting/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/graph-table-view/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/graph-table-view/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/graph-table-view/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/graph-table-view/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/language-query/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/language-query/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/language-query/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/language-query/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/lasso-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/lasso-select/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/layout-form-slider/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/layout-form-slider/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/layout-form-slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/layout-form-slider/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/layout-form-xy-input/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/layout-form-xy-input/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/layout-form-xy-input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/layout-form-xy-input/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/layout-form/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/layout-form/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/layout-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/layout-form/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/layout-style-segmented/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/layout-style-segmented/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/layout-style-segmented/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/layout-style-segmented/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/page-back-arrow/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/page-back-arrow/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/page-back-arrow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/page-back-arrow/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/page-layout-segmented/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/page-layout-segmented/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/page-title/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/page-title/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/page-title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/page-title/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/path-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/path-chart/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/path-query/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/path-query/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/path-query/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/path-query/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/query-filter-segmented/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/query-filter-segmented/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/query-filter-segmented/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/query-filter-segmented/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/query-segmented/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/query-segmented/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/query-segmented/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/query-segmented/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/schema-field/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/schema-field/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/statistics-filter-attribute-select/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/statistics-filter-attribute-select/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/statistics-filter-attribute-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/statistics-filter-attribute-select/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/statistics-filter-column-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/statistics-filter-column-chart/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/statistics-filter-form/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/statistics-filter-form/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/statistics-filter-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/statistics-filter-form/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/statistics-filter-histogram-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/statistics-filter-histogram-chart/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/statistics-filter-line-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/statistics-filter-line-chart/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/statistics-filter-pie-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/statistics-filter-pie-chart/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/statistics-filter-world-cloud-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/statistics-filter-world-cloud-chart/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/statistics-filter/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/statistics-filter/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/statistics-filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/statistics-filter/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/view-select/index.less: -------------------------------------------------------------------------------- 1 | .view-select { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/view-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/view-select/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/zoom-in-out/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/zoom-in-out/index.less -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/components/zoom-in-out/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/components/zoom-in-out/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/constants/action-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/constants/action-bar.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/constants/config-center.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/constants/config-center.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/constants/graph-style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/constants/graph-style.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/constants/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/constants/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/constants/layout.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/constants/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/constants/schema.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/contexts/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/hooks/use-schema-form-value/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/hooks/use-schema-form-value/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/hooks/use-schema-tab-container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/hooks/use-schema-tab-container/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/interfaces/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/registers/breathing-node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/registers/breathing-node/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/registers/cluster-dagre-layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/registers/cluster-dagre-layout/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/root/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/root/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/translators/env-graph-language-translator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/translators/env-graph-language-translator/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/translators/graph-schema-translator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/translators/graph-schema-translator/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/translators/properties-translator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/translators/properties-translator/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/download-json/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/download-json/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/download-png/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/download-png/index.tsx -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/filter-by-property-condition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/filter-by-property-condition/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/filter-by-top-rule/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/filter-by-top-rule/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/filter-element-by-property-value/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/filter-element-by-property-value/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/filter-graph-data-by-value/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/filter-graph-data-by-value/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/filter-graph-data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/filter-graph-data/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/generate-edge-type-map/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/generate-edge-type-map/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-chart-data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-chart-data/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-engine-type-by-env/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-engine-type-by-env/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-filtered-element-style/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-filtered-element-style/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-histogram-data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-histogram-data/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-label-text-by-style-config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-label-text-by-style-config/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-node-icon-by-style-config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-node-icon-by-style-config/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-node-size-by-style-config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-node-size-by-style-config/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-operator-list-by-value-type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-operator-list-by-value-type/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-property-value-ranks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-property-value-ranks/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-schema-by-env/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-schema-by-env/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-styled-graph-data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-styled-graph-data/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/get-styles-from-schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/get-styles-from-schema/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/graph-data-2-property-graph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/graph-data-2-property-graph/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/group-and-count-nodes-by-label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/group-and-count-nodes-by-label/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/hex-to-rgba/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/hex-to-rgba/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/highlight-sub-graph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/highlight-sub-graph/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/merge-graph-data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/merge-graph-data/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/pie-chart-edges-translator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/pie-chart-edges-translator/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/reset-graph-active-status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/reset-graph-active-status/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/resize-canvas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/resize-canvas/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/set-graph-active-status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/set-graph-active-status/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/unique-elements-by/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/unique-elements-by/index.ts -------------------------------------------------------------------------------- /src/domains-core/graph-analysis/graph-schema/utils/update-graph-style-options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/domains-core/graph-analysis/graph-schema/utils/update-graph-style-options/index.ts -------------------------------------------------------------------------------- /src/hooks/useAnalysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/hooks/useAnalysis.ts -------------------------------------------------------------------------------- /src/layouts/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/layouts/index.less -------------------------------------------------------------------------------- /src/layouts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/layouts/index.tsx -------------------------------------------------------------------------------- /src/layouts/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/layouts/nav.tsx -------------------------------------------------------------------------------- /src/pages/console.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/pages/console.tsx -------------------------------------------------------------------------------- /src/pages/construct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/pages/construct.tsx -------------------------------------------------------------------------------- /src/pages/graph-schema/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/pages/graph-schema/index.less -------------------------------------------------------------------------------- /src/pages/graph-schema/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/pages/graph-schema/index.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/pages/login.tsx -------------------------------------------------------------------------------- /src/pages/query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/pages/query.tsx -------------------------------------------------------------------------------- /src/pages/resetPassword.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/pages/resetPassword.less -------------------------------------------------------------------------------- /src/pages/resetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/pages/resetPassword.tsx -------------------------------------------------------------------------------- /src/pages/studio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/pages/studio.tsx -------------------------------------------------------------------------------- /src/queries/analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/queries/analysis.ts -------------------------------------------------------------------------------- /src/queries/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/queries/data.ts -------------------------------------------------------------------------------- /src/queries/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/queries/graph.ts -------------------------------------------------------------------------------- /src/queries/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/queries/info.ts -------------------------------------------------------------------------------- /src/queries/procedure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/queries/procedure.ts -------------------------------------------------------------------------------- /src/queries/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/queries/query.ts -------------------------------------------------------------------------------- /src/queries/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/queries/schema.ts -------------------------------------------------------------------------------- /src/queries/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/queries/security.ts -------------------------------------------------------------------------------- /src/services/analysisi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/services/analysisi.ts -------------------------------------------------------------------------------- /src/services/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/services/data.ts -------------------------------------------------------------------------------- /src/services/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/services/info.ts -------------------------------------------------------------------------------- /src/services/procedure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/services/procedure.ts -------------------------------------------------------------------------------- /src/services/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/services/query.ts -------------------------------------------------------------------------------- /src/services/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/services/request.ts -------------------------------------------------------------------------------- /src/services/schema/IndexSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/services/schema/IndexSchema.ts -------------------------------------------------------------------------------- /src/services/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/services/schema/index.ts -------------------------------------------------------------------------------- /src/services/schema/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/services/schema/label.ts -------------------------------------------------------------------------------- /src/services/schema/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/services/schema/schema.ts -------------------------------------------------------------------------------- /src/translator/graph-data-tanslator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/translator/graph-data-tanslator/index.ts -------------------------------------------------------------------------------- /src/translator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/translator/index.ts -------------------------------------------------------------------------------- /src/types/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/types/services/index.ts -------------------------------------------------------------------------------- /src/types/studio/procedure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/types/studio/procedure.ts -------------------------------------------------------------------------------- /src/types/typings.d.ts: -------------------------------------------------------------------------------- 1 | import 'umi/typings'; 2 | -------------------------------------------------------------------------------- /src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/common.ts -------------------------------------------------------------------------------- /src/utils/filterTitleEllipsis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/filterTitleEllipsis.ts -------------------------------------------------------------------------------- /src/utils/getEditorTotalCountByLineNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/getEditorTotalCountByLineNumber.ts -------------------------------------------------------------------------------- /src/utils/getId.ts: -------------------------------------------------------------------------------- 1 | export const getId = () => Math.random().toString(36).slice(2) as any; 2 | -------------------------------------------------------------------------------- /src/utils/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/history.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/originUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/originUtils.ts -------------------------------------------------------------------------------- /src/utils/parseHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/parseHash.ts -------------------------------------------------------------------------------- /src/utils/parseSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/parseSearch.ts -------------------------------------------------------------------------------- /src/utils/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/query.ts -------------------------------------------------------------------------------- /src/utils/safeParseJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/safeParseJSON.ts -------------------------------------------------------------------------------- /src/utils/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/schema.ts -------------------------------------------------------------------------------- /src/utils/transformHexToRgb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/src/utils/transformHexToRgb.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./src/.umi/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /workspace.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/tugraph-db-browser/HEAD/workspace.jsonc --------------------------------------------------------------------------------