├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation-improvements.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── demo-workflow.yml │ ├── gamma-workflow.yml │ ├── mainline-dev-e2e-tests.yml │ ├── mainline-dev-unit-tests.yml │ ├── mainline-unit-tests.yml │ ├── newpr-code-style.yml │ ├── newpr-unit-tests.yml │ ├── pipeline-workflow.yml │ ├── pull-request-workflow.yml │ └── security-scan.yml ├── .gitignore ├── .hintrc ├── .husky ├── commit-msg ├── post-merge └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .viperlightignore ├── .viperlightrc ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Config ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── add-license.sh ├── backend ├── .eslintrc.js ├── .estlintignore ├── .gitignore ├── .nvmrc ├── README.md ├── integtests │ ├── IntegrationTestSuite.postman_collection.json │ ├── README.md │ └── Versioning Edge Cases.postman_collection.json ├── jest.config.js ├── package-lock.json ├── package.json ├── postman │ ├── Auth API Tests on Protected PDoA.postman_collection.json │ ├── Auth API Tests Environment.postman_environment.json │ ├── Auth API Tests on Public PDoA.postman_collection.json │ ├── Performance Dashboard API.postman_collection.json │ └── openapi.yaml ├── src │ ├── lambda │ │ ├── api.ts │ │ └── streams.ts │ ├── lib │ │ ├── api │ │ │ ├── dashboard-api.ts │ │ │ ├── dataset-api.ts │ │ │ ├── index.ts │ │ │ ├── ingest-api.ts │ │ │ ├── middleware │ │ │ │ ├── __tests__ │ │ │ │ │ ├── auth.test.ts │ │ │ │ │ ├── csp.test.ts │ │ │ │ │ ├── error-handler.test.ts │ │ │ │ │ ├── parser-error-handler.test.ts │ │ │ │ │ └── rbac.test.ts │ │ │ │ ├── auth.ts │ │ │ │ ├── cors-handler.ts │ │ │ │ ├── csp.ts │ │ │ │ ├── csrf-handler.ts │ │ │ │ ├── error-handler.ts │ │ │ │ ├── parser-error-handler.ts │ │ │ │ ├── rbac.ts │ │ │ │ └── uri-error-handler.ts │ │ │ ├── public-api.ts │ │ │ ├── settings-api.ts │ │ │ ├── topicarea-api.ts │ │ │ └── user-api.ts │ │ ├── controllers │ │ │ ├── __tests__ │ │ │ │ ├── auditlog-ctrl.test.ts │ │ │ │ ├── dashboard-ctrl.test.ts │ │ │ │ ├── dataset-ctrl.test.ts │ │ │ │ ├── homepage-ctrl.test.ts │ │ │ │ ├── ingestapi-ctrl.test.ts │ │ │ │ ├── settings-ctrl.test.ts │ │ │ │ ├── topicarea-ctrl.test.ts │ │ │ │ ├── user-ctrl.test.ts │ │ │ │ └── widget-ctrl.test.ts │ │ │ ├── auditlog-ctrl.ts │ │ │ ├── dashboard-ctrl.ts │ │ │ ├── dataset-ctrl.ts │ │ │ ├── homepage-ctrl.ts │ │ │ ├── ingestapi-ctrl.ts │ │ │ ├── settings-ctrl.ts │ │ │ ├── topicarea-ctrl.ts │ │ │ ├── user-ctrl.ts │ │ │ └── widget-ctrl.ts │ │ ├── errors │ │ │ └── index.ts │ │ ├── factories │ │ │ ├── __tests__ │ │ │ │ ├── auditlog-factory.test.ts │ │ │ │ ├── dashboard-factory.test.ts │ │ │ │ ├── dataset-factory.test.ts │ │ │ │ ├── homepage-factory.test.ts │ │ │ │ ├── settings-factory.test.ts │ │ │ │ ├── topicarea-factory.test.ts │ │ │ │ ├── user-factory.test.ts │ │ │ │ └── widget-factory.test.ts │ │ │ ├── auditlog-factory.ts │ │ │ ├── dashboard-factory.ts │ │ │ ├── dataset-factory.ts │ │ │ ├── homepage-factory.ts │ │ │ ├── settings-factory.ts │ │ │ ├── topicarea-factory.ts │ │ │ ├── user-factory.ts │ │ │ └── widget-factory.ts │ │ ├── jsonschema │ │ │ ├── api │ │ │ │ └── RemoveUsers.json │ │ │ └── datasets │ │ │ │ ├── metrics.json │ │ │ │ └── none.json │ │ ├── models │ │ │ ├── auditlog.ts │ │ │ ├── dashboard.ts │ │ │ ├── dataset.ts │ │ │ ├── homepage.ts │ │ │ ├── settings.ts │ │ │ ├── topicarea.ts │ │ │ ├── user.ts │ │ │ └── widget.ts │ │ ├── repositories │ │ │ ├── __tests__ │ │ │ │ ├── auditlog-repo.test.ts │ │ │ │ ├── dashboard-repo.test.ts │ │ │ │ ├── dataset-repo.test.ts │ │ │ │ ├── homepage-repo.test.ts │ │ │ │ ├── settings-repo.test.ts │ │ │ │ ├── topicarea-repo.test.ts │ │ │ │ ├── user-repo.test.ts │ │ │ │ └── widget-repo.test.ts │ │ │ ├── auditlog-repo.ts │ │ │ ├── base.ts │ │ │ ├── dashboard-repo.ts │ │ │ ├── dataset-repo.ts │ │ │ ├── homepage-repo.ts │ │ │ ├── settings-repo.ts │ │ │ ├── topicarea-repo.ts │ │ │ ├── user-repo.ts │ │ │ └── widget-repo.ts │ │ ├── services │ │ │ ├── __tests__ │ │ │ │ ├── audit-trail.test.ts │ │ │ │ ├── auth.test.ts │ │ │ │ ├── dataset-service.test.ts │ │ │ │ ├── dynamodb.test.ts │ │ │ │ ├── friendlyurl-service.test.ts │ │ │ │ └── stream-processor.test.ts │ │ │ ├── audit-trail.ts │ │ │ ├── auth.ts │ │ │ ├── cognito.ts │ │ │ ├── dataset-service.ts │ │ │ ├── dynamodb.ts │ │ │ ├── friendlyurl-service.ts │ │ │ ├── logger.ts │ │ │ ├── s3.ts │ │ │ └── stream-processor.ts │ │ └── types │ │ │ └── express │ │ │ └── index.d.ts │ └── local │ │ └── server.ts └── tsconfig.json ├── cdk ├── .estlintignore ├── .gitignore ├── .npmignore ├── .nvmrc ├── README.md ├── bin │ ├── main.ts │ └── pipeline.ts ├── cdk.json ├── jest.config.js ├── lib │ ├── auth-stack.ts │ ├── authz-stack.ts │ ├── backend-stack.ts │ ├── constructs │ │ ├── api.ts │ │ ├── appRegistry.ts │ │ ├── contentstorage.ts │ │ ├── database.ts │ │ ├── datastorage.ts │ │ ├── exampledashboardlambda.ts │ │ ├── function-aspect.ts │ │ ├── github-integration.ts │ │ ├── lambdas.ts │ │ ├── parameters.ts │ │ ├── policy-aspect.ts │ │ └── serveraccesslogstorage.ts │ ├── dashboardexamples-stack.ts │ ├── data │ │ └── email-template.html │ ├── envconfig │ │ └── index.ts │ ├── frontend-config-stack.ts │ ├── frontend-stack.ts │ ├── ops-stack.ts │ └── pipeline-stack.ts ├── package-lock.json ├── package.json └── tsconfig.json ├── check-license.sh ├── deploy.sh ├── deployment ├── build-open-source-dist.sh ├── build-s3-dist.sh ├── cdk-solution-helper │ ├── .gitignore │ ├── README.md │ ├── index.js │ ├── package-lock.json │ └── package.json ├── performance-dashboard-on-aws.template.json └── run-unit-tests.sh ├── docs ├── README.md ├── api.md ├── custom-config.md ├── images │ ├── Dashboard_Images.jpg │ ├── architecture.svg │ ├── custom-homepage.png │ ├── installation │ │ ├── append-topicarea-attribute.png │ │ ├── create-user.png │ │ ├── homepage-dynamodb-save-item.png │ │ ├── homepage-dynamodb-text-view.png │ │ ├── homepage-dynamodb.png │ │ ├── insert-topicarea-attribute.png │ │ ├── launch-cft.png │ │ ├── remove-topicarea-attribute.png │ │ ├── searchbar.png │ │ ├── stacks-created.png │ │ ├── topicarea-dynamodb.png │ │ ├── topicarea-item.png │ │ └── uninstall-stack-error.png │ ├── launch-stack.svg │ ├── postman │ │ ├── apigateway-api-key.png │ │ ├── apigateway-url.png │ │ ├── collection-variables.png │ │ ├── edit-collection.png │ │ ├── import-success.png │ │ ├── import.png │ │ ├── jwt-token.png │ │ └── postman-request.png │ └── protect-login-page.png ├── installation.md ├── on-prem-access.md ├── postman-collection.md ├── runbook.md ├── scalability.md ├── security.md └── user-guide.pdf ├── e2e-tests ├── .gitignore ├── .nvmrc ├── README.md ├── cypress │ ├── fixtures │ │ ├── chart.csv │ │ ├── chart_missing_header.csv │ │ ├── homepage.json │ │ ├── sample_piechart.csv │ │ ├── samplebar.csv │ │ └── table.csv │ ├── integration │ │ ├── chart-render.spec.ts │ │ ├── contentitems.spec.ts │ │ ├── dashboards.spec.ts │ │ ├── homepage.spec.ts │ │ ├── settings.spec.ts │ │ └── users.spec.ts │ ├── pages │ │ ├── AddChart.ts │ │ ├── AddContentItem.ts │ │ ├── AddMetrics.ts │ │ ├── AddTable.ts │ │ ├── AddText.ts │ │ ├── AddUsers.ts │ │ ├── AdminHomepage.ts │ │ ├── ChangeUsersRole.ts │ │ ├── CreateDashboard.ts │ │ ├── CreateTopicArea.ts │ │ ├── DashboardListing.ts │ │ ├── DateTimeFormat.ts │ │ ├── EditChart.ts │ │ ├── EditDashboard.ts │ │ ├── EditMetrics.ts │ │ ├── EditTable.ts │ │ ├── EditText.ts │ │ ├── EditTopicArea.ts │ │ ├── EditTopicAreaLabel.ts │ │ ├── Login.ts │ │ ├── PublicHomepage.ts │ │ ├── PublishedSite.ts │ │ ├── PublishingGuidance.ts │ │ ├── Settings.ts │ │ ├── TopicAreaListing.ts │ │ └── UserListing.ts │ ├── plugins │ │ └── index.js │ ├── support │ │ └── index.ts │ └── utils │ │ └── selectors.ts ├── package-lock.json ├── package.json └── tsconfig.json ├── examples ├── .eslintrc.js ├── .estlintignore ├── .gitignore ├── .nvmrc ├── README.md ├── dynamodboption.png ├── jest.config.js ├── package-lock.json ├── package.json ├── resources │ ├── english │ │ ├── files │ │ │ ├── 3a57b8ac-f108-494d-bcc0-fb948b79b3b0.csv │ │ │ ├── 3a57b8ac-f108-494d-bcc0-fb948b79b3b0.json │ │ │ ├── 5824d4b0-a64b-4e0d-be3e-126476e9ca7f.json │ │ │ ├── 83c62f00-2eb8-411a-ace5-a6692a9dafaf.csv │ │ │ ├── 83c62f00-2eb8-411a-ace5-a6692a9dafaf.json │ │ │ ├── 8765a857-9d1a-4a61-8633-e342181bff60.csv │ │ │ ├── 8765a857-9d1a-4a61-8633-e342181bff60.json │ │ │ ├── 88dafb4e-9d08-4daf-b8bf-b9ee82bad75c.csv │ │ │ ├── 88dafb4e-9d08-4daf-b8bf-b9ee82bad75c.json │ │ │ ├── a2b0c70e-951a-40a9-8a24-ba05abc05ff1.csv │ │ │ ├── a2b0c70e-951a-40a9-8a24-ba05abc05ff1.json │ │ │ ├── b629b374-9ffe-49fe-85a4-2363e2c21532.csv │ │ │ └── b629b374-9ffe-49fe-85a4-2363e2c21532.json │ │ └── snapshot.json │ ├── portuguese │ │ ├── files │ │ │ ├── 02885f77-6ad9-4d76-9a1e-294b6cbdca04.csv │ │ │ ├── 02885f77-6ad9-4d76-9a1e-294b6cbdca04.json │ │ │ ├── 5bd53e58-571b-4b2b-b737-730f8435f7cc.csv │ │ │ ├── 5bd53e58-571b-4b2b-b737-730f8435f7cc.json │ │ │ ├── 7db7112c-927c-45aa-8665-0b9b158d89ea.json │ │ │ ├── 980b249c-e8aa-4eb6-8049-bfc8b140e44b.csv │ │ │ ├── 980b249c-e8aa-4eb6-8049-bfc8b140e44b.json │ │ │ ├── 9c2c525d-4f9c-4517-9b8a-11a368811874.csv │ │ │ ├── 9c2c525d-4f9c-4517-9b8a-11a368811874.json │ │ │ ├── d086ea04-b507-4386-aaf8-ca1ce344732a.csv │ │ │ ├── d086ea04-b507-4386-aaf8-ca1ce344732a.json │ │ │ ├── f09cf4af-61dc-4a92-a5f1-f6904f1f5258.csv │ │ │ └── f09cf4af-61dc-4a92-a5f1-f6904f1f5258.json │ │ └── snapshot.json │ └── spanish │ │ ├── files │ │ ├── 24428a15-c6ee-4e00-9609-efac5603e596.csv │ │ ├── 24428a15-c6ee-4e00-9609-efac5603e596.json │ │ ├── 43ab1b2c-87b0-49d7-b4f0-3713e5c28f0b.csv │ │ ├── 43ab1b2c-87b0-49d7-b4f0-3713e5c28f0b.json │ │ ├── 688ec0bc-acf1-4ac2-9e86-7367f55e8fd7.csv │ │ ├── 688ec0bc-acf1-4ac2-9e86-7367f55e8fd7.json │ │ ├── 86fc71c6-2b0a-4eaa-a8b5-8a7472289094.json │ │ ├── 94939686-5b80-4cbc-b0cf-b1717193a3c5.csv │ │ ├── 94939686-5b80-4cbc-b0cf-b1717193a3c5.json │ │ ├── 9d565e3e-ff59-4ab1-b33c-8ed0191b0c66.csv │ │ ├── 9d565e3e-ff59-4ab1-b33c-8ed0191b0c66.json │ │ ├── cce3ef0b-074d-41d0-8782-00205aa41134.csv │ │ └── cce3ef0b-074d-41d0-8782-00205aa41134.json │ │ └── snapshot.json ├── src │ ├── common.ts │ ├── env.ts │ ├── export.ts │ ├── import.ts │ ├── index.ts │ └── services │ │ ├── exporter-service.ts │ │ ├── fs-service.ts │ │ ├── importer-service.ts │ │ └── s3-service.ts ├── tsconfig.json └── viewasoptions.png ├── frontend ├── .env ├── .eslintrc.js ├── .estlintignore ├── .gitignore ├── .nvmrc ├── .viperlightrc ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── images │ │ ├── chart-content-item.svg │ │ ├── image-content-item.svg │ │ ├── image-scale-100.svg │ │ ├── image-scale-25.svg │ │ ├── image-scale-50.svg │ │ ├── image-scale-75.svg │ │ ├── metrics-content-item.svg │ │ ├── publish-success.svg │ │ ├── section-content-item.svg │ │ ├── table-content-item.svg │ │ └── text-content-item.svg │ ├── index.html │ ├── manifest.json │ ├── robots.txt │ └── samplecsv │ │ ├── EditColors-CSV-Bar.csv │ │ ├── EditColors-CSV-Column.csv │ │ ├── Example-CSV-Bar.csv │ │ ├── Example-CSV-Column.csv │ │ ├── Example-CSV-Donut.csv │ │ ├── Example-CSV-Line.csv │ │ ├── Example-CSV-Part-to-whole.csv │ │ ├── Example-CSV-Pie.csv │ │ └── Example-CSV-Table.csv ├── src │ ├── App.tsx │ ├── __tests__ │ │ ├── App.test.tsx │ │ └── __snapshots__ │ │ │ └── App.test.tsx.snap │ ├── amplify-config.ts │ ├── amplify-locales │ │ ├── en │ │ │ └── translation.json │ │ ├── es │ │ │ └── translation.json │ │ └── pt │ │ │ └── translation.json │ ├── components │ │ ├── Accordion.tsx │ │ ├── Alert.tsx │ │ ├── ArchivedTab.tsx │ │ ├── Arrows.tsx │ │ ├── BarChartWidget.module.scss │ │ ├── BarChartWidget.tsx │ │ ├── Breadcrumbs.scss │ │ ├── Breadcrumbs.tsx │ │ ├── Button.scss │ │ ├── Button.tsx │ │ ├── CardGroup.tsx │ │ ├── ChartWidget.tsx │ │ ├── CheckData.tsx │ │ ├── ChooseData.module.scss │ │ ├── ChooseData.tsx │ │ ├── ColumnChartWidget.tsx │ │ ├── Combobox.scss │ │ ├── Combobox.tsx │ │ ├── DashboardHeader.tsx │ │ ├── DataTable.scss │ │ ├── DataTable.tsx │ │ ├── DatePicker.scss │ │ ├── DatePicker.tsx │ │ ├── DateRangePicker.tsx │ │ ├── DonutChartWidget.tsx │ │ ├── DraftsTab.tsx │ │ ├── Dropdown.tsx │ │ ├── DropdownMenu.css │ │ ├── DropdownMenu.tsx │ │ ├── Favicon.tsx │ │ ├── FileInput.css │ │ ├── FileInput.tsx │ │ ├── FriendlyURLInput.tsx │ │ ├── Header.tsx │ │ ├── ImageWidget.tsx │ │ ├── Legend.tsx │ │ ├── LineChartWidget.module.scss │ │ ├── LineChartWidget.tsx │ │ ├── Link.scss │ │ ├── Link.tsx │ │ ├── Logo.tsx │ │ ├── Markdown.css │ │ ├── Markdown.tsx │ │ ├── MarkdownRender.scss │ │ ├── MarkdownRender.tsx │ │ ├── MetricsCardGroup.tsx │ │ ├── MetricsList.css │ │ ├── MetricsList.tsx │ │ ├── MetricsWidget.tsx │ │ ├── Modal.css │ │ ├── Modal.tsx │ │ ├── Navigation.tsx │ │ ├── NumberField.tsx │ │ ├── Page.tsx │ │ ├── Pagination.scss │ │ ├── Pagination.tsx │ │ ├── PartWholeChartWidget.tsx │ │ ├── PieChartWidget.tsx │ │ ├── PrimaryActionBar.tsx │ │ ├── PublishDashboardModal.module.scss │ │ ├── PublishDashboardModal.tsx │ │ ├── PublishedTab.tsx │ │ ├── RadioButtons.tsx │ │ ├── RadioButtonsTile.module.scss │ │ ├── RadioButtonsTile.tsx │ │ ├── Search.module.scss │ │ ├── Search.tsx │ │ ├── SecondaryActionBar.tsx │ │ ├── SectionWidget.tsx │ │ ├── ShareButton.module.scss │ │ ├── ShareButton.tsx │ │ ├── Spinner.tsx │ │ ├── StepIndicator.css │ │ ├── StepIndicator.tsx │ │ ├── Tab.module.scss │ │ ├── Tab.tsx │ │ ├── TabVertical.module.scss │ │ ├── TabVertical.tsx │ │ ├── Table.tsx │ │ ├── TableWidget.tsx │ │ ├── Tabs.tsx │ │ ├── TabsVertical.tsx │ │ ├── TextField.tsx │ │ ├── TextWidget.tsx │ │ ├── Tooltip.tsx │ │ ├── VisualizeChart.tsx │ │ ├── VisualizeTable.tsx │ │ ├── WidgetRender.module.scss │ │ ├── WidgetRender.tsx │ │ ├── WidgetTree.tsx │ │ ├── WidgetTreeActionMenu.tsx │ │ ├── WidgetTreeItem.module.scss │ │ ├── WidgetTreeItem.tsx │ │ ├── WidgetTreeItemContent.tsx │ │ ├── WidgetTreeSectionDivider.tsx │ │ └── __tests__ │ │ │ ├── Accordion.test.tsx │ │ │ ├── Alert.test.tsx │ │ │ ├── ArchivedTab.test.tsx │ │ │ ├── BarChartWidget.test.tsx │ │ │ ├── Breadcrumbs.test.tsx │ │ │ ├── Button.test.tsx │ │ │ ├── CardGroup.test.tsx │ │ │ ├── ChartWidget.test.tsx │ │ │ ├── CheckData.test.tsx │ │ │ ├── ChooseData.test.tsx │ │ │ ├── ColumnChartWidget.test.tsx │ │ │ ├── Combobox.test.tsx │ │ │ ├── DashboardHeader.test.tsx │ │ │ ├── DataTable.test.tsx │ │ │ ├── DatePicker.test.tsx │ │ │ ├── DateRangePicker.test.tsx │ │ │ ├── DonutChartWidget.test.tsx │ │ │ ├── DraftsTab.test.tsx │ │ │ ├── Dropdown.test.tsx │ │ │ ├── DropdownMenu.test.tsx │ │ │ ├── FileInput.test.tsx │ │ │ ├── FriendlyURLInput.test.tsx │ │ │ ├── Header.test.tsx │ │ │ ├── ImageWidget.test.tsx │ │ │ ├── Legend.test.tsx │ │ │ ├── LineChartWidget.test.tsx │ │ │ ├── Logo.test.tsx │ │ │ ├── Markdown.test.tsx │ │ │ ├── MetricsList.test.tsx │ │ │ ├── MetricsWidget.test.tsx │ │ │ ├── Modal.test.tsx │ │ │ ├── Navigation.test.tsx │ │ │ ├── Page.test.tsx │ │ │ ├── Pagination.test.tsx │ │ │ ├── PartWholeChartWidget.test.tsx │ │ │ ├── PieChartWidget.test.tsx │ │ │ ├── PrimaryActionBar.test.tsx │ │ │ ├── PublishDashboardModal.test.tsx │ │ │ ├── PublishedTab.test.tsx │ │ │ ├── RadioButtons.test.tsx │ │ │ ├── Search.test.tsx │ │ │ ├── SecondaryActionBar.test.tsx │ │ │ ├── SectionWidget.test.tsx │ │ │ ├── ShareButton.test.tsx │ │ │ ├── StepIndicator.test.tsx │ │ │ ├── Tab.test.tsx │ │ │ ├── Table.test.tsx │ │ │ ├── TableWidget.test.tsx │ │ │ ├── Tabs.test.tsx │ │ │ ├── TextField.test.tsx │ │ │ ├── TextWidget.test.tsx │ │ │ ├── Tooltip.test.tsx │ │ │ ├── VisualizeChart.test.tsx │ │ │ ├── VisualizeTable.test.tsx │ │ │ ├── WidgetRender.test.tsx │ │ │ ├── WidgetTree.test.tsx │ │ │ ├── WidgetTreeSectionDivider.test.tsx │ │ │ └── __snapshots__ │ │ │ ├── Accordion.test.tsx.snap │ │ │ ├── Alert.test.tsx.snap │ │ │ ├── Breadcrumbs.test.tsx.snap │ │ │ ├── Button.test.tsx.snap │ │ │ ├── CardGroup.test.tsx.snap │ │ │ ├── CheckData.test.tsx.snap │ │ │ ├── ChooseData.test.tsx.snap │ │ │ ├── Combobox.test.tsx.snap │ │ │ ├── DashboardHeader.test.tsx.snap │ │ │ ├── DataTable.test.tsx.snap │ │ │ ├── DatePicker.test.tsx.snap │ │ │ ├── DateRangePicker.test.tsx.snap │ │ │ ├── Dropdown.test.tsx.snap │ │ │ ├── DropdownMenu.test.tsx.snap │ │ │ ├── FileInput.test.tsx.snap │ │ │ ├── Header.test.tsx.snap │ │ │ ├── ImageWidget.test.tsx.snap │ │ │ ├── Legend.test.tsx.snap │ │ │ ├── Logo.test.tsx.snap │ │ │ ├── MetricsList.test.tsx.snap │ │ │ ├── MetricsWidget.test.tsx.snap │ │ │ ├── Modal.test.tsx.snap │ │ │ ├── Navigation.test.tsx.snap │ │ │ ├── Page.test.tsx.snap │ │ │ ├── PrimaryActionBar.test.tsx.snap │ │ │ ├── RadioButtons.test.tsx.snap │ │ │ ├── Search.test.tsx.snap │ │ │ ├── SecondaryActionBar.test.tsx.snap │ │ │ ├── SectionWidget.test.tsx.snap │ │ │ ├── StepIndicator.test.tsx.snap │ │ │ ├── Tab.test.tsx.snap │ │ │ ├── Table.test.tsx.snap │ │ │ ├── TableWidget.test.tsx.snap │ │ │ ├── Tabs.test.tsx.snap │ │ │ ├── TextField.test.tsx.snap │ │ │ ├── TextWidget.test.tsx.snap │ │ │ ├── Tooltip.test.tsx.snap │ │ │ ├── VisualizeTable.test.tsx.snap │ │ │ ├── WidgetRender.test.tsx.snap │ │ │ ├── WidgetTree.test.tsx.snap │ │ │ └── WidgetTreeSectionDivider.test.tsx.snap │ ├── containers │ │ ├── APIHelpPage.tsx │ │ ├── AccessDenied.tsx │ │ ├── AddChart.tsx │ │ ├── AddContent.tsx │ │ ├── AddImage.tsx │ │ ├── AddMetric.css │ │ ├── AddMetric.tsx │ │ ├── AddMetrics.tsx │ │ ├── AddSection.tsx │ │ ├── AddTable.tsx │ │ ├── AddText.tsx │ │ ├── AddUsers.tsx │ │ ├── AdminHome.tsx │ │ ├── AdminSiteSettings.tsx │ │ ├── AlertContainer.tsx │ │ ├── BrandingAndStylingSettings.tsx │ │ ├── ChangeRole.tsx │ │ ├── ChooseStaticDataset.tsx │ │ ├── ColorsHelpPage.tsx │ │ ├── ContactUs.tsx │ │ ├── CreateDashboard.tsx │ │ ├── CreateTopicArea.tsx │ │ ├── DashboardHistory.tsx │ │ ├── DashboardListing.tsx │ │ ├── DateFormatSettings.tsx │ │ ├── EditAnalytics.tsx │ │ ├── EditChart.css │ │ ├── EditChart.tsx │ │ ├── EditColors.tsx │ │ ├── EditDashboard.tsx │ │ ├── EditDateFormat.tsx │ │ ├── EditDetails.tsx │ │ ├── EditFavicon.tsx │ │ ├── EditHomepageContent.tsx │ │ ├── EditImage.tsx │ │ ├── EditLogo.tsx │ │ ├── EditMetric.scss │ │ ├── EditMetric.tsx │ │ ├── EditMetrics.tsx │ │ ├── EditNavbar.tsx │ │ ├── EditPublishingGuidance.tsx │ │ ├── EditSection.tsx │ │ ├── EditSupportContactEmail.tsx │ │ ├── EditTable.css │ │ ├── EditTable.tsx │ │ ├── EditText.tsx │ │ ├── EditTopicArea.tsx │ │ ├── EditTopicAreaLabel.tsx │ │ ├── FormattingCSV.tsx │ │ ├── FourZeroFour.tsx │ │ ├── Home.scss │ │ ├── Home.tsx │ │ ├── HomeWithSearch.tsx │ │ ├── MarkdownSyntax.tsx │ │ ├── PublishedSiteSettings.css │ │ ├── PublishedSiteSettings.tsx │ │ ├── PublishingGuidanceSettings.css │ │ ├── PublishingGuidanceSettings.tsx │ │ ├── TopicareaListing.tsx │ │ ├── TopicareaSettings.tsx │ │ ├── UserListing.tsx │ │ ├── UserStatus.tsx │ │ ├── ViewDashboard.tsx │ │ ├── ViewDashboardAdmin.css │ │ ├── ViewDashboardAdmin.tsx │ │ └── __tests__ │ │ │ ├── APIHelpPage.test.tsx │ │ │ ├── AccessDenied.test.tsx │ │ │ ├── AddChart.test.tsx │ │ │ ├── AddContent.test.tsx │ │ │ ├── AddImage.test.tsx │ │ │ ├── AddMetric.test.tsx │ │ │ ├── AddMetrics.test.tsx │ │ │ ├── AddSection.test.tsx │ │ │ ├── AddTable.test.tsx │ │ │ ├── AddText.test.tsx │ │ │ ├── AddUsers.test.tsx │ │ │ ├── AdminHome.test.tsx │ │ │ ├── AdminSiteSettings.test.tsx │ │ │ ├── AlertContainer.test.tsx │ │ │ ├── BrandingAndStylingSettings.test.tsx │ │ │ ├── ChangeRole.test.tsx │ │ │ ├── ChooseStaticDataset.test.tsx │ │ │ ├── ColorsHelpPage.test.tsx │ │ │ ├── ContactUs.test.tsx │ │ │ ├── CreateDashboard.test.tsx │ │ │ ├── CreateTopicArea.test.tsx │ │ │ ├── DashboardHistory.test.tsx │ │ │ ├── DashboardListing.test.tsx │ │ │ ├── DateFormatSettings.test.tsx │ │ │ ├── EditAnalytics.test.tsx │ │ │ ├── EditChart.test.tsx │ │ │ ├── EditColors.test.tsx │ │ │ ├── EditDashboard.test.tsx │ │ │ ├── EditDateFormat.test.tsx │ │ │ ├── EditDetails.test.tsx │ │ │ ├── EditFavicon.test.tsx │ │ │ ├── EditHomepageContent.test.tsx │ │ │ ├── EditImage.test.tsx │ │ │ ├── EditLogo.test.tsx │ │ │ ├── EditMetric.test.tsx │ │ │ ├── EditMetrics.test.tsx │ │ │ ├── EditNavbar.test.tsx │ │ │ ├── EditPublishingGuidance.test.tsx │ │ │ ├── EditSection.test.tsx │ │ │ ├── EditSupportContactEmail.test.tsx │ │ │ ├── EditTable.test.tsx │ │ │ ├── EditText.test.tsx │ │ │ ├── EditTopicArea.test.tsx │ │ │ ├── EditTopicAreaLabel.test.tsx │ │ │ ├── FormattingCSV.test.tsx │ │ │ ├── FourZeroFour.test.tsx │ │ │ ├── Home.test.tsx │ │ │ ├── HomeWithSearch.test.tsx │ │ │ ├── MarkdownSyntax.test.tsx │ │ │ ├── PublishedSiteSettings.test.tsx │ │ │ ├── PublishingGuidanceSettings.test.tsx │ │ │ ├── TopicareaListing.test.tsx │ │ │ ├── TopicareaSettings.test.tsx │ │ │ ├── UserListing.test.tsx │ │ │ ├── UserStatus.test.tsx │ │ │ ├── ViewDashboard.test.tsx │ │ │ ├── ViewDashboardAdmin.test.tsx │ │ │ └── __snapshots__ │ │ │ ├── APIHelpPage.test.tsx.snap │ │ │ ├── AddContent.test.tsx.snap │ │ │ ├── AdminSiteSettings.test.tsx.snap │ │ │ ├── AlertContainer.test.tsx.snap │ │ │ ├── BrandingAndStylingSettings.test.tsx.snap │ │ │ ├── ColorsHelpPage.test.tsx.snap │ │ │ ├── ContactUs.test.tsx.snap │ │ │ ├── DateFormatSettings.test.tsx.snap │ │ │ ├── FourZeroFour.test.tsx.snap │ │ │ ├── MarkdownSyntax.test.tsx.snap │ │ │ ├── PublishedSiteSettings.test.tsx.snap │ │ │ ├── PublishingGuidanceSettings.test.tsx.snap │ │ │ └── TopicareaSettings.test.tsx.snap │ ├── context │ │ └── SettingsProvider.tsx │ ├── favicon.svg │ ├── hooks │ │ ├── __mocks__ │ │ │ └── index.tsx │ │ ├── __tests__ │ │ │ ├── background-hooks.test.tsx │ │ │ ├── chart-hooks.test.tsx │ │ │ ├── dashboard-hooks.test.tsx │ │ │ ├── dashboard-preview-hooks.test.tsx │ │ │ ├── dataset-hooks.test.tsx │ │ │ ├── favicon-hooks.test.tsx │ │ │ ├── homepage-hooks.test.tsx │ │ │ ├── image-hooks.test.tsx │ │ │ ├── logo-hooks.test.tsx │ │ │ ├── settings-hooks.test.tsx │ │ │ ├── table-hooks.test.tsx │ │ │ ├── topicarea-hooks.test.tsx │ │ │ ├── user-hooks.test.tsx │ │ │ └── widget-hooks.test.tsx │ │ ├── background-hooks.ts │ │ ├── chart-hooks.ts │ │ ├── dashboard-hooks.ts │ │ ├── dashboard-preview-hooks.tsx │ │ ├── dataset-hooks.ts │ │ ├── datetime-hooks.ts │ │ ├── favicon-hooks.ts │ │ ├── file-loaded-hooks.ts │ │ ├── homepage-hooks.ts │ │ ├── image-hooks.ts │ │ ├── index.tsx │ │ ├── logo-hooks.ts │ │ ├── scrollup-hooks.ts │ │ ├── settings-hooks.ts │ │ ├── table-hooks.ts │ │ ├── topicarea-hooks.ts │ │ ├── user-hooks.ts │ │ └── widget-hooks.ts │ ├── i18n.ts │ ├── index.scss │ ├── index.tsx │ ├── layouts │ │ ├── Admin.scss │ │ ├── Admin.tsx │ │ ├── Footer.tsx │ │ ├── Public.tsx │ │ ├── SAMLAuthenticator.tsx │ │ ├── Settings.css │ │ ├── Settings.tsx │ │ └── __tests__ │ │ │ ├── Admin.test.tsx │ │ │ ├── Footer.test.tsx │ │ │ ├── Public.test.tsx │ │ │ ├── SAMLAuthenticator.test.tsx │ │ │ ├── Settings.test.tsx │ │ │ └── __snapshots__ │ │ │ ├── Admin.test.tsx.snap │ │ │ ├── Footer.test.tsx.snap │ │ │ ├── Public.test.tsx.snap │ │ │ ├── SAMLAuthenticator.test.tsx.snap │ │ │ └── Settings.test.tsx.snap │ ├── locales │ │ ├── __tests__ │ │ │ └── Locales.test.ts │ │ ├── en │ │ │ └── translation.json │ │ ├── es │ │ │ └── translation.json │ │ └── pt │ │ │ └── translation.json │ ├── logo.svg │ ├── models │ │ └── index.tsx │ ├── react-app-env.d.ts │ ├── serviceWorker.ts │ ├── services │ │ ├── AuditTrailService.ts │ │ ├── BackendService.ts │ │ ├── ColorPaletteService.ts │ │ ├── ColumnsMetadataService.ts │ │ ├── DatasetParsingService.ts │ │ ├── EnvConfig.ts │ │ ├── FriendlyURLGenerator.ts │ │ ├── OrderingService.ts │ │ ├── ParsingFileService.ts │ │ ├── RulerService.ts │ │ ├── StorageService.ts │ │ ├── TickFormatter.ts │ │ ├── UtilsService.ts │ │ └── __tests__ │ │ │ ├── AuditTrailService.test.ts │ │ │ ├── BackendService.test.ts │ │ │ ├── ColumnsMetadataService.test.ts │ │ │ ├── DatasetParsingService.test.ts │ │ │ ├── EnvConfig.test.ts │ │ │ ├── FriendlyURLGenerator.test.ts │ │ │ ├── OrderingService.test.ts │ │ │ ├── RulerService.test.ts │ │ │ ├── StorageService.test.ts │ │ │ ├── TickFormatter.test.ts │ │ │ └── UtilsService.test.ts │ ├── setupTests.ts │ ├── styles │ │ ├── _backgrounds.scss │ │ ├── _settings.scss │ │ ├── _type.scss │ │ └── base.scss │ ├── testUtils.ts │ └── types │ │ ├── react-excel-renderer.d.ts │ │ └── react-table-config.d.ts └── tsconfig.json ├── generate-attributions.sh ├── install.sh ├── package.json ├── package.sh ├── release.sh ├── scripts ├── copyright-file-header.txt ├── copyright-notice-header.txt └── parse-dependency.js ├── solution-manifest.yaml ├── sonar-project.properties ├── test.sh └── tools ├── WAF-enterprise-only.json └── performance-dashboard-on-aws.template /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-improvements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/ISSUE_TEMPLATE/documentation-improvements.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/demo-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/workflows/demo-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/gamma-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/workflows/gamma-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/mainline-dev-e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/workflows/mainline-dev-e2e-tests.yml -------------------------------------------------------------------------------- /.github/workflows/mainline-dev-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/workflows/mainline-dev-unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/mainline-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/workflows/mainline-unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/newpr-code-style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/workflows/newpr-code-style.yml -------------------------------------------------------------------------------- /.github/workflows/newpr-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/workflows/newpr-unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/workflows/pipeline-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/workflows/pull-request-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.github/workflows/security-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.gitignore -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.hintrc -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.husky/post-merge -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/hydrogen -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | cdk.out 3 | coverage 4 | node_modules -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.viperlightignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.viperlightignore -------------------------------------------------------------------------------- /.viperlightrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/.viperlightrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/Config -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/SECURITY.md -------------------------------------------------------------------------------- /add-license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/add-license.sh -------------------------------------------------------------------------------- /backend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/.eslintrc.js -------------------------------------------------------------------------------- /backend/.estlintignore: -------------------------------------------------------------------------------- 1 | build 2 | coverage 3 | node_modules 4 | -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | .vscode/ 4 | coverage/ -------------------------------------------------------------------------------- /backend/.nvmrc: -------------------------------------------------------------------------------- 1 | lts/hydrogen -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/integtests/IntegrationTestSuite.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/integtests/IntegrationTestSuite.postman_collection.json -------------------------------------------------------------------------------- /backend/integtests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/integtests/README.md -------------------------------------------------------------------------------- /backend/integtests/Versioning Edge Cases.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/integtests/Versioning Edge Cases.postman_collection.json -------------------------------------------------------------------------------- /backend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/jest.config.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/postman/Auth API Tests Environment.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/postman/Auth API Tests Environment.postman_environment.json -------------------------------------------------------------------------------- /backend/postman/Auth API Tests on Public PDoA.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/postman/Auth API Tests on Public PDoA.postman_collection.json -------------------------------------------------------------------------------- /backend/postman/Performance Dashboard API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/postman/Performance Dashboard API.postman_collection.json -------------------------------------------------------------------------------- /backend/postman/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/postman/openapi.yaml -------------------------------------------------------------------------------- /backend/src/lambda/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lambda/api.ts -------------------------------------------------------------------------------- /backend/src/lambda/streams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lambda/streams.ts -------------------------------------------------------------------------------- /backend/src/lib/api/dashboard-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/dashboard-api.ts -------------------------------------------------------------------------------- /backend/src/lib/api/dataset-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/dataset-api.ts -------------------------------------------------------------------------------- /backend/src/lib/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/index.ts -------------------------------------------------------------------------------- /backend/src/lib/api/ingest-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/ingest-api.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/__tests__/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/__tests__/auth.test.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/__tests__/csp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/__tests__/csp.test.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/__tests__/error-handler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/__tests__/error-handler.test.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/__tests__/parser-error-handler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/__tests__/parser-error-handler.test.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/__tests__/rbac.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/__tests__/rbac.test.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/auth.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/cors-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/cors-handler.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/csp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/csp.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/csrf-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/csrf-handler.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/error-handler.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/parser-error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/parser-error-handler.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/rbac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/rbac.ts -------------------------------------------------------------------------------- /backend/src/lib/api/middleware/uri-error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/middleware/uri-error-handler.ts -------------------------------------------------------------------------------- /backend/src/lib/api/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/public-api.ts -------------------------------------------------------------------------------- /backend/src/lib/api/settings-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/settings-api.ts -------------------------------------------------------------------------------- /backend/src/lib/api/topicarea-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/topicarea-api.ts -------------------------------------------------------------------------------- /backend/src/lib/api/user-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/api/user-api.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/__tests__/auditlog-ctrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/__tests__/auditlog-ctrl.test.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/__tests__/dashboard-ctrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/__tests__/dashboard-ctrl.test.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/__tests__/dataset-ctrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/__tests__/dataset-ctrl.test.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/__tests__/homepage-ctrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/__tests__/homepage-ctrl.test.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/__tests__/ingestapi-ctrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/__tests__/ingestapi-ctrl.test.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/__tests__/settings-ctrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/__tests__/settings-ctrl.test.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/__tests__/topicarea-ctrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/__tests__/topicarea-ctrl.test.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/__tests__/user-ctrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/__tests__/user-ctrl.test.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/__tests__/widget-ctrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/__tests__/widget-ctrl.test.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/auditlog-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/auditlog-ctrl.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/dashboard-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/dashboard-ctrl.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/dataset-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/dataset-ctrl.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/homepage-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/homepage-ctrl.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/ingestapi-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/ingestapi-ctrl.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/settings-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/settings-ctrl.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/topicarea-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/topicarea-ctrl.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/user-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/user-ctrl.ts -------------------------------------------------------------------------------- /backend/src/lib/controllers/widget-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/controllers/widget-ctrl.ts -------------------------------------------------------------------------------- /backend/src/lib/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/errors/index.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/__tests__/auditlog-factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/__tests__/auditlog-factory.test.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/__tests__/dashboard-factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/__tests__/dashboard-factory.test.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/__tests__/dataset-factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/__tests__/dataset-factory.test.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/__tests__/homepage-factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/__tests__/homepage-factory.test.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/__tests__/settings-factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/__tests__/settings-factory.test.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/__tests__/topicarea-factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/__tests__/topicarea-factory.test.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/__tests__/user-factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/__tests__/user-factory.test.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/__tests__/widget-factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/__tests__/widget-factory.test.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/auditlog-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/auditlog-factory.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/dashboard-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/dashboard-factory.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/dataset-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/dataset-factory.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/homepage-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/homepage-factory.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/settings-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/settings-factory.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/topicarea-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/topicarea-factory.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/user-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/user-factory.ts -------------------------------------------------------------------------------- /backend/src/lib/factories/widget-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/factories/widget-factory.ts -------------------------------------------------------------------------------- /backend/src/lib/jsonschema/api/RemoveUsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/jsonschema/api/RemoveUsers.json -------------------------------------------------------------------------------- /backend/src/lib/jsonschema/datasets/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/jsonschema/datasets/metrics.json -------------------------------------------------------------------------------- /backend/src/lib/jsonschema/datasets/none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/jsonschema/datasets/none.json -------------------------------------------------------------------------------- /backend/src/lib/models/auditlog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/models/auditlog.ts -------------------------------------------------------------------------------- /backend/src/lib/models/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/models/dashboard.ts -------------------------------------------------------------------------------- /backend/src/lib/models/dataset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/models/dataset.ts -------------------------------------------------------------------------------- /backend/src/lib/models/homepage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/models/homepage.ts -------------------------------------------------------------------------------- /backend/src/lib/models/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/models/settings.ts -------------------------------------------------------------------------------- /backend/src/lib/models/topicarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/models/topicarea.ts -------------------------------------------------------------------------------- /backend/src/lib/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/models/user.ts -------------------------------------------------------------------------------- /backend/src/lib/models/widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/models/widget.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/__tests__/auditlog-repo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/__tests__/auditlog-repo.test.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/__tests__/dashboard-repo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/__tests__/dashboard-repo.test.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/__tests__/dataset-repo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/__tests__/dataset-repo.test.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/__tests__/homepage-repo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/__tests__/homepage-repo.test.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/__tests__/settings-repo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/__tests__/settings-repo.test.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/__tests__/topicarea-repo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/__tests__/topicarea-repo.test.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/__tests__/user-repo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/__tests__/user-repo.test.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/__tests__/widget-repo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/__tests__/widget-repo.test.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/auditlog-repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/auditlog-repo.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/base.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/dashboard-repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/dashboard-repo.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/dataset-repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/dataset-repo.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/homepage-repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/homepage-repo.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/settings-repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/settings-repo.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/topicarea-repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/topicarea-repo.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/user-repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/user-repo.ts -------------------------------------------------------------------------------- /backend/src/lib/repositories/widget-repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/repositories/widget-repo.ts -------------------------------------------------------------------------------- /backend/src/lib/services/__tests__/audit-trail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/__tests__/audit-trail.test.ts -------------------------------------------------------------------------------- /backend/src/lib/services/__tests__/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/__tests__/auth.test.ts -------------------------------------------------------------------------------- /backend/src/lib/services/__tests__/dataset-service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/__tests__/dataset-service.test.ts -------------------------------------------------------------------------------- /backend/src/lib/services/__tests__/dynamodb.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/__tests__/dynamodb.test.ts -------------------------------------------------------------------------------- /backend/src/lib/services/__tests__/friendlyurl-service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/__tests__/friendlyurl-service.test.ts -------------------------------------------------------------------------------- /backend/src/lib/services/__tests__/stream-processor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/__tests__/stream-processor.test.ts -------------------------------------------------------------------------------- /backend/src/lib/services/audit-trail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/audit-trail.ts -------------------------------------------------------------------------------- /backend/src/lib/services/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/auth.ts -------------------------------------------------------------------------------- /backend/src/lib/services/cognito.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/cognito.ts -------------------------------------------------------------------------------- /backend/src/lib/services/dataset-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/dataset-service.ts -------------------------------------------------------------------------------- /backend/src/lib/services/dynamodb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/dynamodb.ts -------------------------------------------------------------------------------- /backend/src/lib/services/friendlyurl-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/friendlyurl-service.ts -------------------------------------------------------------------------------- /backend/src/lib/services/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/logger.ts -------------------------------------------------------------------------------- /backend/src/lib/services/s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/s3.ts -------------------------------------------------------------------------------- /backend/src/lib/services/stream-processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/services/stream-processor.ts -------------------------------------------------------------------------------- /backend/src/lib/types/express/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/lib/types/express/index.d.ts -------------------------------------------------------------------------------- /backend/src/local/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/src/local/server.ts -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /cdk/.estlintignore: -------------------------------------------------------------------------------- 1 | build 2 | coverage 3 | node_modules 4 | cdk.out -------------------------------------------------------------------------------- /cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/.gitignore -------------------------------------------------------------------------------- /cdk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/.npmignore -------------------------------------------------------------------------------- /cdk/.nvmrc: -------------------------------------------------------------------------------- 1 | lts/gallium -------------------------------------------------------------------------------- /cdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/README.md -------------------------------------------------------------------------------- /cdk/bin/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/bin/main.ts -------------------------------------------------------------------------------- /cdk/bin/pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/bin/pipeline.ts -------------------------------------------------------------------------------- /cdk/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/cdk.json -------------------------------------------------------------------------------- /cdk/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/jest.config.js -------------------------------------------------------------------------------- /cdk/lib/auth-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/auth-stack.ts -------------------------------------------------------------------------------- /cdk/lib/authz-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/authz-stack.ts -------------------------------------------------------------------------------- /cdk/lib/backend-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/backend-stack.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/api.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/appRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/appRegistry.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/contentstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/contentstorage.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/database.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/datastorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/datastorage.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/exampledashboardlambda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/exampledashboardlambda.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/function-aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/function-aspect.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/github-integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/github-integration.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/lambdas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/lambdas.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/parameters.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/policy-aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/policy-aspect.ts -------------------------------------------------------------------------------- /cdk/lib/constructs/serveraccesslogstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/constructs/serveraccesslogstorage.ts -------------------------------------------------------------------------------- /cdk/lib/dashboardexamples-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/dashboardexamples-stack.ts -------------------------------------------------------------------------------- /cdk/lib/data/email-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/data/email-template.html -------------------------------------------------------------------------------- /cdk/lib/envconfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/envconfig/index.ts -------------------------------------------------------------------------------- /cdk/lib/frontend-config-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/frontend-config-stack.ts -------------------------------------------------------------------------------- /cdk/lib/frontend-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/frontend-stack.ts -------------------------------------------------------------------------------- /cdk/lib/ops-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/ops-stack.ts -------------------------------------------------------------------------------- /cdk/lib/pipeline-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/lib/pipeline-stack.ts -------------------------------------------------------------------------------- /cdk/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/package-lock.json -------------------------------------------------------------------------------- /cdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/package.json -------------------------------------------------------------------------------- /cdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/cdk/tsconfig.json -------------------------------------------------------------------------------- /check-license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/check-license.sh -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/deploy.sh -------------------------------------------------------------------------------- /deployment/build-open-source-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/deployment/build-open-source-dist.sh -------------------------------------------------------------------------------- /deployment/build-s3-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/deployment/build-s3-dist.sh -------------------------------------------------------------------------------- /deployment/cdk-solution-helper/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | .vscode/ 4 | coverage/ -------------------------------------------------------------------------------- /deployment/cdk-solution-helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/deployment/cdk-solution-helper/README.md -------------------------------------------------------------------------------- /deployment/cdk-solution-helper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/deployment/cdk-solution-helper/index.js -------------------------------------------------------------------------------- /deployment/cdk-solution-helper/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/deployment/cdk-solution-helper/package-lock.json -------------------------------------------------------------------------------- /deployment/cdk-solution-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/deployment/cdk-solution-helper/package.json -------------------------------------------------------------------------------- /deployment/performance-dashboard-on-aws.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/deployment/performance-dashboard-on-aws.template.json -------------------------------------------------------------------------------- /deployment/run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/deployment/run-unit-tests.sh -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/custom-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/custom-config.md -------------------------------------------------------------------------------- /docs/images/Dashboard_Images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/Dashboard_Images.jpg -------------------------------------------------------------------------------- /docs/images/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/architecture.svg -------------------------------------------------------------------------------- /docs/images/custom-homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/custom-homepage.png -------------------------------------------------------------------------------- /docs/images/installation/append-topicarea-attribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/append-topicarea-attribute.png -------------------------------------------------------------------------------- /docs/images/installation/create-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/create-user.png -------------------------------------------------------------------------------- /docs/images/installation/homepage-dynamodb-save-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/homepage-dynamodb-save-item.png -------------------------------------------------------------------------------- /docs/images/installation/homepage-dynamodb-text-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/homepage-dynamodb-text-view.png -------------------------------------------------------------------------------- /docs/images/installation/homepage-dynamodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/homepage-dynamodb.png -------------------------------------------------------------------------------- /docs/images/installation/insert-topicarea-attribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/insert-topicarea-attribute.png -------------------------------------------------------------------------------- /docs/images/installation/launch-cft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/launch-cft.png -------------------------------------------------------------------------------- /docs/images/installation/remove-topicarea-attribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/remove-topicarea-attribute.png -------------------------------------------------------------------------------- /docs/images/installation/searchbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/searchbar.png -------------------------------------------------------------------------------- /docs/images/installation/stacks-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/stacks-created.png -------------------------------------------------------------------------------- /docs/images/installation/topicarea-dynamodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/topicarea-dynamodb.png -------------------------------------------------------------------------------- /docs/images/installation/topicarea-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/topicarea-item.png -------------------------------------------------------------------------------- /docs/images/installation/uninstall-stack-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/installation/uninstall-stack-error.png -------------------------------------------------------------------------------- /docs/images/launch-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/launch-stack.svg -------------------------------------------------------------------------------- /docs/images/postman/apigateway-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/postman/apigateway-api-key.png -------------------------------------------------------------------------------- /docs/images/postman/apigateway-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/postman/apigateway-url.png -------------------------------------------------------------------------------- /docs/images/postman/collection-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/postman/collection-variables.png -------------------------------------------------------------------------------- /docs/images/postman/edit-collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/postman/edit-collection.png -------------------------------------------------------------------------------- /docs/images/postman/import-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/postman/import-success.png -------------------------------------------------------------------------------- /docs/images/postman/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/postman/import.png -------------------------------------------------------------------------------- /docs/images/postman/jwt-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/postman/jwt-token.png -------------------------------------------------------------------------------- /docs/images/postman/postman-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/postman/postman-request.png -------------------------------------------------------------------------------- /docs/images/protect-login-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/images/protect-login-page.png -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/on-prem-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/on-prem-access.md -------------------------------------------------------------------------------- /docs/postman-collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/postman-collection.md -------------------------------------------------------------------------------- /docs/runbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/runbook.md -------------------------------------------------------------------------------- /docs/scalability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/scalability.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/security.md -------------------------------------------------------------------------------- /docs/user-guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/docs/user-guide.pdf -------------------------------------------------------------------------------- /e2e-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/.gitignore -------------------------------------------------------------------------------- /e2e-tests/.nvmrc: -------------------------------------------------------------------------------- 1 | lts/hydrogen -------------------------------------------------------------------------------- /e2e-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/README.md -------------------------------------------------------------------------------- /e2e-tests/cypress/fixtures/chart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/fixtures/chart.csv -------------------------------------------------------------------------------- /e2e-tests/cypress/fixtures/chart_missing_header.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/fixtures/chart_missing_header.csv -------------------------------------------------------------------------------- /e2e-tests/cypress/fixtures/homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/fixtures/homepage.json -------------------------------------------------------------------------------- /e2e-tests/cypress/fixtures/sample_piechart.csv: -------------------------------------------------------------------------------- 1 | Drink,Spent Per Year 2 | Coffee,4300 3 | Tea,5000 4 | Water,1020 5 | -------------------------------------------------------------------------------- /e2e-tests/cypress/fixtures/samplebar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/fixtures/samplebar.csv -------------------------------------------------------------------------------- /e2e-tests/cypress/fixtures/table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/fixtures/table.csv -------------------------------------------------------------------------------- /e2e-tests/cypress/integration/chart-render.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/integration/chart-render.spec.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/integration/contentitems.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/integration/contentitems.spec.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/integration/dashboards.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/integration/dashboards.spec.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/integration/homepage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/integration/homepage.spec.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/integration/settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/integration/settings.spec.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/integration/users.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/integration/users.spec.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/AddChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/AddChart.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/AddContentItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/AddContentItem.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/AddMetrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/AddMetrics.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/AddTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/AddTable.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/AddText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/AddText.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/AddUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/AddUsers.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/AdminHomepage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/AdminHomepage.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/ChangeUsersRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/ChangeUsersRole.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/CreateDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/CreateDashboard.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/CreateTopicArea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/CreateTopicArea.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/DashboardListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/DashboardListing.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/DateTimeFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/DateTimeFormat.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/EditChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/EditChart.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/EditDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/EditDashboard.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/EditMetrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/EditMetrics.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/EditTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/EditTable.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/EditText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/EditText.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/EditTopicArea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/EditTopicArea.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/EditTopicAreaLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/EditTopicAreaLabel.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/Login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/Login.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/PublicHomepage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/PublicHomepage.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/PublishedSite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/PublishedSite.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/PublishingGuidance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/PublishingGuidance.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/Settings.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/TopicAreaListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/TopicAreaListing.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/pages/UserListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/pages/UserListing.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/plugins/index.js -------------------------------------------------------------------------------- /e2e-tests/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/support/index.ts -------------------------------------------------------------------------------- /e2e-tests/cypress/utils/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/cypress/utils/selectors.ts -------------------------------------------------------------------------------- /e2e-tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/package-lock.json -------------------------------------------------------------------------------- /e2e-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/package.json -------------------------------------------------------------------------------- /e2e-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/e2e-tests/tsconfig.json -------------------------------------------------------------------------------- /examples/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/.eslintrc.js -------------------------------------------------------------------------------- /examples/.estlintignore: -------------------------------------------------------------------------------- 1 | build 2 | coverage 3 | node_modules 4 | -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/.nvmrc: -------------------------------------------------------------------------------- 1 | lts/hydrogen -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/dynamodboption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/dynamodboption.png -------------------------------------------------------------------------------- /examples/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/jest.config.js -------------------------------------------------------------------------------- /examples/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/package-lock.json -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/resources/english/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/resources/english/snapshot.json -------------------------------------------------------------------------------- /examples/resources/portuguese/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/resources/portuguese/snapshot.json -------------------------------------------------------------------------------- /examples/resources/spanish/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/resources/spanish/snapshot.json -------------------------------------------------------------------------------- /examples/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/src/common.ts -------------------------------------------------------------------------------- /examples/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/src/env.ts -------------------------------------------------------------------------------- /examples/src/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/src/export.ts -------------------------------------------------------------------------------- /examples/src/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/src/import.ts -------------------------------------------------------------------------------- /examples/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/src/index.ts -------------------------------------------------------------------------------- /examples/src/services/exporter-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/src/services/exporter-service.ts -------------------------------------------------------------------------------- /examples/src/services/fs-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/src/services/fs-service.ts -------------------------------------------------------------------------------- /examples/src/services/importer-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/src/services/importer-service.ts -------------------------------------------------------------------------------- /examples/src/services/s3-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/src/services/s3-service.ts -------------------------------------------------------------------------------- /examples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/tsconfig.json -------------------------------------------------------------------------------- /examples/viewasoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/examples/viewasoptions.png -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=false -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.estlintignore: -------------------------------------------------------------------------------- 1 | build 2 | cdk.out 3 | coverage 4 | node_modules 5 | .github 6 | .husky 7 | .vscode -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.nvmrc: -------------------------------------------------------------------------------- 1 | lts/hydrogen -------------------------------------------------------------------------------- /frontend/.viperlightrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/.viperlightrc -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/images/chart-content-item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/images/chart-content-item.svg -------------------------------------------------------------------------------- /frontend/public/images/image-content-item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/images/image-content-item.svg -------------------------------------------------------------------------------- /frontend/public/images/image-scale-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/images/image-scale-100.svg -------------------------------------------------------------------------------- /frontend/public/images/image-scale-25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/images/image-scale-25.svg -------------------------------------------------------------------------------- /frontend/public/images/image-scale-50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/images/image-scale-50.svg -------------------------------------------------------------------------------- /frontend/public/images/image-scale-75.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/images/image-scale-75.svg -------------------------------------------------------------------------------- /frontend/public/images/metrics-content-item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/images/metrics-content-item.svg -------------------------------------------------------------------------------- /frontend/public/images/publish-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/images/publish-success.svg -------------------------------------------------------------------------------- /frontend/public/images/section-content-item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/images/section-content-item.svg -------------------------------------------------------------------------------- /frontend/public/images/table-content-item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/images/table-content-item.svg -------------------------------------------------------------------------------- /frontend/public/images/text-content-item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/images/text-content-item.svg -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/public/samplecsv/EditColors-CSV-Bar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/samplecsv/EditColors-CSV-Bar.csv -------------------------------------------------------------------------------- /frontend/public/samplecsv/EditColors-CSV-Column.csv: -------------------------------------------------------------------------------- 1 | XAxis,a,b,c,d,e,f,g,h 2 | Figure 1,55,90,60,110,140,70,80,57 -------------------------------------------------------------------------------- /frontend/public/samplecsv/Example-CSV-Bar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/samplecsv/Example-CSV-Bar.csv -------------------------------------------------------------------------------- /frontend/public/samplecsv/Example-CSV-Column.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/samplecsv/Example-CSV-Column.csv -------------------------------------------------------------------------------- /frontend/public/samplecsv/Example-CSV-Donut.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/samplecsv/Example-CSV-Donut.csv -------------------------------------------------------------------------------- /frontend/public/samplecsv/Example-CSV-Line.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/samplecsv/Example-CSV-Line.csv -------------------------------------------------------------------------------- /frontend/public/samplecsv/Example-CSV-Part-to-whole.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/samplecsv/Example-CSV-Part-to-whole.csv -------------------------------------------------------------------------------- /frontend/public/samplecsv/Example-CSV-Pie.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/samplecsv/Example-CSV-Pie.csv -------------------------------------------------------------------------------- /frontend/public/samplecsv/Example-CSV-Table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/public/samplecsv/Example-CSV-Table.csv -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/__tests__/App.test.tsx -------------------------------------------------------------------------------- /frontend/src/__tests__/__snapshots__/App.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/__tests__/__snapshots__/App.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/amplify-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/amplify-config.ts -------------------------------------------------------------------------------- /frontend/src/amplify-locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/amplify-locales/en/translation.json -------------------------------------------------------------------------------- /frontend/src/amplify-locales/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/amplify-locales/es/translation.json -------------------------------------------------------------------------------- /frontend/src/amplify-locales/pt/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/amplify-locales/pt/translation.json -------------------------------------------------------------------------------- /frontend/src/components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Accordion.tsx -------------------------------------------------------------------------------- /frontend/src/components/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Alert.tsx -------------------------------------------------------------------------------- /frontend/src/components/ArchivedTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/ArchivedTab.tsx -------------------------------------------------------------------------------- /frontend/src/components/Arrows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Arrows.tsx -------------------------------------------------------------------------------- /frontend/src/components/BarChartWidget.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/BarChartWidget.module.scss -------------------------------------------------------------------------------- /frontend/src/components/BarChartWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/BarChartWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/Breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Breadcrumbs.scss -------------------------------------------------------------------------------- /frontend/src/components/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Breadcrumbs.tsx -------------------------------------------------------------------------------- /frontend/src/components/Button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Button.scss -------------------------------------------------------------------------------- /frontend/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Button.tsx -------------------------------------------------------------------------------- /frontend/src/components/CardGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/CardGroup.tsx -------------------------------------------------------------------------------- /frontend/src/components/ChartWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/ChartWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/CheckData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/CheckData.tsx -------------------------------------------------------------------------------- /frontend/src/components/ChooseData.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/ChooseData.module.scss -------------------------------------------------------------------------------- /frontend/src/components/ChooseData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/ChooseData.tsx -------------------------------------------------------------------------------- /frontend/src/components/ColumnChartWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/ColumnChartWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/Combobox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Combobox.scss -------------------------------------------------------------------------------- /frontend/src/components/Combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Combobox.tsx -------------------------------------------------------------------------------- /frontend/src/components/DashboardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/DashboardHeader.tsx -------------------------------------------------------------------------------- /frontend/src/components/DataTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/DataTable.scss -------------------------------------------------------------------------------- /frontend/src/components/DataTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/DataTable.tsx -------------------------------------------------------------------------------- /frontend/src/components/DatePicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/DatePicker.scss -------------------------------------------------------------------------------- /frontend/src/components/DatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/DatePicker.tsx -------------------------------------------------------------------------------- /frontend/src/components/DateRangePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/DateRangePicker.tsx -------------------------------------------------------------------------------- /frontend/src/components/DonutChartWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/DonutChartWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/DraftsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/DraftsTab.tsx -------------------------------------------------------------------------------- /frontend/src/components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Dropdown.tsx -------------------------------------------------------------------------------- /frontend/src/components/DropdownMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/DropdownMenu.css -------------------------------------------------------------------------------- /frontend/src/components/DropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/DropdownMenu.tsx -------------------------------------------------------------------------------- /frontend/src/components/Favicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Favicon.tsx -------------------------------------------------------------------------------- /frontend/src/components/FileInput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/FileInput.css -------------------------------------------------------------------------------- /frontend/src/components/FileInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/FileInput.tsx -------------------------------------------------------------------------------- /frontend/src/components/FriendlyURLInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/FriendlyURLInput.tsx -------------------------------------------------------------------------------- /frontend/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Header.tsx -------------------------------------------------------------------------------- /frontend/src/components/ImageWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/ImageWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/Legend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Legend.tsx -------------------------------------------------------------------------------- /frontend/src/components/LineChartWidget.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/LineChartWidget.module.scss -------------------------------------------------------------------------------- /frontend/src/components/LineChartWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/LineChartWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/Link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Link.scss -------------------------------------------------------------------------------- /frontend/src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Link.tsx -------------------------------------------------------------------------------- /frontend/src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Logo.tsx -------------------------------------------------------------------------------- /frontend/src/components/Markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Markdown.css -------------------------------------------------------------------------------- /frontend/src/components/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Markdown.tsx -------------------------------------------------------------------------------- /frontend/src/components/MarkdownRender.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/MarkdownRender.scss -------------------------------------------------------------------------------- /frontend/src/components/MarkdownRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/MarkdownRender.tsx -------------------------------------------------------------------------------- /frontend/src/components/MetricsCardGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/MetricsCardGroup.tsx -------------------------------------------------------------------------------- /frontend/src/components/MetricsList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/MetricsList.css -------------------------------------------------------------------------------- /frontend/src/components/MetricsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/MetricsList.tsx -------------------------------------------------------------------------------- /frontend/src/components/MetricsWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/MetricsWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Modal.css -------------------------------------------------------------------------------- /frontend/src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Modal.tsx -------------------------------------------------------------------------------- /frontend/src/components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Navigation.tsx -------------------------------------------------------------------------------- /frontend/src/components/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/NumberField.tsx -------------------------------------------------------------------------------- /frontend/src/components/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Page.tsx -------------------------------------------------------------------------------- /frontend/src/components/Pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Pagination.scss -------------------------------------------------------------------------------- /frontend/src/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Pagination.tsx -------------------------------------------------------------------------------- /frontend/src/components/PartWholeChartWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/PartWholeChartWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/PieChartWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/PieChartWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/PrimaryActionBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/PrimaryActionBar.tsx -------------------------------------------------------------------------------- /frontend/src/components/PublishDashboardModal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/PublishDashboardModal.module.scss -------------------------------------------------------------------------------- /frontend/src/components/PublishDashboardModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/PublishDashboardModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/PublishedTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/PublishedTab.tsx -------------------------------------------------------------------------------- /frontend/src/components/RadioButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/RadioButtons.tsx -------------------------------------------------------------------------------- /frontend/src/components/RadioButtonsTile.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/RadioButtonsTile.module.scss -------------------------------------------------------------------------------- /frontend/src/components/RadioButtonsTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/RadioButtonsTile.tsx -------------------------------------------------------------------------------- /frontend/src/components/Search.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Search.module.scss -------------------------------------------------------------------------------- /frontend/src/components/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Search.tsx -------------------------------------------------------------------------------- /frontend/src/components/SecondaryActionBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/SecondaryActionBar.tsx -------------------------------------------------------------------------------- /frontend/src/components/SectionWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/SectionWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/ShareButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/ShareButton.module.scss -------------------------------------------------------------------------------- /frontend/src/components/ShareButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/ShareButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Spinner.tsx -------------------------------------------------------------------------------- /frontend/src/components/StepIndicator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/StepIndicator.css -------------------------------------------------------------------------------- /frontend/src/components/StepIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/StepIndicator.tsx -------------------------------------------------------------------------------- /frontend/src/components/Tab.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Tab.module.scss -------------------------------------------------------------------------------- /frontend/src/components/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Tab.tsx -------------------------------------------------------------------------------- /frontend/src/components/TabVertical.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/TabVertical.module.scss -------------------------------------------------------------------------------- /frontend/src/components/TabVertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/TabVertical.tsx -------------------------------------------------------------------------------- /frontend/src/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Table.tsx -------------------------------------------------------------------------------- /frontend/src/components/TableWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/TableWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Tabs.tsx -------------------------------------------------------------------------------- /frontend/src/components/TabsVertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/TabsVertical.tsx -------------------------------------------------------------------------------- /frontend/src/components/TextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/TextField.tsx -------------------------------------------------------------------------------- /frontend/src/components/TextWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/TextWidget.tsx -------------------------------------------------------------------------------- /frontend/src/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/Tooltip.tsx -------------------------------------------------------------------------------- /frontend/src/components/VisualizeChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/VisualizeChart.tsx -------------------------------------------------------------------------------- /frontend/src/components/VisualizeTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/VisualizeTable.tsx -------------------------------------------------------------------------------- /frontend/src/components/WidgetRender.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/WidgetRender.module.scss -------------------------------------------------------------------------------- /frontend/src/components/WidgetRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/WidgetRender.tsx -------------------------------------------------------------------------------- /frontend/src/components/WidgetTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/WidgetTree.tsx -------------------------------------------------------------------------------- /frontend/src/components/WidgetTreeActionMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/WidgetTreeActionMenu.tsx -------------------------------------------------------------------------------- /frontend/src/components/WidgetTreeItem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/WidgetTreeItem.module.scss -------------------------------------------------------------------------------- /frontend/src/components/WidgetTreeItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/WidgetTreeItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/WidgetTreeItemContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/WidgetTreeItemContent.tsx -------------------------------------------------------------------------------- /frontend/src/components/WidgetTreeSectionDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/WidgetTreeSectionDivider.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Accordion.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Accordion.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Alert.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Alert.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/ArchivedTab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/ArchivedTab.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/BarChartWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/BarChartWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Breadcrumbs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Breadcrumbs.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Button.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/CardGroup.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/CardGroup.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/ChartWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/ChartWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/CheckData.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/CheckData.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/ChooseData.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/ChooseData.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/ColumnChartWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/ColumnChartWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Combobox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Combobox.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/DashboardHeader.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/DashboardHeader.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/DataTable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/DataTable.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/DatePicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/DatePicker.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/DateRangePicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/DateRangePicker.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/DonutChartWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/DonutChartWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/DraftsTab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/DraftsTab.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Dropdown.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Dropdown.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/DropdownMenu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/DropdownMenu.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/FileInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/FileInput.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/FriendlyURLInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/FriendlyURLInput.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Header.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/ImageWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/ImageWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Legend.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Legend.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/LineChartWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/LineChartWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Logo.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Logo.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Markdown.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Markdown.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/MetricsList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/MetricsList.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/MetricsWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/MetricsWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Modal.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Navigation.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Navigation.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Page.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Pagination.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Pagination.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/PartWholeChartWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/PartWholeChartWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/PieChartWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/PieChartWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/PrimaryActionBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/PrimaryActionBar.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/PublishDashboardModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/PublishDashboardModal.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/PublishedTab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/PublishedTab.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/RadioButtons.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/RadioButtons.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Search.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Search.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/SecondaryActionBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/SecondaryActionBar.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/SectionWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/SectionWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/ShareButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/ShareButton.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/StepIndicator.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/StepIndicator.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Tab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Tab.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Table.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Table.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/TableWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/TableWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Tabs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Tabs.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/TextField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/TextField.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/TextWidget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/TextWidget.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/Tooltip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/Tooltip.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/VisualizeChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/VisualizeChart.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/VisualizeTable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/VisualizeTable.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/WidgetRender.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/WidgetRender.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/WidgetTree.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/WidgetTree.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/WidgetTreeSectionDivider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/WidgetTreeSectionDivider.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Accordion.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Accordion.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Alert.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Alert.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Button.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Button.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/CardGroup.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/CardGroup.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/CheckData.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/CheckData.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/ChooseData.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/ChooseData.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Combobox.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Combobox.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/DataTable.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/DataTable.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/DatePicker.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/DatePicker.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Dropdown.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Dropdown.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/FileInput.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/FileInput.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Header.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Header.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Legend.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Legend.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Logo.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Logo.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Modal.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Modal.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Navigation.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Navigation.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Page.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Page.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Search.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Search.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Tab.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Tab.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Table.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Table.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Tabs.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Tabs.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/TextField.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/TextField.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/TextWidget.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/TextWidget.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/components/__tests__/__snapshots__/Tooltip.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/components/__tests__/__snapshots__/Tooltip.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/containers/APIHelpPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/APIHelpPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AccessDenied.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AccessDenied.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AddChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AddChart.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AddContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AddContent.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AddImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AddImage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AddMetric.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AddMetric.css -------------------------------------------------------------------------------- /frontend/src/containers/AddMetric.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AddMetric.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AddMetrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AddMetrics.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AddSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AddSection.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AddTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AddTable.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AddText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AddText.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AddUsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AddUsers.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AdminHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AdminHome.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AdminSiteSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AdminSiteSettings.tsx -------------------------------------------------------------------------------- /frontend/src/containers/AlertContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/AlertContainer.tsx -------------------------------------------------------------------------------- /frontend/src/containers/BrandingAndStylingSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/BrandingAndStylingSettings.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ChangeRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/ChangeRole.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ChooseStaticDataset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/ChooseStaticDataset.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ColorsHelpPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/ColorsHelpPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ContactUs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/ContactUs.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CreateDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/CreateDashboard.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CreateTopicArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/CreateTopicArea.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DashboardHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/DashboardHistory.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DashboardListing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/DashboardListing.tsx -------------------------------------------------------------------------------- /frontend/src/containers/DateFormatSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/DateFormatSettings.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditAnalytics.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditChart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditChart.css -------------------------------------------------------------------------------- /frontend/src/containers/EditChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditChart.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditColors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditColors.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditDashboard.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditDateFormat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditDateFormat.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditDetails.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditFavicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditFavicon.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditHomepageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditHomepageContent.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditImage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditLogo.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditMetric.scss: -------------------------------------------------------------------------------- 1 | .usa-checkbox { 2 | background-color: transparent !important; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/src/containers/EditMetric.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditMetric.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditMetrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditMetrics.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditNavbar.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditPublishingGuidance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditPublishingGuidance.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditSection.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditSupportContactEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditSupportContactEmail.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditTable.css -------------------------------------------------------------------------------- /frontend/src/containers/EditTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditTable.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditText.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditTopicArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditTopicArea.tsx -------------------------------------------------------------------------------- /frontend/src/containers/EditTopicAreaLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/EditTopicAreaLabel.tsx -------------------------------------------------------------------------------- /frontend/src/containers/FormattingCSV.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/FormattingCSV.tsx -------------------------------------------------------------------------------- /frontend/src/containers/FourZeroFour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/FourZeroFour.tsx -------------------------------------------------------------------------------- /frontend/src/containers/Home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/Home.scss -------------------------------------------------------------------------------- /frontend/src/containers/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/Home.tsx -------------------------------------------------------------------------------- /frontend/src/containers/HomeWithSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/HomeWithSearch.tsx -------------------------------------------------------------------------------- /frontend/src/containers/MarkdownSyntax.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/MarkdownSyntax.tsx -------------------------------------------------------------------------------- /frontend/src/containers/PublishedSiteSettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/PublishedSiteSettings.css -------------------------------------------------------------------------------- /frontend/src/containers/PublishedSiteSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/PublishedSiteSettings.tsx -------------------------------------------------------------------------------- /frontend/src/containers/PublishingGuidanceSettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/PublishingGuidanceSettings.css -------------------------------------------------------------------------------- /frontend/src/containers/PublishingGuidanceSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/PublishingGuidanceSettings.tsx -------------------------------------------------------------------------------- /frontend/src/containers/TopicareaListing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/TopicareaListing.tsx -------------------------------------------------------------------------------- /frontend/src/containers/TopicareaSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/TopicareaSettings.tsx -------------------------------------------------------------------------------- /frontend/src/containers/UserListing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/UserListing.tsx -------------------------------------------------------------------------------- /frontend/src/containers/UserStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/UserStatus.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ViewDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/ViewDashboard.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ViewDashboardAdmin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/ViewDashboardAdmin.css -------------------------------------------------------------------------------- /frontend/src/containers/ViewDashboardAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/ViewDashboardAdmin.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/APIHelpPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/APIHelpPage.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AccessDenied.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AccessDenied.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AddChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AddChart.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AddContent.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AddContent.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AddImage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AddImage.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AddMetric.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AddMetric.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AddMetrics.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AddMetrics.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AddSection.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AddSection.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AddTable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AddTable.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AddText.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AddText.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AddUsers.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AddUsers.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AdminHome.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AdminHome.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AdminSiteSettings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AdminSiteSettings.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/AlertContainer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/AlertContainer.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/BrandingAndStylingSettings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/BrandingAndStylingSettings.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/ChangeRole.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/ChangeRole.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/ChooseStaticDataset.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/ChooseStaticDataset.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/ColorsHelpPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/ColorsHelpPage.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/ContactUs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/ContactUs.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/CreateDashboard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/CreateDashboard.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/CreateTopicArea.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/CreateTopicArea.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/DashboardHistory.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/DashboardHistory.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/DashboardListing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/DashboardListing.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/DateFormatSettings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/DateFormatSettings.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditAnalytics.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditAnalytics.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditChart.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditColors.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditColors.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditDashboard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditDashboard.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditDateFormat.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditDateFormat.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditDetails.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditFavicon.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditFavicon.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditHomepageContent.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditHomepageContent.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditImage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditImage.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditLogo.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditLogo.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditMetric.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditMetric.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditMetrics.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditMetrics.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditNavbar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditNavbar.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditPublishingGuidance.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditPublishingGuidance.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditSection.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditSection.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditSupportContactEmail.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditSupportContactEmail.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditTable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditTable.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditText.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditText.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditTopicArea.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditTopicArea.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/EditTopicAreaLabel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/EditTopicAreaLabel.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/FormattingCSV.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/FormattingCSV.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/FourZeroFour.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/FourZeroFour.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/Home.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/Home.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/HomeWithSearch.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/HomeWithSearch.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/MarkdownSyntax.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/MarkdownSyntax.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/PublishedSiteSettings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/PublishedSiteSettings.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/PublishingGuidanceSettings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/PublishingGuidanceSettings.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/TopicareaListing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/TopicareaListing.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/TopicareaSettings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/TopicareaSettings.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/UserListing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/UserListing.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/UserStatus.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/UserStatus.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/ViewDashboard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/ViewDashboard.test.tsx -------------------------------------------------------------------------------- /frontend/src/containers/__tests__/ViewDashboardAdmin.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/containers/__tests__/ViewDashboardAdmin.test.tsx -------------------------------------------------------------------------------- /frontend/src/context/SettingsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/context/SettingsProvider.tsx -------------------------------------------------------------------------------- /frontend/src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/favicon.svg -------------------------------------------------------------------------------- /frontend/src/hooks/__mocks__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__mocks__/index.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/background-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/background-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/chart-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/chart-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/dashboard-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/dashboard-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/dashboard-preview-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/dashboard-preview-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/dataset-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/dataset-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/favicon-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/favicon-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/homepage-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/homepage-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/image-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/image-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/logo-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/logo-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/settings-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/settings-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/table-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/table-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/topicarea-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/topicarea-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/user-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/user-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/widget-hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/__tests__/widget-hooks.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/background-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/background-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/chart-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/chart-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/dashboard-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/dashboard-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/dashboard-preview-hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/dashboard-preview-hooks.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/dataset-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/dataset-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/datetime-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/datetime-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/favicon-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/favicon-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/file-loaded-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/file-loaded-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/homepage-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/homepage-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/image-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/image-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/index.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/logo-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/logo-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/scrollup-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/scrollup-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/settings-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/settings-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/table-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/table-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/topicarea-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/topicarea-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/user-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/user-hooks.ts -------------------------------------------------------------------------------- /frontend/src/hooks/widget-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/hooks/widget-hooks.ts -------------------------------------------------------------------------------- /frontend/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/i18n.ts -------------------------------------------------------------------------------- /frontend/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/index.scss -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/Admin.scss: -------------------------------------------------------------------------------- 1 | @import "../styles/base.scss"; 2 | -------------------------------------------------------------------------------- /frontend/src/layouts/Admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/Admin.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/Footer.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/Public.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/Public.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/SAMLAuthenticator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/SAMLAuthenticator.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/Settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/Settings.css -------------------------------------------------------------------------------- /frontend/src/layouts/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/Settings.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/__tests__/Admin.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/__tests__/Admin.test.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/__tests__/Footer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/__tests__/Footer.test.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/__tests__/Public.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/__tests__/Public.test.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/__tests__/SAMLAuthenticator.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/__tests__/SAMLAuthenticator.test.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/__tests__/Settings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/__tests__/Settings.test.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/__tests__/__snapshots__/Admin.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/__tests__/__snapshots__/Admin.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/layouts/__tests__/__snapshots__/Footer.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/__tests__/__snapshots__/Footer.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/layouts/__tests__/__snapshots__/Public.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/__tests__/__snapshots__/Public.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/layouts/__tests__/__snapshots__/Settings.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/layouts/__tests__/__snapshots__/Settings.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/locales/__tests__/Locales.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/locales/__tests__/Locales.test.ts -------------------------------------------------------------------------------- /frontend/src/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/locales/en/translation.json -------------------------------------------------------------------------------- /frontend/src/locales/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/locales/es/translation.json -------------------------------------------------------------------------------- /frontend/src/locales/pt/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/locales/pt/translation.json -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/models/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/models/index.tsx -------------------------------------------------------------------------------- /frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/react-app-env.d.ts -------------------------------------------------------------------------------- /frontend/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/serviceWorker.ts -------------------------------------------------------------------------------- /frontend/src/services/AuditTrailService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/AuditTrailService.ts -------------------------------------------------------------------------------- /frontend/src/services/BackendService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/BackendService.ts -------------------------------------------------------------------------------- /frontend/src/services/ColorPaletteService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/ColorPaletteService.ts -------------------------------------------------------------------------------- /frontend/src/services/ColumnsMetadataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/ColumnsMetadataService.ts -------------------------------------------------------------------------------- /frontend/src/services/DatasetParsingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/DatasetParsingService.ts -------------------------------------------------------------------------------- /frontend/src/services/EnvConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/EnvConfig.ts -------------------------------------------------------------------------------- /frontend/src/services/FriendlyURLGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/FriendlyURLGenerator.ts -------------------------------------------------------------------------------- /frontend/src/services/OrderingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/OrderingService.ts -------------------------------------------------------------------------------- /frontend/src/services/ParsingFileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/ParsingFileService.ts -------------------------------------------------------------------------------- /frontend/src/services/RulerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/RulerService.ts -------------------------------------------------------------------------------- /frontend/src/services/StorageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/StorageService.ts -------------------------------------------------------------------------------- /frontend/src/services/TickFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/TickFormatter.ts -------------------------------------------------------------------------------- /frontend/src/services/UtilsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/UtilsService.ts -------------------------------------------------------------------------------- /frontend/src/services/__tests__/AuditTrailService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/__tests__/AuditTrailService.test.ts -------------------------------------------------------------------------------- /frontend/src/services/__tests__/BackendService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/__tests__/BackendService.test.ts -------------------------------------------------------------------------------- /frontend/src/services/__tests__/ColumnsMetadataService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/__tests__/ColumnsMetadataService.test.ts -------------------------------------------------------------------------------- /frontend/src/services/__tests__/DatasetParsingService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/__tests__/DatasetParsingService.test.ts -------------------------------------------------------------------------------- /frontend/src/services/__tests__/EnvConfig.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/__tests__/EnvConfig.test.ts -------------------------------------------------------------------------------- /frontend/src/services/__tests__/FriendlyURLGenerator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/__tests__/FriendlyURLGenerator.test.ts -------------------------------------------------------------------------------- /frontend/src/services/__tests__/OrderingService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/__tests__/OrderingService.test.ts -------------------------------------------------------------------------------- /frontend/src/services/__tests__/RulerService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/__tests__/RulerService.test.ts -------------------------------------------------------------------------------- /frontend/src/services/__tests__/StorageService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/__tests__/StorageService.test.ts -------------------------------------------------------------------------------- /frontend/src/services/__tests__/TickFormatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/__tests__/TickFormatter.test.ts -------------------------------------------------------------------------------- /frontend/src/services/__tests__/UtilsService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/services/__tests__/UtilsService.test.ts -------------------------------------------------------------------------------- /frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/setupTests.ts -------------------------------------------------------------------------------- /frontend/src/styles/_backgrounds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/styles/_backgrounds.scss -------------------------------------------------------------------------------- /frontend/src/styles/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/styles/_settings.scss -------------------------------------------------------------------------------- /frontend/src/styles/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/styles/_type.scss -------------------------------------------------------------------------------- /frontend/src/styles/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/styles/base.scss -------------------------------------------------------------------------------- /frontend/src/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/testUtils.ts -------------------------------------------------------------------------------- /frontend/src/types/react-excel-renderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/types/react-excel-renderer.d.ts -------------------------------------------------------------------------------- /frontend/src/types/react-table-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/src/types/react-table-config.d.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /generate-attributions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/generate-attributions.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/install.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/package.json -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/package.sh -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/release.sh -------------------------------------------------------------------------------- /scripts/copyright-file-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/scripts/copyright-file-header.txt -------------------------------------------------------------------------------- /scripts/copyright-notice-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/scripts/copyright-notice-header.txt -------------------------------------------------------------------------------- /scripts/parse-dependency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/scripts/parse-dependency.js -------------------------------------------------------------------------------- /solution-manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/solution-manifest.yaml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/test.sh -------------------------------------------------------------------------------- /tools/WAF-enterprise-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/tools/WAF-enterprise-only.json -------------------------------------------------------------------------------- /tools/performance-dashboard-on-aws.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions/performance-dashboard-on-aws/HEAD/tools/performance-dashboard-on-aws.template --------------------------------------------------------------------------------