├── .dockerignore ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.yaml └── workflows │ └── docker-publish.yaml ├── .gitignore ├── .tool-versions ├── .vscode └── settings.json ├── ABOUT.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── flow-typed └── npm │ ├── animate.css_vx.x.x.js │ ├── changelog_vx.x.x.js │ ├── check-node-version_vx.x.x.js │ ├── date-input-polyfill_vx.x.x.js │ ├── flow-bin_v0.x.x.js │ ├── history_vx.x.x.js │ ├── husky_vx.x.x.js │ ├── jest-cli_vx.x.x.js │ ├── lint-staged_vx.x.x.js │ ├── lodash.debounce_vx.x.x.js │ ├── mockdate_vx.x.x.js │ ├── moment_v2.x.x.js │ ├── mousetrap_v1.x.x.js │ ├── nock_v9.x.x.js │ ├── prettier-eslint-cli_vx.x.x.js │ ├── prettier_vx.x.x.js │ ├── raven-js_vx.x.x.js │ ├── react-anchorify-text_vx.x.x.js │ ├── react-click-outside_vx.x.x.js │ ├── react-ga_vx.x.x.js │ ├── react-notification-system_vx.x.x.js │ ├── react-redux_v5.x.x.js │ ├── react-router-dom_v4.x.x.js │ ├── react-router-redux_vx.x.x.js │ ├── react-router_v4.x.x.js │ ├── react-scripts_vx.x.x.js │ ├── react-select_vx.x.x.js │ ├── react-test-renderer_vx.x.x.js │ ├── redux-devtools-extension_vx.x.x.js │ ├── redux-logger_vx.x.x.js │ ├── redux-saga-test-plan_vx.x.x.js │ ├── redux-saga_vx.x.x.js │ ├── redux_v3.x.x.js │ ├── reselect_v3.x.x.js │ ├── showdown_vx.x.x.js │ ├── superagent_vx.x.x.js │ ├── webpack-bundle-analyzer_vx.x.x.js │ └── why-did-you-update_vx.x.x.js ├── nginx.conf ├── out.gif ├── package.json ├── public ├── favicon.ico ├── index.html ├── manifest.json └── positron.json ├── src ├── AppDesktop.js ├── AppMobile.js ├── app.js ├── assets │ ├── 2.1.3.toastr.min.css │ ├── banner.png │ ├── index.css │ ├── opensans-bold.woff │ ├── opensans-bold.woff2 │ ├── opensans-bolditalic.woff │ ├── opensans-bolditalic.woff2 │ ├── opensans-italic.woff │ ├── opensans-italic.woff2 │ ├── opensans-light.woff │ ├── opensans-light.woff2 │ ├── opensans-regular.woff │ ├── opensans-regular.woff2 │ ├── osmus.png │ ├── thumbs-down.svg │ ├── thumbs-up.svg │ └── work_flow.png ├── components │ ├── assembly_anchor.js │ ├── avatar.js │ ├── button.js │ ├── changeset │ │ ├── box.js │ │ ├── comment.js │ │ ├── control.js │ │ ├── control_layout.js │ │ ├── details.js │ │ ├── discussions.js │ │ ├── features.js │ │ ├── floater.js │ │ ├── geometry_changes.js │ │ ├── header.js │ │ ├── index.js │ │ ├── map_options.js │ │ ├── open_in.js │ │ ├── other_features.js │ │ ├── property.js │ │ ├── property_list.js │ │ ├── sign_in_button.js │ │ ├── tag_changes.js │ │ ├── tags.js │ │ ├── translate_button.js │ │ ├── trust_watch_user.js │ │ ├── user.js │ │ ├── user_osm_link.js │ │ └── verify.js │ ├── create_delete_modify.js │ ├── customURL.js │ ├── dropdown.css │ ├── dropdown.js │ ├── element_info.js │ ├── expand_item_icon.js │ ├── fetch_data_enhancer.js │ ├── filters │ │ ├── date.js │ │ ├── filters_header.js │ │ ├── filters_list.js │ │ ├── index.js │ │ ├── location.js │ │ ├── meta.js │ │ ├── multi_select.js │ │ ├── radio.js │ │ ├── text.js │ │ └── wrapper.js │ ├── keyboard_enhancer.js │ ├── list │ │ ├── __snapshots__ │ │ │ ├── page_range.test.js.snap │ │ │ └── row.test.js.snap │ │ ├── comments.js │ │ ├── footer.js │ │ ├── header.js │ │ ├── index.js │ │ ├── index.test.js │ │ ├── page_range.js │ │ ├── page_range.test.js │ │ ├── primary_line.js │ │ ├── row.js │ │ ├── row.test.js │ │ ├── secondary_line.js │ │ └── title.js │ ├── loading.js │ ├── loading_enhancer.js │ ├── navbar.js │ ├── open_all.js │ ├── reasons.js │ ├── relative_time.js │ ├── secondary_pages_header.js │ ├── sign_in.js │ ├── tag_value.js │ ├── tag_value.test.js │ ├── teams │ │ └── new_team.js │ ├── tests │ │ ├── fetch_data_enhancer.test.js │ │ ├── keyboard_enhancer.test.js │ │ └── loading_enhancer.test.js │ ├── user.jpg │ └── user │ │ ├── block_markup.js │ │ ├── details.js │ │ ├── mapping_team.js │ │ ├── save_user.js │ │ ├── trustedlist_user.js │ │ └── watchlist_user.js ├── config │ ├── bindings.js │ ├── constants.js │ ├── filters.json │ ├── index.js │ └── notifications.js ├── hooks │ └── UseIsUserListed.js ├── index.js ├── logo.svg ├── network │ ├── aoi.js │ ├── auth.js │ ├── changeset.js │ ├── changesets_page.js │ ├── mapping_team.js │ ├── nominatim.js │ ├── openstreetmap.js │ ├── osmcha_trustedlist.js │ ├── osmcha_watchlist.js │ ├── reasons_tags.js │ ├── status.js │ └── whosthat.js ├── store │ ├── aoi_actions.js │ ├── aoi_reducer.js │ ├── auth_actions.js │ ├── auth_reducer.js │ ├── blacklist_reducer.js │ ├── changeset_actions.js │ ├── changeset_reducer.js │ ├── changesets_page_actions.js │ ├── changesets_page_reducer.js │ ├── filters_actions.js │ ├── filters_reducer.js │ ├── history.js │ ├── index.js │ ├── map_controls_actions.js │ ├── map_controls_reducer.js │ ├── modal_actions.js │ ├── modal_reducer.js │ ├── sagas.js │ ├── tests │ │ ├── __snapshots__ │ │ │ └── auth.test.js.snap │ │ ├── auth.test.js │ │ ├── changeset.test.js │ │ ├── changesets_page.test.js │ │ └── filters.test.js │ ├── trustedlist_actions.js │ ├── trustedlist_reducer.js │ └── watchlist_actions.js ├── utils │ ├── component.js │ ├── dispatch_event.js │ ├── element_in_view.js │ ├── filters.js │ ├── index.js │ ├── isMobile.js │ ├── number_with_commas.js │ ├── promise.js │ ├── query_params.js │ ├── routing.js │ ├── safe_storage.js │ └── tests │ │ └── query_params.test.js └── views │ ├── about.js │ ├── authorized.js │ ├── changeset.js │ ├── changesets_list.js │ ├── edit_team.js │ ├── filters.js │ ├── home.js │ ├── map.js │ ├── modal.js │ ├── navbar_changeset.js │ ├── navbar_sidebar.js │ ├── saved_filters.js │ ├── stats.js │ ├── teams.js │ ├── trusted_users.js │ ├── user.js │ └── watchlist.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/.github/workflows/docker-publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 18 2 | yarn 1.22 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ABOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/ABOUT.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/README.md -------------------------------------------------------------------------------- /flow-typed/npm/animate.css_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/animate.css_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/changelog_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/changelog_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/check-node-version_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/check-node-version_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/date-input-polyfill_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/date-input-polyfill_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/history_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/history_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/husky_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/husky_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/jest-cli_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/jest-cli_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/lint-staged_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/lint-staged_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/lodash.debounce_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/lodash.debounce_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/mockdate_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/mockdate_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/moment_v2.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/moment_v2.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/mousetrap_v1.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/mousetrap_v1.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/nock_v9.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/nock_v9.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/prettier-eslint-cli_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/prettier-eslint-cli_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/prettier_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/raven-js_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/raven-js_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-anchorify-text_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/react-anchorify-text_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-click-outside_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/react-click-outside_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-ga_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/react-ga_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-notification-system_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/react-notification-system_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-redux_v5.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/react-redux_v5.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-router-dom_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/react-router-dom_v4.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-router-redux_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/react-router-redux_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-router_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/react-router_v4.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-scripts_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/react-scripts_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-select_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/react-select_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-test-renderer_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/react-test-renderer_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux-devtools-extension_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/redux-devtools-extension_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux-logger_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/redux-logger_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux-saga-test-plan_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/redux-saga-test-plan_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux-saga_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/redux-saga_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/redux_v3.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/reselect_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/reselect_v3.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/showdown_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/showdown_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/superagent_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/superagent_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/webpack-bundle-analyzer_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/webpack-bundle-analyzer_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/why-did-you-update_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/flow-typed/npm/why-did-you-update_vx.x.x.js -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/nginx.conf -------------------------------------------------------------------------------- /out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/out.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/positron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/public/positron.json -------------------------------------------------------------------------------- /src/AppDesktop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/AppDesktop.js -------------------------------------------------------------------------------- /src/AppMobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/AppMobile.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/app.js -------------------------------------------------------------------------------- /src/assets/2.1.3.toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/2.1.3.toastr.min.css -------------------------------------------------------------------------------- /src/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/banner.png -------------------------------------------------------------------------------- /src/assets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/index.css -------------------------------------------------------------------------------- /src/assets/opensans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/opensans-bold.woff -------------------------------------------------------------------------------- /src/assets/opensans-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/opensans-bold.woff2 -------------------------------------------------------------------------------- /src/assets/opensans-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/opensans-bolditalic.woff -------------------------------------------------------------------------------- /src/assets/opensans-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/opensans-bolditalic.woff2 -------------------------------------------------------------------------------- /src/assets/opensans-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/opensans-italic.woff -------------------------------------------------------------------------------- /src/assets/opensans-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/opensans-italic.woff2 -------------------------------------------------------------------------------- /src/assets/opensans-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/opensans-light.woff -------------------------------------------------------------------------------- /src/assets/opensans-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/opensans-light.woff2 -------------------------------------------------------------------------------- /src/assets/opensans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/opensans-regular.woff -------------------------------------------------------------------------------- /src/assets/opensans-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/opensans-regular.woff2 -------------------------------------------------------------------------------- /src/assets/osmus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/osmus.png -------------------------------------------------------------------------------- /src/assets/thumbs-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/thumbs-down.svg -------------------------------------------------------------------------------- /src/assets/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/thumbs-up.svg -------------------------------------------------------------------------------- /src/assets/work_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/assets/work_flow.png -------------------------------------------------------------------------------- /src/components/assembly_anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/assembly_anchor.js -------------------------------------------------------------------------------- /src/components/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/avatar.js -------------------------------------------------------------------------------- /src/components/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/button.js -------------------------------------------------------------------------------- /src/components/changeset/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/box.js -------------------------------------------------------------------------------- /src/components/changeset/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/comment.js -------------------------------------------------------------------------------- /src/components/changeset/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/control.js -------------------------------------------------------------------------------- /src/components/changeset/control_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/control_layout.js -------------------------------------------------------------------------------- /src/components/changeset/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/details.js -------------------------------------------------------------------------------- /src/components/changeset/discussions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/discussions.js -------------------------------------------------------------------------------- /src/components/changeset/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/features.js -------------------------------------------------------------------------------- /src/components/changeset/floater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/floater.js -------------------------------------------------------------------------------- /src/components/changeset/geometry_changes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/geometry_changes.js -------------------------------------------------------------------------------- /src/components/changeset/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/header.js -------------------------------------------------------------------------------- /src/components/changeset/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/index.js -------------------------------------------------------------------------------- /src/components/changeset/map_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/map_options.js -------------------------------------------------------------------------------- /src/components/changeset/open_in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/open_in.js -------------------------------------------------------------------------------- /src/components/changeset/other_features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/other_features.js -------------------------------------------------------------------------------- /src/components/changeset/property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/property.js -------------------------------------------------------------------------------- /src/components/changeset/property_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/property_list.js -------------------------------------------------------------------------------- /src/components/changeset/sign_in_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/sign_in_button.js -------------------------------------------------------------------------------- /src/components/changeset/tag_changes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/tag_changes.js -------------------------------------------------------------------------------- /src/components/changeset/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/tags.js -------------------------------------------------------------------------------- /src/components/changeset/translate_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/translate_button.js -------------------------------------------------------------------------------- /src/components/changeset/trust_watch_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/trust_watch_user.js -------------------------------------------------------------------------------- /src/components/changeset/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/user.js -------------------------------------------------------------------------------- /src/components/changeset/user_osm_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/user_osm_link.js -------------------------------------------------------------------------------- /src/components/changeset/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/changeset/verify.js -------------------------------------------------------------------------------- /src/components/create_delete_modify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/create_delete_modify.js -------------------------------------------------------------------------------- /src/components/customURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/customURL.js -------------------------------------------------------------------------------- /src/components/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/dropdown.css -------------------------------------------------------------------------------- /src/components/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/dropdown.js -------------------------------------------------------------------------------- /src/components/element_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/element_info.js -------------------------------------------------------------------------------- /src/components/expand_item_icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/expand_item_icon.js -------------------------------------------------------------------------------- /src/components/fetch_data_enhancer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/fetch_data_enhancer.js -------------------------------------------------------------------------------- /src/components/filters/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/filters/date.js -------------------------------------------------------------------------------- /src/components/filters/filters_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/filters/filters_header.js -------------------------------------------------------------------------------- /src/components/filters/filters_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/filters/filters_list.js -------------------------------------------------------------------------------- /src/components/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/filters/index.js -------------------------------------------------------------------------------- /src/components/filters/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/filters/location.js -------------------------------------------------------------------------------- /src/components/filters/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/filters/meta.js -------------------------------------------------------------------------------- /src/components/filters/multi_select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/filters/multi_select.js -------------------------------------------------------------------------------- /src/components/filters/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/filters/radio.js -------------------------------------------------------------------------------- /src/components/filters/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/filters/text.js -------------------------------------------------------------------------------- /src/components/filters/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/filters/wrapper.js -------------------------------------------------------------------------------- /src/components/keyboard_enhancer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/keyboard_enhancer.js -------------------------------------------------------------------------------- /src/components/list/__snapshots__/page_range.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/__snapshots__/page_range.test.js.snap -------------------------------------------------------------------------------- /src/components/list/__snapshots__/row.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/__snapshots__/row.test.js.snap -------------------------------------------------------------------------------- /src/components/list/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/comments.js -------------------------------------------------------------------------------- /src/components/list/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/footer.js -------------------------------------------------------------------------------- /src/components/list/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/header.js -------------------------------------------------------------------------------- /src/components/list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/index.js -------------------------------------------------------------------------------- /src/components/list/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/index.test.js -------------------------------------------------------------------------------- /src/components/list/page_range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/page_range.js -------------------------------------------------------------------------------- /src/components/list/page_range.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/page_range.test.js -------------------------------------------------------------------------------- /src/components/list/primary_line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/primary_line.js -------------------------------------------------------------------------------- /src/components/list/row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/row.js -------------------------------------------------------------------------------- /src/components/list/row.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/row.test.js -------------------------------------------------------------------------------- /src/components/list/secondary_line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/secondary_line.js -------------------------------------------------------------------------------- /src/components/list/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/list/title.js -------------------------------------------------------------------------------- /src/components/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/loading.js -------------------------------------------------------------------------------- /src/components/loading_enhancer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/loading_enhancer.js -------------------------------------------------------------------------------- /src/components/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/navbar.js -------------------------------------------------------------------------------- /src/components/open_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/open_all.js -------------------------------------------------------------------------------- /src/components/reasons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/reasons.js -------------------------------------------------------------------------------- /src/components/relative_time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/relative_time.js -------------------------------------------------------------------------------- /src/components/secondary_pages_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/secondary_pages_header.js -------------------------------------------------------------------------------- /src/components/sign_in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/sign_in.js -------------------------------------------------------------------------------- /src/components/tag_value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/tag_value.js -------------------------------------------------------------------------------- /src/components/tag_value.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/tag_value.test.js -------------------------------------------------------------------------------- /src/components/teams/new_team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/teams/new_team.js -------------------------------------------------------------------------------- /src/components/tests/fetch_data_enhancer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/tests/fetch_data_enhancer.test.js -------------------------------------------------------------------------------- /src/components/tests/keyboard_enhancer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/tests/keyboard_enhancer.test.js -------------------------------------------------------------------------------- /src/components/tests/loading_enhancer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/tests/loading_enhancer.test.js -------------------------------------------------------------------------------- /src/components/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/user.jpg -------------------------------------------------------------------------------- /src/components/user/block_markup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/user/block_markup.js -------------------------------------------------------------------------------- /src/components/user/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/user/details.js -------------------------------------------------------------------------------- /src/components/user/mapping_team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/user/mapping_team.js -------------------------------------------------------------------------------- /src/components/user/save_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/user/save_user.js -------------------------------------------------------------------------------- /src/components/user/trustedlist_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/user/trustedlist_user.js -------------------------------------------------------------------------------- /src/components/user/watchlist_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/components/user/watchlist_user.js -------------------------------------------------------------------------------- /src/config/bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/config/bindings.js -------------------------------------------------------------------------------- /src/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/config/constants.js -------------------------------------------------------------------------------- /src/config/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/config/filters.json -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/config/index.js -------------------------------------------------------------------------------- /src/config/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/config/notifications.js -------------------------------------------------------------------------------- /src/hooks/UseIsUserListed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/hooks/UseIsUserListed.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/network/aoi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/aoi.js -------------------------------------------------------------------------------- /src/network/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/auth.js -------------------------------------------------------------------------------- /src/network/changeset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/changeset.js -------------------------------------------------------------------------------- /src/network/changesets_page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/changesets_page.js -------------------------------------------------------------------------------- /src/network/mapping_team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/mapping_team.js -------------------------------------------------------------------------------- /src/network/nominatim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/nominatim.js -------------------------------------------------------------------------------- /src/network/openstreetmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/openstreetmap.js -------------------------------------------------------------------------------- /src/network/osmcha_trustedlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/osmcha_trustedlist.js -------------------------------------------------------------------------------- /src/network/osmcha_watchlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/osmcha_watchlist.js -------------------------------------------------------------------------------- /src/network/reasons_tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/reasons_tags.js -------------------------------------------------------------------------------- /src/network/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/status.js -------------------------------------------------------------------------------- /src/network/whosthat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/network/whosthat.js -------------------------------------------------------------------------------- /src/store/aoi_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/aoi_actions.js -------------------------------------------------------------------------------- /src/store/aoi_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/aoi_reducer.js -------------------------------------------------------------------------------- /src/store/auth_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/auth_actions.js -------------------------------------------------------------------------------- /src/store/auth_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/auth_reducer.js -------------------------------------------------------------------------------- /src/store/blacklist_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/blacklist_reducer.js -------------------------------------------------------------------------------- /src/store/changeset_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/changeset_actions.js -------------------------------------------------------------------------------- /src/store/changeset_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/changeset_reducer.js -------------------------------------------------------------------------------- /src/store/changesets_page_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/changesets_page_actions.js -------------------------------------------------------------------------------- /src/store/changesets_page_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/changesets_page_reducer.js -------------------------------------------------------------------------------- /src/store/filters_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/filters_actions.js -------------------------------------------------------------------------------- /src/store/filters_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/filters_reducer.js -------------------------------------------------------------------------------- /src/store/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/history.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/map_controls_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/map_controls_actions.js -------------------------------------------------------------------------------- /src/store/map_controls_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/map_controls_reducer.js -------------------------------------------------------------------------------- /src/store/modal_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/modal_actions.js -------------------------------------------------------------------------------- /src/store/modal_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/modal_reducer.js -------------------------------------------------------------------------------- /src/store/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/sagas.js -------------------------------------------------------------------------------- /src/store/tests/__snapshots__/auth.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/tests/__snapshots__/auth.test.js.snap -------------------------------------------------------------------------------- /src/store/tests/auth.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/tests/auth.test.js -------------------------------------------------------------------------------- /src/store/tests/changeset.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/tests/changeset.test.js -------------------------------------------------------------------------------- /src/store/tests/changesets_page.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/tests/changesets_page.test.js -------------------------------------------------------------------------------- /src/store/tests/filters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/tests/filters.test.js -------------------------------------------------------------------------------- /src/store/trustedlist_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/trustedlist_actions.js -------------------------------------------------------------------------------- /src/store/trustedlist_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/trustedlist_reducer.js -------------------------------------------------------------------------------- /src/store/watchlist_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/store/watchlist_actions.js -------------------------------------------------------------------------------- /src/utils/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/component.js -------------------------------------------------------------------------------- /src/utils/dispatch_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/dispatch_event.js -------------------------------------------------------------------------------- /src/utils/element_in_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/element_in_view.js -------------------------------------------------------------------------------- /src/utils/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/filters.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/isMobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/isMobile.js -------------------------------------------------------------------------------- /src/utils/number_with_commas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/number_with_commas.js -------------------------------------------------------------------------------- /src/utils/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/promise.js -------------------------------------------------------------------------------- /src/utils/query_params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/query_params.js -------------------------------------------------------------------------------- /src/utils/routing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/routing.js -------------------------------------------------------------------------------- /src/utils/safe_storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/safe_storage.js -------------------------------------------------------------------------------- /src/utils/tests/query_params.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/utils/tests/query_params.test.js -------------------------------------------------------------------------------- /src/views/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/about.js -------------------------------------------------------------------------------- /src/views/authorized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/authorized.js -------------------------------------------------------------------------------- /src/views/changeset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/changeset.js -------------------------------------------------------------------------------- /src/views/changesets_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/changesets_list.js -------------------------------------------------------------------------------- /src/views/edit_team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/edit_team.js -------------------------------------------------------------------------------- /src/views/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/filters.js -------------------------------------------------------------------------------- /src/views/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/home.js -------------------------------------------------------------------------------- /src/views/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/map.js -------------------------------------------------------------------------------- /src/views/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/modal.js -------------------------------------------------------------------------------- /src/views/navbar_changeset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/navbar_changeset.js -------------------------------------------------------------------------------- /src/views/navbar_sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/navbar_sidebar.js -------------------------------------------------------------------------------- /src/views/saved_filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/saved_filters.js -------------------------------------------------------------------------------- /src/views/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/stats.js -------------------------------------------------------------------------------- /src/views/teams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/teams.js -------------------------------------------------------------------------------- /src/views/trusted_users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/trusted_users.js -------------------------------------------------------------------------------- /src/views/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/user.js -------------------------------------------------------------------------------- /src/views/watchlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/src/views/watchlist.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSMCha/osmcha-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------