├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .neutrinorc.js ├── .renovaterc ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── app.json ├── docs ├── about-media-playback.md ├── about-media-playback.png ├── about-pageload.md ├── about-pageload1.png ├── about-pageload2.png ├── about-pageload3.png └── about-pageload4.png ├── jest.config.js ├── netlify.toml ├── package.json ├── renovate.json ├── src ├── Home.jsx ├── NotFound.jsx ├── android │ ├── TP6m.jsx │ ├── TP6mAggregate.jsx │ ├── config.js │ └── index.jsx ├── banner │ └── Banner.jsx ├── bugzilla │ ├── BugzillaGraph.jsx │ ├── getBugsData.js │ └── query.jsx ├── config.json ├── decommission.jsx ├── fission │ ├── TP6Fission.jsx │ ├── config.js │ └── index.jsx ├── github │ ├── GithubGraph.jsx │ └── query.js ├── index.css ├── index.jsx ├── playback │ ├── config.js │ ├── details.jsx │ ├── playback.jsx │ └── summary.jsx ├── power │ ├── config.js │ ├── details.jsx │ ├── power.jsx │ └── summary.jsx ├── prod-config.json ├── routes.jsx ├── static │ ├── GitHub-Mark.png │ └── favicon.ico ├── telemetry │ └── graph.jsx ├── test-config.json ├── utils │ ├── DashboardPage.jsx │ ├── PerfherderGraphContainer.jsx │ ├── RedashContainer.jsx │ ├── Section.jsx │ ├── helpers.js │ ├── icons.jsx │ ├── metrics-graphics.js │ ├── perfherder │ │ └── subbenchmarks.jsx │ └── timePickers.js ├── vendor │ ├── Template.js │ ├── auth0 │ │ ├── cache.js │ │ ├── client.jsx │ │ ├── jwt.js │ │ ├── qr.jsx │ │ └── utils.js │ ├── colors.js │ ├── components │ │ ├── chartJs │ │ │ ├── ChartJsWrapper.jsx │ │ │ ├── CustomTooltip.jsx │ │ │ ├── Notes.jsx │ │ │ ├── README.md │ │ │ ├── chartSchema.json │ │ │ ├── chartSchema.md │ │ │ └── utils.js │ │ ├── links.jsx │ │ └── navigation │ │ │ ├── DurationPicker.jsx │ │ │ ├── Picker.jsx │ │ │ ├── TimePicker.jsx │ │ │ └── index.jsx │ ├── convert.js │ ├── datas.js │ ├── dates.js │ ├── db_cache.js │ ├── durations.js │ ├── errors.jsx │ ├── jx │ │ ├── Edge.js │ │ ├── Matrix.js │ │ ├── README.md │ │ ├── cubes.js │ │ ├── domains.js │ │ └── expressions.js │ ├── logs.js │ ├── math.js │ ├── perfherder.js │ ├── requests.js │ ├── settings.js │ ├── signals.js │ ├── strings.js │ ├── timer.js │ ├── utils.js │ └── vectors.js └── windows │ ├── TP6.jsx │ ├── Windows.jsx │ ├── config.js │ ├── constants.js │ ├── subtests.jsx │ ├── target-status.jsx │ └── widget.jsx ├── static.json ├── test ├── components │ └── graph-container.test.js ├── mocks │ └── nimbledroidData.json ├── quantum │ ├── __snapshots__ │ │ ├── index-64.test.jsx.snap │ │ └── target-status.test.jsx.snap │ ├── index-64.test.jsx │ └── target-status.test.jsx ├── utils │ ├── DashboardPage.test.jsx │ ├── __snapshots__ │ │ └── DashboardPage.test.jsx.snap │ ├── chartJs │ │ └── CustomTooltip.checklist.md │ ├── helpers.test.js │ └── subbenchmarks.test.js ├── vendor │ ├── Data.test.js │ ├── Template.test.js │ ├── convert.test.js │ ├── dates.test.js │ ├── logs.test.js │ ├── math.test.js │ ├── requests.test.js │ ├── signals.test.js │ ├── strings.test.js │ ├── utils.test.js │ └── vectors.test.js └── views │ ├── Android.test.jsx │ ├── Home.test.jsx │ ├── QuantumTP6.test.jsx │ ├── QuantumTP61.test.jsx │ ├── QuantumTP62.test.jsx │ ├── QuantumTP63.test.jsx │ ├── QuantumTP6m.test.jsx │ └── __snapshots__ │ ├── Android.test.jsx.snap │ ├── Home.test.jsx.snap │ ├── QuantumTP6.test.jsx.snap │ ├── QuantumTP61.test.jsx.snap │ ├── QuantumTP62.test.jsx.snap │ ├── QuantumTP63.test.jsx.snap │ └── QuantumTP6m.test.jsx.snap ├── webpack.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.neutrinorc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/.neutrinorc.js -------------------------------------------------------------------------------- /.renovaterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/.renovaterc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/app.json -------------------------------------------------------------------------------- /docs/about-media-playback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/docs/about-media-playback.md -------------------------------------------------------------------------------- /docs/about-media-playback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/docs/about-media-playback.png -------------------------------------------------------------------------------- /docs/about-pageload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/docs/about-pageload.md -------------------------------------------------------------------------------- /docs/about-pageload1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/docs/about-pageload1.png -------------------------------------------------------------------------------- /docs/about-pageload2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/docs/about-pageload2.png -------------------------------------------------------------------------------- /docs/about-pageload3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/docs/about-pageload3.png -------------------------------------------------------------------------------- /docs/about-pageload4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/docs/about-pageload4.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/jest.config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/renovate.json -------------------------------------------------------------------------------- /src/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/Home.jsx -------------------------------------------------------------------------------- /src/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/NotFound.jsx -------------------------------------------------------------------------------- /src/android/TP6m.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/android/TP6m.jsx -------------------------------------------------------------------------------- /src/android/TP6mAggregate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/android/TP6mAggregate.jsx -------------------------------------------------------------------------------- /src/android/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/android/config.js -------------------------------------------------------------------------------- /src/android/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/android/index.jsx -------------------------------------------------------------------------------- /src/banner/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/banner/Banner.jsx -------------------------------------------------------------------------------- /src/bugzilla/BugzillaGraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/bugzilla/BugzillaGraph.jsx -------------------------------------------------------------------------------- /src/bugzilla/getBugsData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/bugzilla/getBugsData.js -------------------------------------------------------------------------------- /src/bugzilla/query.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/bugzilla/query.jsx -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/config.json -------------------------------------------------------------------------------- /src/decommission.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/decommission.jsx -------------------------------------------------------------------------------- /src/fission/TP6Fission.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/fission/TP6Fission.jsx -------------------------------------------------------------------------------- /src/fission/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/fission/config.js -------------------------------------------------------------------------------- /src/fission/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/fission/index.jsx -------------------------------------------------------------------------------- /src/github/GithubGraph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/github/GithubGraph.jsx -------------------------------------------------------------------------------- /src/github/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/github/query.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/playback/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/playback/config.js -------------------------------------------------------------------------------- /src/playback/details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/playback/details.jsx -------------------------------------------------------------------------------- /src/playback/playback.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/playback/playback.jsx -------------------------------------------------------------------------------- /src/playback/summary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/playback/summary.jsx -------------------------------------------------------------------------------- /src/power/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/power/config.js -------------------------------------------------------------------------------- /src/power/details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/power/details.jsx -------------------------------------------------------------------------------- /src/power/power.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/power/power.jsx -------------------------------------------------------------------------------- /src/power/summary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/power/summary.jsx -------------------------------------------------------------------------------- /src/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/prod-config.json -------------------------------------------------------------------------------- /src/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/routes.jsx -------------------------------------------------------------------------------- /src/static/GitHub-Mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/static/GitHub-Mark.png -------------------------------------------------------------------------------- /src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/static/favicon.ico -------------------------------------------------------------------------------- /src/telemetry/graph.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/telemetry/graph.jsx -------------------------------------------------------------------------------- /src/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/test-config.json -------------------------------------------------------------------------------- /src/utils/DashboardPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/utils/DashboardPage.jsx -------------------------------------------------------------------------------- /src/utils/PerfherderGraphContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/utils/PerfherderGraphContainer.jsx -------------------------------------------------------------------------------- /src/utils/RedashContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/utils/RedashContainer.jsx -------------------------------------------------------------------------------- /src/utils/Section.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/utils/Section.jsx -------------------------------------------------------------------------------- /src/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/utils/helpers.js -------------------------------------------------------------------------------- /src/utils/icons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/utils/icons.jsx -------------------------------------------------------------------------------- /src/utils/metrics-graphics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/utils/metrics-graphics.js -------------------------------------------------------------------------------- /src/utils/perfherder/subbenchmarks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/utils/perfherder/subbenchmarks.jsx -------------------------------------------------------------------------------- /src/utils/timePickers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/utils/timePickers.js -------------------------------------------------------------------------------- /src/vendor/Template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/Template.js -------------------------------------------------------------------------------- /src/vendor/auth0/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/auth0/cache.js -------------------------------------------------------------------------------- /src/vendor/auth0/client.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/auth0/client.jsx -------------------------------------------------------------------------------- /src/vendor/auth0/jwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/auth0/jwt.js -------------------------------------------------------------------------------- /src/vendor/auth0/qr.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/auth0/qr.jsx -------------------------------------------------------------------------------- /src/vendor/auth0/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/auth0/utils.js -------------------------------------------------------------------------------- /src/vendor/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/colors.js -------------------------------------------------------------------------------- /src/vendor/components/chartJs/ChartJsWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/chartJs/ChartJsWrapper.jsx -------------------------------------------------------------------------------- /src/vendor/components/chartJs/CustomTooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/chartJs/CustomTooltip.jsx -------------------------------------------------------------------------------- /src/vendor/components/chartJs/Notes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/chartJs/Notes.jsx -------------------------------------------------------------------------------- /src/vendor/components/chartJs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/chartJs/README.md -------------------------------------------------------------------------------- /src/vendor/components/chartJs/chartSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/chartJs/chartSchema.json -------------------------------------------------------------------------------- /src/vendor/components/chartJs/chartSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/chartJs/chartSchema.md -------------------------------------------------------------------------------- /src/vendor/components/chartJs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/chartJs/utils.js -------------------------------------------------------------------------------- /src/vendor/components/links.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/links.jsx -------------------------------------------------------------------------------- /src/vendor/components/navigation/DurationPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/navigation/DurationPicker.jsx -------------------------------------------------------------------------------- /src/vendor/components/navigation/Picker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/navigation/Picker.jsx -------------------------------------------------------------------------------- /src/vendor/components/navigation/TimePicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/navigation/TimePicker.jsx -------------------------------------------------------------------------------- /src/vendor/components/navigation/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/components/navigation/index.jsx -------------------------------------------------------------------------------- /src/vendor/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/convert.js -------------------------------------------------------------------------------- /src/vendor/datas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/datas.js -------------------------------------------------------------------------------- /src/vendor/dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/dates.js -------------------------------------------------------------------------------- /src/vendor/db_cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/db_cache.js -------------------------------------------------------------------------------- /src/vendor/durations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/durations.js -------------------------------------------------------------------------------- /src/vendor/errors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/errors.jsx -------------------------------------------------------------------------------- /src/vendor/jx/Edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/jx/Edge.js -------------------------------------------------------------------------------- /src/vendor/jx/Matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/jx/Matrix.js -------------------------------------------------------------------------------- /src/vendor/jx/README.md: -------------------------------------------------------------------------------- 1 | # cubes.js 2 | 3 | ## Multi-dimensional array operators 4 | 5 | -------------------------------------------------------------------------------- /src/vendor/jx/cubes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/jx/cubes.js -------------------------------------------------------------------------------- /src/vendor/jx/domains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/jx/domains.js -------------------------------------------------------------------------------- /src/vendor/jx/expressions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/jx/expressions.js -------------------------------------------------------------------------------- /src/vendor/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/logs.js -------------------------------------------------------------------------------- /src/vendor/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/math.js -------------------------------------------------------------------------------- /src/vendor/perfherder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/perfherder.js -------------------------------------------------------------------------------- /src/vendor/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/requests.js -------------------------------------------------------------------------------- /src/vendor/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/settings.js -------------------------------------------------------------------------------- /src/vendor/signals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/signals.js -------------------------------------------------------------------------------- /src/vendor/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/strings.js -------------------------------------------------------------------------------- /src/vendor/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/timer.js -------------------------------------------------------------------------------- /src/vendor/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/utils.js -------------------------------------------------------------------------------- /src/vendor/vectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/vendor/vectors.js -------------------------------------------------------------------------------- /src/windows/TP6.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/windows/TP6.jsx -------------------------------------------------------------------------------- /src/windows/Windows.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/windows/Windows.jsx -------------------------------------------------------------------------------- /src/windows/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/windows/config.js -------------------------------------------------------------------------------- /src/windows/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/windows/constants.js -------------------------------------------------------------------------------- /src/windows/subtests.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/windows/subtests.jsx -------------------------------------------------------------------------------- /src/windows/target-status.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/windows/target-status.jsx -------------------------------------------------------------------------------- /src/windows/widget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/src/windows/widget.jsx -------------------------------------------------------------------------------- /static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/static.json -------------------------------------------------------------------------------- /test/components/graph-container.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/components/graph-container.test.js -------------------------------------------------------------------------------- /test/mocks/nimbledroidData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/mocks/nimbledroidData.json -------------------------------------------------------------------------------- /test/quantum/__snapshots__/index-64.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/quantum/__snapshots__/index-64.test.jsx.snap -------------------------------------------------------------------------------- /test/quantum/__snapshots__/target-status.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/quantum/__snapshots__/target-status.test.jsx.snap -------------------------------------------------------------------------------- /test/quantum/index-64.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/quantum/index-64.test.jsx -------------------------------------------------------------------------------- /test/quantum/target-status.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/quantum/target-status.test.jsx -------------------------------------------------------------------------------- /test/utils/DashboardPage.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/utils/DashboardPage.test.jsx -------------------------------------------------------------------------------- /test/utils/__snapshots__/DashboardPage.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/utils/__snapshots__/DashboardPage.test.jsx.snap -------------------------------------------------------------------------------- /test/utils/chartJs/CustomTooltip.checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/utils/chartJs/CustomTooltip.checklist.md -------------------------------------------------------------------------------- /test/utils/helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/utils/helpers.test.js -------------------------------------------------------------------------------- /test/utils/subbenchmarks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/utils/subbenchmarks.test.js -------------------------------------------------------------------------------- /test/vendor/Data.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/vendor/Data.test.js -------------------------------------------------------------------------------- /test/vendor/Template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/vendor/Template.test.js -------------------------------------------------------------------------------- /test/vendor/convert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/vendor/convert.test.js -------------------------------------------------------------------------------- /test/vendor/dates.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/vendor/dates.test.js -------------------------------------------------------------------------------- /test/vendor/logs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/vendor/logs.test.js -------------------------------------------------------------------------------- /test/vendor/math.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/vendor/math.test.js -------------------------------------------------------------------------------- /test/vendor/requests.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/vendor/requests.test.js -------------------------------------------------------------------------------- /test/vendor/signals.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/vendor/signals.test.js -------------------------------------------------------------------------------- /test/vendor/strings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/vendor/strings.test.js -------------------------------------------------------------------------------- /test/vendor/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/vendor/utils.test.js -------------------------------------------------------------------------------- /test/vendor/vectors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/vendor/vectors.test.js -------------------------------------------------------------------------------- /test/views/Android.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/Android.test.jsx -------------------------------------------------------------------------------- /test/views/Home.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/Home.test.jsx -------------------------------------------------------------------------------- /test/views/QuantumTP6.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/QuantumTP6.test.jsx -------------------------------------------------------------------------------- /test/views/QuantumTP61.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/QuantumTP61.test.jsx -------------------------------------------------------------------------------- /test/views/QuantumTP62.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/QuantumTP62.test.jsx -------------------------------------------------------------------------------- /test/views/QuantumTP63.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/QuantumTP63.test.jsx -------------------------------------------------------------------------------- /test/views/QuantumTP6m.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/QuantumTP6m.test.jsx -------------------------------------------------------------------------------- /test/views/__snapshots__/Android.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/__snapshots__/Android.test.jsx.snap -------------------------------------------------------------------------------- /test/views/__snapshots__/Home.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/__snapshots__/Home.test.jsx.snap -------------------------------------------------------------------------------- /test/views/__snapshots__/QuantumTP6.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/__snapshots__/QuantumTP6.test.jsx.snap -------------------------------------------------------------------------------- /test/views/__snapshots__/QuantumTP61.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/__snapshots__/QuantumTP61.test.jsx.snap -------------------------------------------------------------------------------- /test/views/__snapshots__/QuantumTP62.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/__snapshots__/QuantumTP62.test.jsx.snap -------------------------------------------------------------------------------- /test/views/__snapshots__/QuantumTP63.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/__snapshots__/QuantumTP63.test.jsx.snap -------------------------------------------------------------------------------- /test/views/__snapshots__/QuantumTP6m.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/test/views/__snapshots__/QuantumTP6m.test.jsx.snap -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-frontend-infra/firefox-health-dashboard/HEAD/yarn.lock --------------------------------------------------------------------------------