├── .dockerignore ├── .env ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── config ├── env.js ├── getHttpsConfig.js ├── jest │ ├── cssTransform.js │ ├── fileTransform.js │ └── setEnvVars.js ├── modules.js ├── paths.js ├── pnpTs.js ├── webpack.config.js └── webpackDevServer.config.js ├── docs ├── configuration.md ├── custom-covers.md ├── example-timemap.png └── mapbox.md ├── example.config.js ├── index.html ├── package.json ├── public └── index.html ├── scripts ├── build.js ├── start.js └── test.js ├── src ├── actions │ └── index.js ├── assets │ ├── arrowdown.svg │ ├── bellingcat-logo.png │ ├── checkbox.svg │ ├── close.svg │ ├── fa-logo.png │ ├── fonts │ │ └── timemapfont.woff │ ├── placeholder-image.jpg │ └── satelliteoverlaytoggle │ │ ├── map.png │ │ └── sat.png ├── common │ ├── constants.js │ ├── data │ │ ├── copy.json │ │ └── es-MX.json │ ├── global.js │ └── utilities.js ├── components │ ├── .DS_Store │ ├── App.js │ ├── InfoPopup.js │ ├── Layout.js │ ├── Notification.js │ ├── TemplateCover.js │ ├── Toolbar.js │ ├── atoms │ │ ├── Checkbox.js │ │ ├── CoeventIcon.js │ │ ├── ColoredMarkers.js │ │ ├── Content.js │ │ ├── Controls.js │ │ ├── CoverIcon.js │ │ ├── InfoIcon.js │ │ ├── Loading.js │ │ ├── Md.js │ │ ├── Media.js │ │ ├── NoSource.js │ │ ├── Popup.js │ │ ├── RefreshIcon.js │ │ ├── RouteIcon.js │ │ ├── SitesIcon.js │ │ ├── Spinner.js │ │ └── StaticPage.js │ ├── controls │ │ ├── BottomActions.js │ │ ├── Card.js │ │ ├── CardStack.js │ │ ├── CategoriesListPanel.js │ │ ├── FilterListPanel.js │ │ ├── FullScreenToggle.js │ │ ├── NarrativeControls.js │ │ ├── Search.js │ │ ├── ShapesListPanel.js │ │ └── atoms │ │ │ ├── Button.js │ │ │ ├── Caret.js │ │ │ ├── CustomField.js │ │ │ ├── Media.js │ │ │ ├── NarrativeAdjust.js │ │ │ ├── NarrativeCard.js │ │ │ ├── NarrativeClose.js │ │ │ ├── PanelTree.js │ │ │ ├── SearchRow.jsx │ │ │ ├── TelegramEmbed.js │ │ │ ├── Text.js │ │ │ ├── Time.js │ │ │ └── ToolbarButton.js │ ├── space │ │ ├── Space.js │ │ └── carto │ │ │ ├── Map.js │ │ │ └── atoms │ │ │ ├── Clusters.js │ │ │ ├── DefsMarkers.js │ │ │ ├── Events.js │ │ │ ├── Narratives.js │ │ │ ├── Regions.js │ │ │ ├── SatelliteOverlayToggle.js │ │ │ ├── SelectedEvents.js │ │ │ ├── Sites.js │ │ │ └── __tests__ │ │ │ └── SatelliteOverlayToggle.spec.js │ └── time │ │ ├── Axis.js │ │ ├── Categories.js │ │ ├── Timeline.js │ │ └── atoms │ │ ├── Clip.js │ │ ├── DatetimeBar.js │ │ ├── DatetimeDot.js │ │ ├── DatetimePentagon.js │ │ ├── DatetimeSquare.js │ │ ├── DatetimeStar.js │ │ ├── DatetimeTriangle.js │ │ ├── Events.js │ │ ├── Handles.js │ │ ├── Header.js │ │ ├── Labels.js │ │ ├── Markers.js │ │ ├── Project.js │ │ └── ZoomControls.js ├── index.jsx ├── reducers │ ├── __tests__ │ │ └── ui.spec.js │ ├── app.js │ ├── domain.js │ ├── features.js │ ├── index.js │ ├── root.js │ ├── ui.js │ └── validate │ │ ├── associationsSchema.js │ │ ├── eventSchema.js │ │ ├── regionSchema.js │ │ ├── shapeSchema.js │ │ ├── siteSchema.js │ │ ├── sourceSchema.js │ │ └── validators.js ├── scss │ ├── _burger.scss │ ├── _icons.scss │ ├── _variables.scss │ ├── _video.scss │ ├── button.scss │ ├── card.scss │ ├── cardstack.scss │ ├── common.scss │ ├── cover.scss │ ├── header.scss │ ├── infopopup.scss │ ├── loading.scss │ ├── main.scss │ ├── map.scss │ ├── mediaplayer.scss │ ├── narrativecard.scss │ ├── notification.scss │ ├── overlay.scss │ ├── popup.scss │ ├── satelliteoverlaytoggle.scss │ ├── search.scss │ ├── tabs.scss │ ├── timeline.scss │ ├── toolbar.scss │ └── video.scss ├── selectors │ ├── helpers.js │ └── index.js ├── setupTests.js ├── store │ ├── index.js │ ├── initial.js │ └── plugins │ │ └── urlState │ │ ├── applyUrlState.js │ │ ├── index.js │ │ ├── middleware.js │ │ ├── schema.js │ │ └── urlState.js └── test │ └── App.test.js └── test └── server_process.js /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | example.config.js 4 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | FAST_REFRESH=true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/.prettierignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/config/env.js -------------------------------------------------------------------------------- /config/getHttpsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/config/getHttpsConfig.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/jest/setEnvVars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/config/jest/setEnvVars.js -------------------------------------------------------------------------------- /config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/config/modules.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/pnpTs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/config/pnpTs.js -------------------------------------------------------------------------------- /config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/config/webpack.config.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/custom-covers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/docs/custom-covers.md -------------------------------------------------------------------------------- /docs/example-timemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/docs/example-timemap.png -------------------------------------------------------------------------------- /docs/mapbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/docs/mapbox.md -------------------------------------------------------------------------------- /example.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/example.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/public/index.html -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/assets/arrowdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/assets/arrowdown.svg -------------------------------------------------------------------------------- /src/assets/bellingcat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/assets/bellingcat-logo.png -------------------------------------------------------------------------------- /src/assets/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/assets/checkbox.svg -------------------------------------------------------------------------------- /src/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/assets/close.svg -------------------------------------------------------------------------------- /src/assets/fa-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/assets/fa-logo.png -------------------------------------------------------------------------------- /src/assets/fonts/timemapfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/assets/fonts/timemapfont.woff -------------------------------------------------------------------------------- /src/assets/placeholder-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/assets/placeholder-image.jpg -------------------------------------------------------------------------------- /src/assets/satelliteoverlaytoggle/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/assets/satelliteoverlaytoggle/map.png -------------------------------------------------------------------------------- /src/assets/satelliteoverlaytoggle/sat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/assets/satelliteoverlaytoggle/sat.png -------------------------------------------------------------------------------- /src/common/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/common/constants.js -------------------------------------------------------------------------------- /src/common/data/copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/common/data/copy.json -------------------------------------------------------------------------------- /src/common/data/es-MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/common/data/es-MX.json -------------------------------------------------------------------------------- /src/common/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/common/global.js -------------------------------------------------------------------------------- /src/common/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/common/utilities.js -------------------------------------------------------------------------------- /src/components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/.DS_Store -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/InfoPopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/InfoPopup.js -------------------------------------------------------------------------------- /src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/Layout.js -------------------------------------------------------------------------------- /src/components/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/Notification.js -------------------------------------------------------------------------------- /src/components/TemplateCover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/TemplateCover.js -------------------------------------------------------------------------------- /src/components/Toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/Toolbar.js -------------------------------------------------------------------------------- /src/components/atoms/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/Checkbox.js -------------------------------------------------------------------------------- /src/components/atoms/CoeventIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/CoeventIcon.js -------------------------------------------------------------------------------- /src/components/atoms/ColoredMarkers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/ColoredMarkers.js -------------------------------------------------------------------------------- /src/components/atoms/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/Content.js -------------------------------------------------------------------------------- /src/components/atoms/Controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/Controls.js -------------------------------------------------------------------------------- /src/components/atoms/CoverIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/CoverIcon.js -------------------------------------------------------------------------------- /src/components/atoms/InfoIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/InfoIcon.js -------------------------------------------------------------------------------- /src/components/atoms/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/Loading.js -------------------------------------------------------------------------------- /src/components/atoms/Md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/Md.js -------------------------------------------------------------------------------- /src/components/atoms/Media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/Media.js -------------------------------------------------------------------------------- /src/components/atoms/NoSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/NoSource.js -------------------------------------------------------------------------------- /src/components/atoms/Popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/Popup.js -------------------------------------------------------------------------------- /src/components/atoms/RefreshIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/RefreshIcon.js -------------------------------------------------------------------------------- /src/components/atoms/RouteIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/RouteIcon.js -------------------------------------------------------------------------------- /src/components/atoms/SitesIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/SitesIcon.js -------------------------------------------------------------------------------- /src/components/atoms/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/Spinner.js -------------------------------------------------------------------------------- /src/components/atoms/StaticPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/atoms/StaticPage.js -------------------------------------------------------------------------------- /src/components/controls/BottomActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/BottomActions.js -------------------------------------------------------------------------------- /src/components/controls/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/Card.js -------------------------------------------------------------------------------- /src/components/controls/CardStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/CardStack.js -------------------------------------------------------------------------------- /src/components/controls/CategoriesListPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/CategoriesListPanel.js -------------------------------------------------------------------------------- /src/components/controls/FilterListPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/FilterListPanel.js -------------------------------------------------------------------------------- /src/components/controls/FullScreenToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/FullScreenToggle.js -------------------------------------------------------------------------------- /src/components/controls/NarrativeControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/NarrativeControls.js -------------------------------------------------------------------------------- /src/components/controls/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/Search.js -------------------------------------------------------------------------------- /src/components/controls/ShapesListPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/ShapesListPanel.js -------------------------------------------------------------------------------- /src/components/controls/atoms/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/Button.js -------------------------------------------------------------------------------- /src/components/controls/atoms/Caret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/Caret.js -------------------------------------------------------------------------------- /src/components/controls/atoms/CustomField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/CustomField.js -------------------------------------------------------------------------------- /src/components/controls/atoms/Media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/Media.js -------------------------------------------------------------------------------- /src/components/controls/atoms/NarrativeAdjust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/NarrativeAdjust.js -------------------------------------------------------------------------------- /src/components/controls/atoms/NarrativeCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/NarrativeCard.js -------------------------------------------------------------------------------- /src/components/controls/atoms/NarrativeClose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/NarrativeClose.js -------------------------------------------------------------------------------- /src/components/controls/atoms/PanelTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/PanelTree.js -------------------------------------------------------------------------------- /src/components/controls/atoms/SearchRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/SearchRow.jsx -------------------------------------------------------------------------------- /src/components/controls/atoms/TelegramEmbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/TelegramEmbed.js -------------------------------------------------------------------------------- /src/components/controls/atoms/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/Text.js -------------------------------------------------------------------------------- /src/components/controls/atoms/Time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/Time.js -------------------------------------------------------------------------------- /src/components/controls/atoms/ToolbarButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/controls/atoms/ToolbarButton.js -------------------------------------------------------------------------------- /src/components/space/Space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/space/Space.js -------------------------------------------------------------------------------- /src/components/space/carto/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/space/carto/Map.js -------------------------------------------------------------------------------- /src/components/space/carto/atoms/Clusters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/space/carto/atoms/Clusters.js -------------------------------------------------------------------------------- /src/components/space/carto/atoms/DefsMarkers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/space/carto/atoms/DefsMarkers.js -------------------------------------------------------------------------------- /src/components/space/carto/atoms/Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/space/carto/atoms/Events.js -------------------------------------------------------------------------------- /src/components/space/carto/atoms/Narratives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/space/carto/atoms/Narratives.js -------------------------------------------------------------------------------- /src/components/space/carto/atoms/Regions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/space/carto/atoms/Regions.js -------------------------------------------------------------------------------- /src/components/space/carto/atoms/SatelliteOverlayToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/space/carto/atoms/SatelliteOverlayToggle.js -------------------------------------------------------------------------------- /src/components/space/carto/atoms/SelectedEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/space/carto/atoms/SelectedEvents.js -------------------------------------------------------------------------------- /src/components/space/carto/atoms/Sites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/space/carto/atoms/Sites.js -------------------------------------------------------------------------------- /src/components/space/carto/atoms/__tests__/SatelliteOverlayToggle.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/space/carto/atoms/__tests__/SatelliteOverlayToggle.spec.js -------------------------------------------------------------------------------- /src/components/time/Axis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/Axis.js -------------------------------------------------------------------------------- /src/components/time/Categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/Categories.js -------------------------------------------------------------------------------- /src/components/time/Timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/Timeline.js -------------------------------------------------------------------------------- /src/components/time/atoms/Clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/Clip.js -------------------------------------------------------------------------------- /src/components/time/atoms/DatetimeBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/DatetimeBar.js -------------------------------------------------------------------------------- /src/components/time/atoms/DatetimeDot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/DatetimeDot.js -------------------------------------------------------------------------------- /src/components/time/atoms/DatetimePentagon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/DatetimePentagon.js -------------------------------------------------------------------------------- /src/components/time/atoms/DatetimeSquare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/DatetimeSquare.js -------------------------------------------------------------------------------- /src/components/time/atoms/DatetimeStar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/DatetimeStar.js -------------------------------------------------------------------------------- /src/components/time/atoms/DatetimeTriangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/DatetimeTriangle.js -------------------------------------------------------------------------------- /src/components/time/atoms/Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/Events.js -------------------------------------------------------------------------------- /src/components/time/atoms/Handles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/Handles.js -------------------------------------------------------------------------------- /src/components/time/atoms/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/Header.js -------------------------------------------------------------------------------- /src/components/time/atoms/Labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/Labels.js -------------------------------------------------------------------------------- /src/components/time/atoms/Markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/Markers.js -------------------------------------------------------------------------------- /src/components/time/atoms/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/Project.js -------------------------------------------------------------------------------- /src/components/time/atoms/ZoomControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/components/time/atoms/ZoomControls.js -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/reducers/__tests__/ui.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/__tests__/ui.spec.js -------------------------------------------------------------------------------- /src/reducers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/app.js -------------------------------------------------------------------------------- /src/reducers/domain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/domain.js -------------------------------------------------------------------------------- /src/reducers/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/features.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/root.js -------------------------------------------------------------------------------- /src/reducers/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/ui.js -------------------------------------------------------------------------------- /src/reducers/validate/associationsSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/validate/associationsSchema.js -------------------------------------------------------------------------------- /src/reducers/validate/eventSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/validate/eventSchema.js -------------------------------------------------------------------------------- /src/reducers/validate/regionSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/validate/regionSchema.js -------------------------------------------------------------------------------- /src/reducers/validate/shapeSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/validate/shapeSchema.js -------------------------------------------------------------------------------- /src/reducers/validate/siteSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/validate/siteSchema.js -------------------------------------------------------------------------------- /src/reducers/validate/sourceSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/validate/sourceSchema.js -------------------------------------------------------------------------------- /src/reducers/validate/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/reducers/validate/validators.js -------------------------------------------------------------------------------- /src/scss/_burger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/_burger.scss -------------------------------------------------------------------------------- /src/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/_icons.scss -------------------------------------------------------------------------------- /src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/_variables.scss -------------------------------------------------------------------------------- /src/scss/_video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/_video.scss -------------------------------------------------------------------------------- /src/scss/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/button.scss -------------------------------------------------------------------------------- /src/scss/card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/card.scss -------------------------------------------------------------------------------- /src/scss/cardstack.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/cardstack.scss -------------------------------------------------------------------------------- /src/scss/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/common.scss -------------------------------------------------------------------------------- /src/scss/cover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/cover.scss -------------------------------------------------------------------------------- /src/scss/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/header.scss -------------------------------------------------------------------------------- /src/scss/infopopup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/infopopup.scss -------------------------------------------------------------------------------- /src/scss/loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/loading.scss -------------------------------------------------------------------------------- /src/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/main.scss -------------------------------------------------------------------------------- /src/scss/map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/map.scss -------------------------------------------------------------------------------- /src/scss/mediaplayer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/mediaplayer.scss -------------------------------------------------------------------------------- /src/scss/narrativecard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/narrativecard.scss -------------------------------------------------------------------------------- /src/scss/notification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/notification.scss -------------------------------------------------------------------------------- /src/scss/overlay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/overlay.scss -------------------------------------------------------------------------------- /src/scss/popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/popup.scss -------------------------------------------------------------------------------- /src/scss/satelliteoverlaytoggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/satelliteoverlaytoggle.scss -------------------------------------------------------------------------------- /src/scss/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/search.scss -------------------------------------------------------------------------------- /src/scss/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/tabs.scss -------------------------------------------------------------------------------- /src/scss/timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/timeline.scss -------------------------------------------------------------------------------- /src/scss/toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/toolbar.scss -------------------------------------------------------------------------------- /src/scss/video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/scss/video.scss -------------------------------------------------------------------------------- /src/selectors/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/selectors/helpers.js -------------------------------------------------------------------------------- /src/selectors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/selectors/index.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/store/initial.js -------------------------------------------------------------------------------- /src/store/plugins/urlState/applyUrlState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/store/plugins/urlState/applyUrlState.js -------------------------------------------------------------------------------- /src/store/plugins/urlState/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/store/plugins/urlState/index.js -------------------------------------------------------------------------------- /src/store/plugins/urlState/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/store/plugins/urlState/middleware.js -------------------------------------------------------------------------------- /src/store/plugins/urlState/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/store/plugins/urlState/schema.js -------------------------------------------------------------------------------- /src/store/plugins/urlState/urlState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/store/plugins/urlState/urlState.js -------------------------------------------------------------------------------- /src/test/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/src/test/App.test.js -------------------------------------------------------------------------------- /test/server_process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forensic-architecture/timemap/HEAD/test/server_process.js --------------------------------------------------------------------------------