├── .gitignore ├── .idea ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jsLibraryMappings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── CBDB.iml ├── CBDB.ipr ├── CBDB.iws ├── LICENSE ├── README.md ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── polyfills.js ├── webpack.config.dev.js ├── webpack.config.prod.js └── webpackDevServer.config.js ├── imgs ├── cbdb.jpg └── slt.png ├── package.json ├── public ├── Ming.geojson ├── Qing.geojson ├── Song.geojson ├── Tang.json ├── Yuan.geojson ├── china.json ├── favicon.ico ├── index.html └── manifest.json ├── scripts ├── build.js ├── start.js └── test.js ├── src ├── App.css ├── App.js ├── App.test.js ├── CBDB.jpg ├── components │ ├── charts │ │ ├── D3SimpleForceChart.js │ │ └── D3SimpleForceChart1.js │ └── layout │ │ ├── RootBreadcrumb.js │ │ ├── RootHeader.js │ │ └── SiderMenus.js ├── containers │ ├── Home.js │ ├── NotFound.js │ ├── SimpleForceChart.js │ ├── SimpleMapTimelineChart.js │ └── SimpleRelationshipChart.js ├── index.css ├── index.js ├── logo.svg ├── registerServiceWorker.js ├── routes │ └── index.js ├── style │ ├── CBDB.jpg │ ├── CBDB.png │ ├── Charts.css │ ├── Common.css │ ├── Home.css │ ├── SimpleForceChart.css │ └── Tables.css └── utils │ ├── d3-cloud.js │ ├── d3-cubic-scale-radial.js │ ├── d3-quartic-scale-radial.js │ ├── d3-scale-radial.js │ ├── d3-viz.js │ ├── envconfig.js │ └── tools.js ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /CBDB.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/CBDB.iml -------------------------------------------------------------------------------- /CBDB.ipr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/CBDB.ipr -------------------------------------------------------------------------------- /CBDB.iws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/CBDB.iws -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /imgs/cbdb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/imgs/cbdb.jpg -------------------------------------------------------------------------------- /imgs/slt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/imgs/slt.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/package.json -------------------------------------------------------------------------------- /public/Ming.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/public/Ming.geojson -------------------------------------------------------------------------------- /public/Qing.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/public/Qing.geojson -------------------------------------------------------------------------------- /public/Song.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/public/Song.geojson -------------------------------------------------------------------------------- /public/Tang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/public/Tang.json -------------------------------------------------------------------------------- /public/Yuan.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/public/Yuan.geojson -------------------------------------------------------------------------------- /public/china.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/public/china.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/public/manifest.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/CBDB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/CBDB.jpg -------------------------------------------------------------------------------- /src/components/charts/D3SimpleForceChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/components/charts/D3SimpleForceChart.js -------------------------------------------------------------------------------- /src/components/charts/D3SimpleForceChart1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/components/charts/D3SimpleForceChart1.js -------------------------------------------------------------------------------- /src/components/layout/RootBreadcrumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/components/layout/RootBreadcrumb.js -------------------------------------------------------------------------------- /src/components/layout/RootHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/components/layout/RootHeader.js -------------------------------------------------------------------------------- /src/components/layout/SiderMenus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/components/layout/SiderMenus.js -------------------------------------------------------------------------------- /src/containers/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/containers/Home.js -------------------------------------------------------------------------------- /src/containers/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/containers/NotFound.js -------------------------------------------------------------------------------- /src/containers/SimpleForceChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/containers/SimpleForceChart.js -------------------------------------------------------------------------------- /src/containers/SimpleMapTimelineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/containers/SimpleMapTimelineChart.js -------------------------------------------------------------------------------- /src/containers/SimpleRelationshipChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/containers/SimpleRelationshipChart.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/routes/index.js -------------------------------------------------------------------------------- /src/style/CBDB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/style/CBDB.jpg -------------------------------------------------------------------------------- /src/style/CBDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/style/CBDB.png -------------------------------------------------------------------------------- /src/style/Charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/style/Charts.css -------------------------------------------------------------------------------- /src/style/Common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/style/Common.css -------------------------------------------------------------------------------- /src/style/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/style/Home.css -------------------------------------------------------------------------------- /src/style/SimpleForceChart.css: -------------------------------------------------------------------------------- 1 | .main{ 2 | text-align: center; 3 | } -------------------------------------------------------------------------------- /src/style/Tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/style/Tables.css -------------------------------------------------------------------------------- /src/utils/d3-cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/utils/d3-cloud.js -------------------------------------------------------------------------------- /src/utils/d3-cubic-scale-radial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/utils/d3-cubic-scale-radial.js -------------------------------------------------------------------------------- /src/utils/d3-quartic-scale-radial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/utils/d3-quartic-scale-radial.js -------------------------------------------------------------------------------- /src/utils/d3-scale-radial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/utils/d3-scale-radial.js -------------------------------------------------------------------------------- /src/utils/d3-viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/utils/d3-viz.js -------------------------------------------------------------------------------- /src/utils/envconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/utils/envconfig.js -------------------------------------------------------------------------------- /src/utils/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/src/utils/tools.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YLDJack/CBDB-VisualizationSystem/HEAD/yarn.lock --------------------------------------------------------------------------------