@allurereport/web-classic 3.0.0-beta.8 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc.js +46 -0
- package/.eslintrc.cjs +16 -119
- package/dist/multi/10.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/222.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/26.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/302.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/304.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/369.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/389.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/498.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/60.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/643.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/671.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/725.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/770.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/848.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/853.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/872.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/895.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/920.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/979.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/991.app-897d4cad2ca206583e32.js +1 -0
- package/dist/multi/JetBrainsMono_vf.woff +0 -0
- package/dist/multi/JetBrainsMono_vf.woff2 +0 -0
- package/dist/multi/app-897d4cad2ca206583e32.js +2 -0
- package/dist/multi/app-897d4cad2ca206583e32.js.LICENSE.txt +25 -0
- package/dist/multi/manifest.json +26 -25
- package/dist/multi/pt-root-ui_vf.woff +0 -0
- package/dist/multi/pt-root-ui_vf.woff2 +0 -0
- package/dist/multi/styles-cf5cd8299b71a6d78e3e.css +284 -0
- package/dist/single/app-db9badbaf3040ca25425.js +2 -0
- package/dist/single/app-db9badbaf3040ca25425.js.LICENSE.txt +25 -0
- package/dist/single/manifest.json +1 -8
- package/package.json +50 -49
- package/postcss.config.js +5 -0
- package/src/assets/scss/_common.scss +142 -0
- package/src/assets/scss/code.scss +71 -0
- package/src/assets/scss/day.scss +51 -0
- package/src/assets/scss/fonts.scss +3 -0
- package/src/assets/scss/index.scss +9 -0
- package/src/assets/scss/night.scss +61 -0
- package/src/assets/scss/palette.scss +393 -0
- package/src/assets/scss/theme.scss +326 -0
- package/src/assets/scss/typography.scss +218 -0
- package/src/assets/scss/vars.scss +8 -0
- package/src/components/ArrowButton/index.tsx +36 -0
- package/src/components/ArrowButton/styles.scss +35 -0
- package/src/components/BaseLayout/index.tsx +23 -0
- package/src/components/BaseLayout/styles.scss +63 -0
- package/src/components/Behaviors/BehaviorsList.tsx +67 -0
- package/src/components/Behaviors/index.tsx +60 -0
- package/src/components/Behaviors/styles.scss +196 -0
- package/src/components/Categories/CategoriesList.tsx +67 -0
- package/src/components/Categories/index.tsx +60 -0
- package/src/components/Categories/styles.scss +196 -0
- package/src/components/Footer/FooterLogo.tsx +15 -0
- package/src/components/Footer/FooterVersion.tsx +33 -0
- package/src/components/Footer/index.tsx +13 -0
- package/src/components/Footer/styles.scss +14 -0
- package/src/components/Graphs/index.tsx +2 -0
- package/src/components/Header/index.tsx +14 -0
- package/src/components/Header/styles.scss +26 -0
- package/src/components/HeaderActions/Filters.tsx +90 -0
- package/src/components/HeaderActions/HeaderActions.tsx +58 -0
- package/src/components/HeaderActions/SortBy.tsx +128 -0
- package/src/components/HeaderActions/styles.scss +82 -0
- package/src/components/LanguagePicker/index.tsx +41 -0
- package/src/components/LanguagePicker/styles.scss +3 -0
- package/src/components/MainReport/index.tsx +19 -0
- package/src/components/Metadata/index.tsx +121 -0
- package/src/components/Metadata/styles.scss +146 -0
- package/src/components/MetadataButton/index.tsx +32 -0
- package/src/components/MetadataButton/styles.scss +53 -0
- package/src/components/Modal/index.tsx +174 -0
- package/src/components/Modal/styles.scss +126 -0
- package/src/components/Overview/Overview.module.scss +29 -0
- package/src/components/Overview/index.tsx +105 -0
- package/src/components/Packages/PackagesList.tsx +67 -0
- package/src/components/Packages/index.tsx +59 -0
- package/src/components/Packages/styles.scss +196 -0
- package/src/components/ReportBody/Filters.tsx +92 -0
- package/src/components/ReportBody/HeaderActions.tsx +21 -0
- package/src/components/ReportBody/SortBy.tsx +132 -0
- package/src/components/ReportBody/context.tsx +106 -0
- package/src/components/ReportBody/index.tsx +69 -0
- package/src/components/ReportBody/styles.scss +64 -0
- package/src/components/ReportHeader/ReportHeaderLabelList.tsx +12 -0
- package/src/components/ReportHeader/ReportHeaderLogo.tsx +14 -0
- package/src/components/ReportHeader/ReportHeaderPie.tsx +14 -0
- package/src/components/ReportHeader/index.tsx +33 -0
- package/src/components/ReportHeader/styles.scss +49 -0
- package/src/components/ReportMetadata/MetadataItem.tsx +45 -0
- package/src/components/ReportMetadata/MetadataSummary.tsx +80 -0
- package/src/components/ReportMetadata/MetadataTestType.tsx +16 -0
- package/src/components/ReportMetadata/MetadataWithIcon.tsx +21 -0
- package/src/components/ReportMetadata/index.tsx +46 -0
- package/src/components/ReportMetadata/styles.scss +99 -0
- package/src/components/SideBySide/index.tsx +54 -0
- package/src/components/SideBySide/styles.scss +59 -0
- package/src/components/SideNav/SideNav.tsx +78 -0
- package/src/components/{side-nav → SideNav}/styles.scss +54 -46
- package/src/components/Suites/index.tsx +62 -0
- package/src/components/Suites/styles.scss +10 -0
- package/src/components/Tabs/index.tsx +33 -0
- package/src/components/Tabs/styles.scss +56 -0
- package/src/components/TestResult/TestResultAttachmentsView/index.tsx +27 -0
- package/src/components/TestResult/TestResultAttachmentsView/styles.scss +12 -0
- package/src/components/TestResult/TestResultDescription/index.tsx +27 -0
- package/src/components/TestResult/TestResultDescription/styles.scss +12 -0
- package/src/components/TestResult/TestResultDropdown/index.tsx +23 -0
- package/src/components/TestResult/TestResultDropdown/styles.scss +34 -0
- package/src/components/TestResult/TestResultEmpty/index.tsx +33 -0
- package/src/components/TestResult/TestResultEmpty/styles.scss +25 -0
- package/src/components/TestResult/TestResultError/index.tsx +48 -0
- package/src/components/TestResult/TestResultError/styles.scss +51 -0
- package/src/components/TestResult/TestResultHeader/index.tsx +53 -0
- package/src/components/TestResult/TestResultHeader/styles.scss +43 -0
- package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +67 -0
- package/src/components/TestResult/TestResultHistory/index.tsx +26 -0
- package/src/components/TestResult/TestResultHistory/styles.scss +63 -0
- package/src/components/TestResult/TestResultInfo/TestResultInfoStatuses.tsx +30 -0
- package/src/components/TestResult/TestResultInfo/index.tsx +79 -0
- package/src/components/TestResult/TestResultInfo/styles.scss +50 -0
- package/src/components/TestResult/TestResultLinks/index.tsx +56 -0
- package/src/components/TestResult/TestResultLinks/styles.scss +30 -0
- package/src/components/TestResult/TestResultMetadata/index.tsx +27 -0
- package/src/components/TestResult/TestResultMetadata/styles.scss +8 -0
- package/src/components/TestResult/TestResultNavigation/index.tsx +80 -0
- package/src/components/TestResult/TestResultNavigation/styles.scss +48 -0
- package/src/components/TestResult/TestResultOverview.tsx +40 -0
- package/src/components/TestResult/TestResultParameters/index.tsx +30 -0
- package/src/components/TestResult/TestResultParameters/styles.scss +8 -0
- package/src/components/TestResult/TestResultPrevStatuses/index.tsx +49 -0
- package/src/components/TestResult/TestResultPrevStatuses/styles.scss +57 -0
- package/src/components/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +65 -0
- package/src/components/TestResult/TestResultRetriesView/index.tsx +27 -0
- package/src/components/TestResult/TestResultRetriesView/styles.scss +69 -0
- package/src/components/TestResult/TestResultSetup/index.tsx +49 -0
- package/src/components/TestResult/TestResultSeverity/index.tsx +27 -0
- package/src/components/TestResult/TestResultSeverity/styles.scss +29 -0
- package/src/components/TestResult/TestResultStatus/index.tsx +26 -0
- package/src/components/TestResult/TestResultStatus/styles.scss +36 -0
- package/src/components/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +38 -0
- package/src/components/TestResult/TestResultSteps/attachment.tsx +68 -0
- package/src/components/TestResult/TestResultSteps/attachmentCode.tsx +20 -0
- package/src/components/TestResult/TestResultSteps/attachmentImage.tsx +32 -0
- package/src/components/TestResult/TestResultSteps/attachmentVideo.tsx +15 -0
- package/src/components/TestResult/TestResultSteps/index.tsx +49 -0
- package/src/components/TestResult/TestResultSteps/styles.scss +221 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +77 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachmentInfo.tsx +83 -0
- package/src/components/TestResult/TestResultSteps/testResultStep.tsx +78 -0
- package/src/components/TestResult/TestResultSteps/testResultStepInfo.tsx +30 -0
- package/src/components/TestResult/TestResultSteps/wrongAttachment.tsx +8 -0
- package/src/components/TestResult/TestResultTabs/index.tsx +59 -0
- package/src/components/TestResult/TestResultTabs/styles.scss +76 -0
- package/src/components/TestResult/TestResultTeardown/index.tsx +49 -0
- package/src/components/{testresult → TestResult}/TestResultView.js +1 -1
- package/src/components/TestResult/index.tsx +54 -0
- package/src/components/TestResultView/index.tsx +31 -0
- package/src/components/ThemeButton/ThemeButton.tsx +20 -0
- package/src/components/Timeline/index.tsx +2 -0
- package/src/components/Tree/Tree.tsx +76 -0
- package/src/components/Tree/TreeHeader.tsx +82 -0
- package/src/components/Tree/TreeItem.tsx +49 -0
- package/src/components/Tree/TreeItemIcon.tsx +32 -0
- package/src/components/Tree/index.tsx +60 -0
- package/src/components/Tree/styles.scss +185 -0
- package/src/index.html +27 -4
- package/src/index.tsx +60 -0
- package/src/stores/behaviors.ts +127 -0
- package/src/stores/categories.ts +127 -0
- package/src/stores/chart.ts +32 -0
- package/src/stores/charts.ts +22 -0
- package/src/stores/envInfo.ts +34 -0
- package/src/stores/index.ts +4 -0
- package/src/stores/locale.ts +84 -0
- package/src/stores/packages.ts +127 -0
- package/src/stores/router.ts +55 -0
- package/src/stores/stats.ts +36 -0
- package/src/stores/tabs.ts +7 -0
- package/src/stores/testResults.ts +66 -0
- package/src/stores/theme.ts +30 -0
- package/src/stores/tree.ts +127 -0
- package/src/stores/trend.ts +36 -0
- package/src/stores/types.ts +5 -0
- package/src/translations/am.json +128 -0
- package/src/translations/az.json +116 -205
- package/src/translations/br.json +9 -0
- package/src/translations/constants.ts +124 -0
- package/src/translations/de.json +113 -190
- package/src/translations/en.json +118 -203
- package/src/translations/es.json +106 -196
- package/src/translations/fr.json +107 -205
- package/src/translations/he.json +104 -190
- package/src/translations/it.json +119 -0
- package/src/translations/ja.json +104 -195
- package/src/translations/ka.json +119 -0
- package/src/translations/kr.json +104 -195
- package/src/translations/nl.json +107 -205
- package/src/translations/pl.json +105 -208
- package/src/translations/pt.json +119 -0
- package/src/translations/ru.json +102 -200
- package/src/translations/sv.json +107 -210
- package/src/translations/tr.json +107 -205
- package/src/translations/zh.json +105 -177
- package/src/types/globals.d.ts +13 -0
- package/src/types/window.d.ts +8 -0
- package/src/utils/attachments.ts +156 -0
- package/src/utils/copyToClipboard.ts +16 -0
- package/src/utils/isMac.ts +8 -0
- package/src/utils/navigate.ts +7 -0
- package/src/utils/statuses.ts +55 -0
- package/src/utils/time.ts +17 -0
- package/src/utils/treeFilters.ts +139 -0
- package/test/dummy.test.ts +7 -0
- package/test/utils/treeFilters.test.ts +448 -0
- package/tsconfig.json +25 -0
- package/types.d.ts +83 -1
- package/vitest.config.ts +18 -0
- package/webpack.config.js +42 -56
- package/.babelrc.cjs +0 -18
- package/dist/multi/154.app-4abea52a.js +0 -1
- package/dist/multi/216.app-4abea52a.js +0 -1
- package/dist/multi/232.app-4abea52a.js +0 -1
- package/dist/multi/250.app-4abea52a.js +0 -1
- package/dist/multi/256.app-4abea52a.js +0 -1
- package/dist/multi/301.app-4abea52a.js +0 -1
- package/dist/multi/323.app-4abea52a.js +0 -1
- package/dist/multi/353.app-4abea52a.js +0 -1
- package/dist/multi/411d15fc5bb62472eea6ead4fb276ca9.ico +0 -0
- package/dist/multi/564.app-4abea52a.js +0 -1
- package/dist/multi/594.app-4abea52a.js +0 -1
- package/dist/multi/623.app-4abea52a.js +0 -1
- package/dist/multi/7.app-4abea52a.js +0 -1
- package/dist/multi/729.app-4abea52a.js +0 -1
- package/dist/multi/783.app-4abea52a.js +0 -1
- package/dist/multi/826.app-4abea52a.js +0 -1
- package/dist/multi/925.app-4abea52a.js +0 -1
- package/dist/multi/app-4abea52a.js +0 -2
- package/dist/multi/app-4abea52a.js.LICENSE.txt +0 -29
- package/dist/multi/checkmark-c8e83eb1.svg +0 -8
- package/dist/multi/sort-down-icon-2f1625c8.svg +0 -8
- package/dist/multi/sort-icon-dc2db9af.svg +0 -8
- package/dist/multi/sort-up-icon-e10d3fa9.svg +0 -8
- package/dist/multi/sprite.svg +0 -4
- package/dist/multi/styles-4abea52a.css +0 -558
- package/dist/multi/vertical-5e6d1df4.png +0 -0
- package/dist/single/411d15fc5bb62472eea6ead4fb276ca9.ico +0 -0
- package/dist/single/app-69c4b948.js +0 -2
- package/dist/single/app-69c4b948.js.LICENSE.txt +0 -29
- package/dist/single/checkmark-c8e83eb1.svg +0 -8
- package/dist/single/sort-down-icon-2f1625c8.svg +0 -8
- package/dist/single/sort-icon-dc2db9af.svg +0 -8
- package/dist/single/sort-up-icon-e10d3fa9.svg +0 -8
- package/dist/single/sprite.svg +0 -4
- package/dist/single/styles-69c4b948.css +0 -558
- package/src/app.js +0 -69
- package/src/assets/icons/allure-logo.svg +0 -45
- package/src/assets/icons/bamboo.svg +0 -31
- package/src/assets/icons/bitbucket.svg +0 -10
- package/src/assets/icons/bomb.svg +0 -7
- package/src/assets/icons/broken.svg +0 -10
- package/src/assets/icons/bug.svg +0 -10
- package/src/assets/icons/chevron-down.svg +0 -10
- package/src/assets/icons/chevron-left.svg +0 -10
- package/src/assets/icons/chevron-right-fat.svg +0 -10
- package/src/assets/icons/chevron-right.svg +0 -10
- package/src/assets/icons/chevron-up.svg +0 -10
- package/src/assets/icons/circleci.svg +0 -1
- package/src/assets/icons/close.svg +0 -10
- package/src/assets/icons/collapse.svg +0 -5
- package/src/assets/icons/compare.svg +0 -10
- package/src/assets/icons/copy.svg +0 -11
- package/src/assets/icons/csv.svg +0 -13
- package/src/assets/icons/download.svg +0 -11
- package/src/assets/icons/draggable.svg +0 -15
- package/src/assets/icons/expand.svg +0 -5
- package/src/assets/icons/failed.svg +0 -10
- package/src/assets/icons/file.svg +0 -3
- package/src/assets/icons/folder.svg +0 -10
- package/src/assets/icons/github.svg +0 -4
- package/src/assets/icons/gitlab.svg +0 -12
- package/src/assets/icons/graphs.svg +0 -11
- package/src/assets/icons/history.svg +0 -11
- package/src/assets/icons/image.svg +0 -3
- package/src/assets/icons/info.svg +0 -12
- package/src/assets/icons/jenkins.svg +0 -327
- package/src/assets/icons/jobs.svg +0 -12
- package/src/assets/icons/link.svg +0 -11
- package/src/assets/icons/list.svg +0 -13
- package/src/assets/icons/maximize.svg +0 -11
- package/src/assets/icons/new-broken.svg +0 -6
- package/src/assets/icons/new-failed.svg +0 -6
- package/src/assets/icons/new-passed.svg +0 -5
- package/src/assets/icons/overview.svg +0 -5
- package/src/assets/icons/passed.svg +0 -10
- package/src/assets/icons/pdf.svg +0 -13
- package/src/assets/icons/refresh.svg +0 -4
- package/src/assets/icons/retries.svg +0 -11
- package/src/assets/icons/save.svg +0 -10
- package/src/assets/icons/skipped.svg +0 -3
- package/src/assets/icons/sort-down.svg +0 -10
- package/src/assets/icons/sort-up.svg +0 -10
- package/src/assets/icons/sort.svg +0 -11
- package/src/assets/icons/table.svg +0 -10
- package/src/assets/icons/task.svg +0 -11
- package/src/assets/icons/teamcity.svg +0 -40
- package/src/assets/icons/timeline.svg +0 -12
- package/src/assets/icons/tree.svg +0 -10
- package/src/assets/icons/txt.svg +0 -11
- package/src/assets/icons/unknown.svg +0 -10
- package/src/behaviors/ClipboardBehavior.js +0 -34
- package/src/behaviors/DownloadBehavior.js +0 -42
- package/src/behaviors/GaBehavior.js +0 -27
- package/src/behaviors/LoadBehavior.js +0 -18
- package/src/behaviors/TooltipBehavior.js +0 -25
- package/src/behaviors/index.js +0 -7
- package/src/blocks/alert/styles.scss +0 -8
- package/src/blocks/arrow/styles.scss +0 -21
- package/src/blocks/attachment-row/attachment-row.hbs +0 -34
- package/src/blocks/attachment-row/styles.scss +0 -71
- package/src/blocks/bar/styles.scss +0 -22
- package/src/blocks/button/styles.scss +0 -60
- package/src/blocks/clipboard-copy/clipboard-copy.hbs +0 -5
- package/src/blocks/executor-icon/bamboo.svg +0 -31
- package/src/blocks/executor-icon/bitbucket.svg +0 -10
- package/src/blocks/executor-icon/circleci.svg +0 -1
- package/src/blocks/executor-icon/default-icon.png +0 -0
- package/src/blocks/executor-icon/github.svg +0 -4
- package/src/blocks/executor-icon/gitlab.svg +0 -12
- package/src/blocks/executor-icon/jenkins.svg +0 -327
- package/src/blocks/executor-icon/styles.scss +0 -15
- package/src/blocks/executor-icon/teamcity.svg +0 -40
- package/src/blocks/island/styles.scss +0 -7
- package/src/blocks/label/styles.scss +0 -15
- package/src/blocks/link/styles.scss +0 -10
- package/src/blocks/pane/styles.scss +0 -52
- package/src/blocks/pane-header/pane-header.hbs +0 -15
- package/src/blocks/parameters-table/parameters-table.hbs +0 -10
- package/src/blocks/parameters-table/styles.scss +0 -22
- package/src/blocks/spinner/styles.scss +0 -30
- package/src/blocks/splash/styles.scss +0 -13
- package/src/blocks/status-details/status-details.hbs +0 -13
- package/src/blocks/status-details/styles.scss +0 -32
- package/src/blocks/step-stats/step-stats.hbs +0 -15
- package/src/blocks/step-stats/styles.scss +0 -19
- package/src/blocks/table/sort-down-icon.svg +0 -1
- package/src/blocks/table/sort-icon.svg +0 -1
- package/src/blocks/table/sort-up-icon.svg +0 -1
- package/src/blocks/table/sortable-col.hbs +0 -4
- package/src/blocks/table/styles.scss +0 -64
- package/src/blocks/tabs/styles.scss +0 -29
- package/src/blocks/tabs/tabs.hbs +0 -5
- package/src/blocks/text/styles.scss +0 -5
- package/src/blocks/widget/draggable.svg +0 -1
- package/src/blocks/widget/styles.scss +0 -76
- package/src/components/attachment/AttachmentView.hbs +0 -58
- package/src/components/attachment/AttachmentView.js +0 -90
- package/src/components/attachment/styles.scss +0 -78
- package/src/components/empty/EmptyView.hbs +0 -3
- package/src/components/empty/EmptyView.js +0 -18
- package/src/components/empty/styles.scss +0 -4
- package/src/components/error-splash/ErrorSplashView.hbs +0 -4
- package/src/components/error-splash/ErrorSplashView.js +0 -19
- package/src/components/error-splash/styles.scss +0 -4
- package/src/components/graph-base/BaseChartView.hbs +0 -5
- package/src/components/graph-base/BaseChartView.js +0 -78
- package/src/components/graph-base/styles.scss +0 -66
- package/src/components/graph-duration-chart/DurationChartView.js +0 -100
- package/src/components/graph-pie-chart/PieChartView.js +0 -155
- package/src/components/graph-severity-chart/SeverityChartView.js +0 -100
- package/src/components/graph-trend-chart/TrendChartView.js +0 -202
- package/src/components/graph-trend-chart/styles.scss +0 -16
- package/src/components/graph-trend-chart/trend-tooltip.hbs +0 -9
- package/src/components/language-select/LanguageSelectView.hbs +0 -5
- package/src/components/language-select/LanguageSelectView.js +0 -42
- package/src/components/language-select/checkmark.svg +0 -1
- package/src/components/language-select/styles.scss +0 -34
- package/src/components/loader/LoaderView.hbs +0 -6
- package/src/components/loader/LoaderView.js +0 -21
- package/src/components/loader/styles.scss +0 -26
- package/src/components/marks-toggle/MarksToggleView.hbs +0 -14
- package/src/components/marks-toggle/MarksToggleView.js +0 -41
- package/src/components/marks-toggle/styles.scss +0 -38
- package/src/components/modal/styles.scss +0 -31
- package/src/components/node-search/NodeSearchView.hbs +0 -4
- package/src/components/node-search/NodeSearchView.js +0 -32
- package/src/components/node-search/styles.scss +0 -29
- package/src/components/node-sorter/NodeSorterView.hbs +0 -22
- package/src/components/node-sorter/NodeSorterView.js +0 -43
- package/src/components/node-sorter/styles.scss +0 -26
- package/src/components/popover/PopoverView.js +0 -8
- package/src/components/popover/styles.scss +0 -32
- package/src/components/side-by-side/SideBySideView.hbs +0 -2
- package/src/components/side-by-side/SideBySideView.js +0 -42
- package/src/components/side-by-side/styles.scss +0 -59
- package/src/components/side-by-side/vertical.png +0 -0
- package/src/components/status-toggle/StatusToggleView.hbs +0 -16
- package/src/components/status-toggle/StatusToggleView.js +0 -42
- package/src/components/status-toggle/styles.scss +0 -35
- package/src/components/testresult-execution/TestResultExecutionView.hbs +0 -13
- package/src/components/testresult-execution/TestResultExecutionView.js +0 -85
- package/src/components/testresult-execution/stages-block.hbs +0 -47
- package/src/components/testresult-execution/steps-list.hbs +0 -31
- package/src/components/testresult-execution/styles.scss +0 -70
- package/src/components/testresult-overview/TestResultOverviewView.hbs +0 -8
- package/src/components/testresult-overview/TestResultOverviewView.js +0 -46
- package/src/components/testresult-overview/styles.scss +0 -22
- package/src/components/testresult-tree/TestResultTreeView.js +0 -60
- package/src/components/tooltip/TooltipView.js +0 -111
- package/src/components/tooltip/styles.scss +0 -43
- package/src/components/tree/TreeView.hbs +0 -9
- package/src/components/tree/TreeView.js +0 -200
- package/src/components/tree/styles.scss +0 -141
- package/src/components/tree/tree-group.hbs +0 -36
- package/src/components/tree/tree-leaf.hbs +0 -53
- package/src/components/tree/tree-time.hbs +0 -6
- package/src/components/tree-view-container/TreeViewContainer.hbs +0 -34
- package/src/components/tree-view-container/TreeViewContainer.js +0 -103
- package/src/components/tree-view-container/styles.scss +0 -38
- package/src/components/widget-status/WidgetStatusView.hbs +0 -21
- package/src/components/widget-status/WidgetStatusView.js +0 -17
- package/src/components/widgets-grid/WidgetsGridView.js +0 -90
- package/src/components/widgets-grid/styles.scss +0 -34
- package/src/data/localstorage/LocalStorageModel.js +0 -23
- package/src/data/testresult/TestResultModel.js +0 -36
- package/src/data/tree/TreeCollection.js +0 -153
- package/src/data/tree/comparator.js +0 -63
- package/src/data/tree/filter.js +0 -66
- package/src/data/trend/TrendCollection.js +0 -36
- package/src/data/widgets/WidgetsModel.js +0 -25
- package/src/decorators/index.js +0 -53
- package/src/helpers/allure-icon.js +0 -228
- package/src/helpers/and.js +0 -3
- package/src/helpers/angle.js +0 -15
- package/src/helpers/arrow.js +0 -17
- package/src/helpers/b.js +0 -6
- package/src/helpers/concat.js +0 -3
- package/src/helpers/date.js +0 -11
- package/src/helpers/default.js +0 -8
- package/src/helpers/duration.js +0 -60
- package/src/helpers/eq.js +0 -3
- package/src/helpers/fileicon.js +0 -5
- package/src/helpers/filesize.js +0 -8
- package/src/helpers/gt.js +0 -3
- package/src/helpers/inc.js +0 -3
- package/src/helpers/is-def.js +0 -3
- package/src/helpers/job-icon.js +0 -8
- package/src/helpers/linky.js +0 -7
- package/src/helpers/not.js +0 -3
- package/src/helpers/or.js +0 -3
- package/src/helpers/sort-class.js +0 -6
- package/src/helpers/statistic-bar.js +0 -12
- package/src/helpers/status-bar.js +0 -14
- package/src/helpers/t.js +0 -5
- package/src/helpers/text-with-links.js +0 -18
- package/src/helpers/time.js +0 -18
- package/src/helpers/timeago.js +0 -10
- package/src/layouts/application/AppLayout.hbs +0 -2
- package/src/layouts/application/AppLayout.js +0 -50
- package/src/layouts/application/styles.scss +0 -17
- package/src/layouts/error/ErrorLayout.js +0 -11
- package/src/layouts/overview/OverviewLayout.js +0 -8
- package/src/layouts/testresult/TestResultLayout.js +0 -43
- package/src/layouts/tree/TreeLayout.js +0 -45
- package/src/pluginApi.js +0 -26
- package/src/plugins/.eslintrc +0 -5
- package/src/plugins/default/index.js +0 -11
- package/src/plugins/screen-diff/index.js +0 -186
- package/src/plugins/screen-diff/styles.css +0 -30
- package/src/plugins/tab-behaviors/index.js +0 -239
- package/src/plugins/tab-category/index.js +0 -15
- package/src/plugins/tab-graph/GraphCollection.js +0 -12
- package/src/plugins/tab-graph/GraphLayout.js +0 -17
- package/src/plugins/tab-graph/index.js +0 -8
- package/src/plugins/tab-packages/index.js +0 -137
- package/src/plugins/tab-suites/index.js +0 -15
- package/src/plugins/tab-timeline/TimelineLayout.js +0 -18
- package/src/plugins/tab-timeline/TimelineView.hbs +0 -17
- package/src/plugins/tab-timeline/TimelineView.js +0 -250
- package/src/plugins/tab-timeline/index.js +0 -12
- package/src/plugins/tab-timeline/styles.scss +0 -76
- package/src/plugins/testresult-category/CategoryView.hbs +0 -6
- package/src/plugins/testresult-category/CategoryView.js +0 -17
- package/src/plugins/testresult-category/index.js +0 -3
- package/src/plugins/testresult-description/DescriptionView.hbs +0 -4
- package/src/plugins/testresult-description/DescriptionView.js +0 -16
- package/src/plugins/testresult-description/index.js +0 -3
- package/src/plugins/testresult-duration/DurationView.hbs +0 -7
- package/src/plugins/testresult-duration/DurationView.js +0 -16
- package/src/plugins/testresult-duration/index.js +0 -3
- package/src/plugins/testresult-history/HistoryView.hbs +0 -27
- package/src/plugins/testresult-history/HistoryView.js +0 -33
- package/src/plugins/testresult-history/index.js +0 -3
- package/src/plugins/testresult-history/styles.scss +0 -10
- package/src/plugins/testresult-links/LinksView.hbs +0 -17
- package/src/plugins/testresult-links/LinksView.js +0 -17
- package/src/plugins/testresult-links/index.js +0 -3
- package/src/plugins/testresult-links/styles.scss +0 -19
- package/src/plugins/testresult-owner/OwnerView.hbs +0 -4
- package/src/plugins/testresult-owner/OwnerView.js +0 -17
- package/src/plugins/testresult-owner/index.js +0 -3
- package/src/plugins/testresult-parameters/ParametersView.hbs +0 -13
- package/src/plugins/testresult-parameters/ParametersView.js +0 -22
- package/src/plugins/testresult-parameters/index.js +0 -3
- package/src/plugins/testresult-parameters/styles.scss +0 -8
- package/src/plugins/testresult-retries/RetriesView.hbs +0 -13
- package/src/plugins/testresult-retries/RetriesView.js +0 -28
- package/src/plugins/testresult-retries/index.js +0 -3
- package/src/plugins/testresult-retries/styles.scss +0 -11
- package/src/plugins/testresult-severity/SeverityView.hbs +0 -4
- package/src/plugins/testresult-severity/SeverityView.js +0 -17
- package/src/plugins/testresult-severity/index.js +0 -3
- package/src/plugins/testresult-tags/TagsView.hbs +0 -5
- package/src/plugins/testresult-tags/TagsView.js +0 -17
- package/src/plugins/testresult-tags/index.js +0 -3
- package/src/plugins/widget-categories/index.js +0 -12
- package/src/plugins/widget-categories-trend/CategoriesTrendWidgetView.hbs +0 -4
- package/src/plugins/widget-categories-trend/CategoriesTrendWidgetView.js +0 -33
- package/src/plugins/widget-categories-trend/index.js +0 -4
- package/src/plugins/widget-categories-trend/styles.scss +0 -6
- package/src/plugins/widget-duration/DurationWidgetView.hbs +0 -4
- package/src/plugins/widget-duration/DurationWidgetView.js +0 -23
- package/src/plugins/widget-duration/index.js +0 -3
- package/src/plugins/widget-duration-trend/DurationTrendWidgetView.hbs +0 -4
- package/src/plugins/widget-duration-trend/DurationTrendWidgetView.js +0 -49
- package/src/plugins/widget-duration-trend/index.js +0 -4
- package/src/plugins/widget-duration-trend/styles.scss +0 -6
- package/src/plugins/widget-environment/EnvironmentWidget.hbs +0 -27
- package/src/plugins/widget-environment/EnvironmentWidget.js +0 -25
- package/src/plugins/widget-environment/index.js +0 -3
- package/src/plugins/widget-executor/ExecutorsWidgetView.hbs +0 -40
- package/src/plugins/widget-executor/ExecutorsWidgetView.js +0 -8
- package/src/plugins/widget-executor/index.js +0 -3
- package/src/plugins/widget-history-trend/HistoryTrendWidgetView.hbs +0 -4
- package/src/plugins/widget-history-trend/HistoryTrendWidgetView.js +0 -30
- package/src/plugins/widget-history-trend/index.js +0 -6
- package/src/plugins/widget-history-trend/styles.scss +0 -6
- package/src/plugins/widget-launch/LaunchesWidgetView.hbs +0 -23
- package/src/plugins/widget-launch/LaunchesWidgetView.js +0 -8
- package/src/plugins/widget-launch/index.js +0 -3
- package/src/plugins/widget-retry-trend/RetryTrendWidgetView.hbs +0 -4
- package/src/plugins/widget-retry-trend/RetryTrendWidgetView.js +0 -33
- package/src/plugins/widget-retry-trend/index.js +0 -4
- package/src/plugins/widget-retry-trend/styles.scss +0 -6
- package/src/plugins/widget-severity/SeverityWidgetView.hbs +0 -4
- package/src/plugins/widget-severity/SeverityWidgetView.js +0 -23
- package/src/plugins/widget-severity/index.js +0 -3
- package/src/plugins/widget-status/StatusWidgetView.hbs +0 -4
- package/src/plugins/widget-status/StatusWidgetView.js +0 -44
- package/src/plugins/widget-status/index.js +0 -3
- package/src/plugins/widget-suites/index.js +0 -12
- package/src/plugins/widget-summary/SummaryWidgetView.hbs +0 -20
- package/src/plugins/widget-summary/SummaryWidgetView.js +0 -33
- package/src/plugins/widget-summary/index.js +0 -3
- package/src/plugins/widget-summary/styles.scss +0 -14
- package/src/router.js +0 -52
- package/src/utils/arrays.js +0 -3
- package/src/utils/attachmentType.js +0 -101
- package/src/utils/clipboard.js +0 -38
- package/src/utils/escape.js +0 -5
- package/src/utils/gtag.js +0 -8
- package/src/utils/highlight.js +0 -14
- package/src/utils/hotkeys.js +0 -25
- package/src/utils/loading.js +0 -9
- package/src/utils/marks.js +0 -1
- package/src/utils/pluginsRegistry.js +0 -56
- package/src/utils/settings.js +0 -4
- package/src/utils/settingsFactory.js +0 -149
- package/src/utils/sorting.js +0 -21
- package/src/utils/translation.js +0 -63
- package/webpack/utils.js +0 -10
- /package/src/components/{modal → Modal}/ModalView.hbs +0 -0
- /package/src/components/{modal → Modal}/ModalView.js +0 -0
- /package/src/components/{side-nav → SideNav}/SideNavView.hbs +0 -0
- /package/src/components/{side-nav → SideNav}/SideNavView.js +0 -0
- /package/src/components/{testresult → TestResult}/TestResultView.hbs +0 -0
- /package/src/components/{testresult → TestResult}/styles.scss +0 -0
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
.tree {
|
|
2
|
+
position: relative;
|
|
3
|
+
|
|
4
|
+
&:not(:first-child) {
|
|
5
|
+
border-top: 1px solid var(--on-border-muted);
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.tree-list {
|
|
10
|
+
min-height: 128px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.tree-header {
|
|
14
|
+
display: flex;
|
|
15
|
+
align-items: center;
|
|
16
|
+
gap: 4px;
|
|
17
|
+
transition: background-color 300ms;
|
|
18
|
+
cursor: pointer;
|
|
19
|
+
padding: 4px 8px 4px 6px;
|
|
20
|
+
|
|
21
|
+
&:hover {
|
|
22
|
+
background: var(--bg-control-flat-medium);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.tree-header-arrow {
|
|
27
|
+
transform: rotate(-90deg);
|
|
28
|
+
transition: transform 200ms;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.tree-header-arrow-opened {
|
|
32
|
+
transform: rotate(0);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.tree-header-title {
|
|
36
|
+
white-space: nowrap;
|
|
37
|
+
overflow: hidden;
|
|
38
|
+
text-overflow: ellipsis;
|
|
39
|
+
margin-right: 24px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.tree-count {
|
|
43
|
+
display: flex;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.tree-item {
|
|
47
|
+
display: flex;
|
|
48
|
+
justify-content: space-between;
|
|
49
|
+
padding: 6px 8px 6px 6px;
|
|
50
|
+
transition: background-color 300ms;
|
|
51
|
+
gap: 4px;
|
|
52
|
+
cursor: pointer;
|
|
53
|
+
position: relative;
|
|
54
|
+
|
|
55
|
+
&:hover {
|
|
56
|
+
background: var(--bg-control-flat-medium);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&:not(:first-child) {
|
|
60
|
+
border-top: 1px solid var(--on-border-muted);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
.tree-item-marked {
|
|
64
|
+
background: var(--bg-base-secondary);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.item-title {
|
|
68
|
+
display: flex;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.item-time {
|
|
72
|
+
flex: none;
|
|
73
|
+
margin-left: auto;
|
|
74
|
+
color: var(--on-text-hint);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.test-count {
|
|
78
|
+
display: flex;
|
|
79
|
+
margin-left: auto;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.tree-content:not(.root) {
|
|
83
|
+
display: block;
|
|
84
|
+
padding-left: 24px;
|
|
85
|
+
margin-bottom: 12px;
|
|
86
|
+
border-top: 1px solid var(--on-border-muted);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.tree-item-icon {
|
|
90
|
+
padding: 2px 4px;
|
|
91
|
+
height: max-content;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.status-passed {
|
|
95
|
+
color: var(--bg-support-castor);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.status-failed {
|
|
99
|
+
color: var(--bg-support-capella);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.status-broken {
|
|
103
|
+
color: var(--bg-support-atlas);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.status-skipped {
|
|
107
|
+
color: var(--bg-support-rau);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.status-unknown {
|
|
111
|
+
color: var(--bg-support-skat);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.tree-header-bar {
|
|
115
|
+
display: inline-flex;
|
|
116
|
+
font-family: var(--font-family);
|
|
117
|
+
max-width: 140px;
|
|
118
|
+
min-width: 46px;
|
|
119
|
+
border-radius: 4px;
|
|
120
|
+
height: 12px;
|
|
121
|
+
background: var(--on-text-hint);
|
|
122
|
+
margin-left: auto;
|
|
123
|
+
font-size: 10px;
|
|
124
|
+
font-weight: var(--font-weight-extra-bold);
|
|
125
|
+
line-height: 12px;
|
|
126
|
+
overflow: hidden;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.tree-header-bar-item {
|
|
130
|
+
display: flex;
|
|
131
|
+
min-width: 16px;
|
|
132
|
+
justify-content: center;
|
|
133
|
+
text-align: center;
|
|
134
|
+
padding: 0 6px;
|
|
135
|
+
flex-grow: 1;
|
|
136
|
+
|
|
137
|
+
&.passed {
|
|
138
|
+
background-color: var(--bg-support-castor);
|
|
139
|
+
color: var(--constant-on-text-primary);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
&.failed {
|
|
143
|
+
background-color: var(--bg-support-capella);
|
|
144
|
+
color: var(--constant-on-text-primary);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
&.broken {
|
|
148
|
+
background-color: var(--bg-support-atlas);
|
|
149
|
+
color: var(--constant-on-text-primary);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
&.skipped {
|
|
153
|
+
background-color: var(--bg-support-rau);
|
|
154
|
+
color: var(--constant-on-text-primary);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
&.unknown {
|
|
158
|
+
background-color: var(--bg-support-skat);
|
|
159
|
+
color: var(--constant-on-text-primary);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.tree-empty-results {
|
|
164
|
+
padding: 44px 24px;
|
|
165
|
+
text-align: center;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.tree-empty-results-title {
|
|
169
|
+
color: var(--on-text-secondary);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.tree-empty-results-clear-button {
|
|
173
|
+
margin-top: 4px;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.order {
|
|
177
|
+
user-select: none;
|
|
178
|
+
color: var(--on-text-hint);
|
|
179
|
+
min-width: 16px;
|
|
180
|
+
text-align: center;
|
|
181
|
+
box-sizing: content-box;
|
|
182
|
+
padding-top: 2px;
|
|
183
|
+
line-height: 16px;
|
|
184
|
+
width: 24px;
|
|
185
|
+
}
|
package/src/index.html
CHANGED
|
@@ -3,15 +3,38 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<!-- Inline favicon for single single-file build -->
|
|
6
|
-
|
|
6
|
+
<link rel="icon" href="data:image/svg+xml,%3Csvg width='32' height='32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.232 4.662a3.6 3.6 0 0 1 5.09.035c2.855 2.894 4.662 6.885 4.662 11.295a3.6 3.6 0 0 1-7.2 0c0-2.406-.981-4.61-2.587-6.24a3.6 3.6 0 0 1 .035-5.09Z' fill='url(%23a)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.392 3.6a3.6 3.6 0 0 1 3.6-3.6c4.41 0 8.401 1.807 11.296 4.662a3.6 3.6 0 1 1-5.056 5.126C20.602 8.18 18.398 7.2 15.992 7.2a3.6 3.6 0 0 1-3.6-3.6Z' fill='url(%23b)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 15.992C0 7.157 7.157 0 15.992 0a3.6 3.6 0 0 1 0 7.2A8.789 8.789 0 0 0 7.2 15.992c0 2.406.981 4.61 2.588 6.24a3.6 3.6 0 0 1-5.126 5.056C1.807 24.393 0 20.402 0 15.992Z' fill='url(%23c)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.661 22.232a3.6 3.6 0 0 1 5.091-.035c1.63 1.606 3.834 2.587 6.24 2.587a3.6 3.6 0 0 1 0 7.2c-4.41 0-8.401-1.807-11.295-4.661a3.6 3.6 0 0 1-.036-5.091Z' fill='url(%23d)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M28.384 12.392a3.6 3.6 0 0 1 3.6 3.6c0 8.835-7.157 15.992-15.992 15.992a3.6 3.6 0 0 1 0-7.2 8.789 8.789 0 0 0 8.792-8.792 3.6 3.6 0 0 1 3.6-3.6Z' fill='url(%23e)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M28.385 12.392a3.6 3.6 0 0 1 3.6 3.6v12.392a3.6 3.6 0 0 1-7.2 0V15.992a3.6 3.6 0 0 1 3.6-3.6Z' fill='url(%23f)'/%3E%3Cg clip-path='url(%23g)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.232 4.662a3.6 3.6 0 0 1 5.091.035c2.855 2.894 4.662 6.885 4.662 11.295a3.6 3.6 0 0 1-7.2 0c0-2.406-.982-4.61-2.588-6.24a3.6 3.6 0 0 1 .035-5.09Z' fill='url(%23h)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='a' x1='26.4' y1='9.6' x2='28.8' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237E22CE'/%3E%3Cstop offset='1' stop-color='%238B5CF6'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='26.8' y1='9.4' x2='17.8' y2='3.6' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23EF4444'/%3E%3Cstop offset='1' stop-color='%23DC2626'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='3.6' y1='14' x2='5.4' y2='24.8' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2322C55E'/%3E%3Cstop offset='1' stop-color='%2315803D'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' x1='4.8' y1='22.2' x2='14.4' y2='29.2' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2394A3B8'/%3E%3Cstop offset='.958' stop-color='%2364748B'/%3E%3Cstop offset='1' stop-color='%2364748B'/%3E%3C/linearGradient%3E%3ClinearGradient id='e' x1='28.4' y1='22.173' x2='22.188' y2='28.384' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D97706'/%3E%3Cstop offset='1' stop-color='%23FBBF24'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' x1='29.2' y1='54.4' x2='30.626' y2='54.256' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FBBF24'/%3E%3Cstop offset='1' stop-color='%23FBBF24'/%3E%3C/linearGradient%3E%3ClinearGradient id='h' x1='26.4' y1='9.6' x2='28.8' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237E22CE'/%3E%3Cstop offset='1' stop-color='%238B5CF6'/%3E%3C/linearGradient%3E%3CclipPath id='g'%3E%3Cpath fill='%23fff' transform='translate(24.8 12)' d='M0 0h7.2v8H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E" />
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
8
8
|
<title>Allure Report</title>
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
|
11
|
-
<div id="
|
|
12
|
-
<script type="module" src="/src/index.js"></script>
|
|
11
|
+
<div id="app"></div>
|
|
13
12
|
<script>
|
|
14
|
-
|
|
13
|
+
</script>
|
|
14
|
+
<script>
|
|
15
|
+
window.allure = window.allure || {};
|
|
16
|
+
</script>
|
|
17
|
+
<script>
|
|
18
|
+
const { origin, pathname } = window.location;
|
|
19
|
+
const url = new URL(pathname, origin);
|
|
20
|
+
const baseEl = document.createElement("base");
|
|
21
|
+
|
|
22
|
+
baseEl.href = url.toString();
|
|
23
|
+
|
|
24
|
+
window.document.head.appendChild(baseEl);
|
|
25
|
+
</script>
|
|
26
|
+
<script>
|
|
27
|
+
window.allureReportOptions = {
|
|
28
|
+
reportName: "Allure Classic Report (Dev)",
|
|
29
|
+
logo: "/data/logo.jpg",
|
|
30
|
+
theme: "light",
|
|
31
|
+
reportLanguage: "ru",
|
|
32
|
+
createdAt: 1731513697651,
|
|
33
|
+
groupBy: "suite",
|
|
34
|
+
};
|
|
35
|
+
</script>
|
|
36
|
+
<script async>
|
|
37
|
+
window.allureReportDataReady = true;
|
|
15
38
|
</script>
|
|
16
39
|
</body>
|
|
17
40
|
</html>
|
package/src/index.tsx
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { PageLoader } from "@allurereport/web-components";
|
|
2
|
+
import "@allurereport/web-components/index.css";
|
|
3
|
+
import { render } from "preact";
|
|
4
|
+
import { useEffect, useMemo } from "preact/compat";
|
|
5
|
+
import "@/assets/scss/index.scss";
|
|
6
|
+
import { BaseLayout } from "@/components/BaseLayout";
|
|
7
|
+
import Behaviors from "@/components/Behaviors";
|
|
8
|
+
import Categories from "@/components/Categories";
|
|
9
|
+
import Graphs from "@/components/Graphs";
|
|
10
|
+
import Overview from "@/components/Overview";
|
|
11
|
+
import Packages from "@/components/Packages";
|
|
12
|
+
import Suites from "@/components/Suites";
|
|
13
|
+
import { TestResultView } from "@/components/TestResultView";
|
|
14
|
+
import Timeline from "@/components/Timeline";
|
|
15
|
+
import { currentLocale, getLocale, getTheme } from "@/stores";
|
|
16
|
+
import { handleHashChange, route } from "@/stores/router";
|
|
17
|
+
|
|
18
|
+
const tabComponents = {
|
|
19
|
+
overview: Overview,
|
|
20
|
+
behaviors: Behaviors,
|
|
21
|
+
categories: Categories,
|
|
22
|
+
graphs: Graphs,
|
|
23
|
+
packages: Packages,
|
|
24
|
+
suites: Suites,
|
|
25
|
+
timeline: Timeline,
|
|
26
|
+
testresult: TestResultView,
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const App = () => {
|
|
30
|
+
useEffect(() => {
|
|
31
|
+
getTheme();
|
|
32
|
+
getLocale();
|
|
33
|
+
handleHashChange();
|
|
34
|
+
}, []);
|
|
35
|
+
|
|
36
|
+
useEffect(() => {
|
|
37
|
+
globalThis.addEventListener("hashchange", handleHashChange);
|
|
38
|
+
|
|
39
|
+
return () => {
|
|
40
|
+
globalThis.removeEventListener("hashchange", handleHashChange);
|
|
41
|
+
};
|
|
42
|
+
}, []);
|
|
43
|
+
|
|
44
|
+
const ActiveComponent = useMemo(() => tabComponents[route.value.tabName] || (() => null), [route.value.tabName]);
|
|
45
|
+
|
|
46
|
+
if (!currentLocale.value) {
|
|
47
|
+
return <PageLoader />;
|
|
48
|
+
}
|
|
49
|
+
return (
|
|
50
|
+
<BaseLayout>
|
|
51
|
+
<ActiveComponent params={route.value.params} />
|
|
52
|
+
</BaseLayout>
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
const rootElement = document.getElementById("app");
|
|
57
|
+
|
|
58
|
+
(async () => {
|
|
59
|
+
render(<App />, rootElement);
|
|
60
|
+
})();
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { fetchReportJsonData } from "@allurereport/web-commons";
|
|
2
|
+
import { computed, signal } from "@preact/signals";
|
|
3
|
+
import type { ClassicStatus, ClassicTree, ClassicTreeGroup } from "types";
|
|
4
|
+
import type { StoreSignalState } from "@/stores/types";
|
|
5
|
+
import { createRecursiveTree, isRecursiveTreeEmpty } from "@/utils/treeFilters";
|
|
6
|
+
|
|
7
|
+
export type TreeSortBy = "order" | "duration" | "status" | "alphabet";
|
|
8
|
+
export type TreeDirection = "asc" | "desc";
|
|
9
|
+
export type TreeFilters = "flaky" | "retry" | "new";
|
|
10
|
+
export type TreeFiltersState = {
|
|
11
|
+
query: string;
|
|
12
|
+
status: ClassicStatus;
|
|
13
|
+
filter: Record<TreeFilters, boolean>;
|
|
14
|
+
sortBy: TreeSortBy;
|
|
15
|
+
direction: TreeDirection;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const behaviorsStore = signal<StoreSignalState<ClassicTree>>({
|
|
19
|
+
loading: true,
|
|
20
|
+
error: undefined,
|
|
21
|
+
data: undefined,
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
export const noTests = computed(() => !Object.keys(behaviorsStore?.value?.data?.leavesById).length);
|
|
25
|
+
|
|
26
|
+
export const behaviorsFiltersStore = signal<TreeFiltersState>({
|
|
27
|
+
query: "",
|
|
28
|
+
status: "total",
|
|
29
|
+
filter: {
|
|
30
|
+
flaky: false,
|
|
31
|
+
retry: false,
|
|
32
|
+
new: false,
|
|
33
|
+
},
|
|
34
|
+
sortBy: "order",
|
|
35
|
+
direction: "asc",
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
export const filteredBehaviors = computed(() => {
|
|
39
|
+
const { root, leavesById, groupsById } = behaviorsStore.value.data;
|
|
40
|
+
|
|
41
|
+
return createRecursiveTree({
|
|
42
|
+
group: root as ClassicTreeGroup,
|
|
43
|
+
leavesById,
|
|
44
|
+
groupsById,
|
|
45
|
+
filterOptions: behaviorsFiltersStore.value,
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
export const noTestsFound = computed(() => {
|
|
50
|
+
return isRecursiveTreeEmpty(filteredBehaviors.value);
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
export const clearBehaviorsFilters = () => {
|
|
54
|
+
behaviorsFiltersStore.value = {
|
|
55
|
+
query: "",
|
|
56
|
+
status: "total",
|
|
57
|
+
filter: {
|
|
58
|
+
flaky: false,
|
|
59
|
+
retry: false,
|
|
60
|
+
new: false,
|
|
61
|
+
},
|
|
62
|
+
sortBy: "order",
|
|
63
|
+
direction: "asc",
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export const setBehaviorsQuery = (query: string) => {
|
|
68
|
+
behaviorsFiltersStore.value = {
|
|
69
|
+
...behaviorsFiltersStore.value,
|
|
70
|
+
query,
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
export const setBehaviorsStatus = (status: ClassicStatus) => {
|
|
75
|
+
behaviorsFiltersStore.value = {
|
|
76
|
+
...behaviorsFiltersStore.value,
|
|
77
|
+
status,
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
export const setBehaviorsSortBy = (sortBy: TreeSortBy) => {
|
|
82
|
+
behaviorsFiltersStore.value = {
|
|
83
|
+
...behaviorsFiltersStore.value,
|
|
84
|
+
sortBy,
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export const setBehaviorsDirection = (direction: TreeDirection) => {
|
|
89
|
+
behaviorsFiltersStore.value = {
|
|
90
|
+
...behaviorsFiltersStore.value,
|
|
91
|
+
direction,
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export const setBehaviorsFilter = (filterKey: TreeFilters, value: boolean) => {
|
|
96
|
+
behaviorsFiltersStore.value = {
|
|
97
|
+
...behaviorsFiltersStore.value,
|
|
98
|
+
filter: {
|
|
99
|
+
...behaviorsFiltersStore.value.filter,
|
|
100
|
+
[filterKey]: value,
|
|
101
|
+
},
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
export const fetchBehaviorsData = async () => {
|
|
106
|
+
behaviorsStore.value = {
|
|
107
|
+
...behaviorsStore.value,
|
|
108
|
+
loading: true,
|
|
109
|
+
error: undefined,
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
try {
|
|
113
|
+
const res = await fetchReportJsonData<ClassicTree>("widgets/behaviors.json", { bustCache: true });
|
|
114
|
+
|
|
115
|
+
behaviorsStore.value = {
|
|
116
|
+
data: res,
|
|
117
|
+
error: undefined,
|
|
118
|
+
loading: false,
|
|
119
|
+
};
|
|
120
|
+
} catch (e) {
|
|
121
|
+
behaviorsStore.value = {
|
|
122
|
+
...behaviorsStore.value,
|
|
123
|
+
error: e.message,
|
|
124
|
+
loading: false,
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
};
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { fetchReportJsonData } from "@allurereport/web-commons";
|
|
2
|
+
import { computed, signal } from "@preact/signals";
|
|
3
|
+
import type { ClassicStatus, ClassicTree, ClassicTreeGroup } from "types";
|
|
4
|
+
import type { StoreSignalState } from "@/stores/types";
|
|
5
|
+
import { createRecursiveTree, isRecursiveTreeEmpty } from "@/utils/treeFilters";
|
|
6
|
+
|
|
7
|
+
export type TreeSortBy = "order" | "duration" | "status" | "alphabet";
|
|
8
|
+
export type TreeDirection = "asc" | "desc";
|
|
9
|
+
export type TreeFilters = "flaky" | "retry" | "new";
|
|
10
|
+
export type TreeFiltersState = {
|
|
11
|
+
query: string;
|
|
12
|
+
status: ClassicStatus;
|
|
13
|
+
filter: Record<TreeFilters, boolean>;
|
|
14
|
+
sortBy: TreeSortBy;
|
|
15
|
+
direction: TreeDirection;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const categoriesStore = signal<StoreSignalState<ClassicTree>>({
|
|
19
|
+
loading: true,
|
|
20
|
+
error: undefined,
|
|
21
|
+
data: undefined,
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
export const noTests = computed(() => !Object.keys(categoriesStore?.value?.data?.leavesById).length);
|
|
25
|
+
|
|
26
|
+
export const categoriesFiltersStore = signal<TreeFiltersState>({
|
|
27
|
+
query: "",
|
|
28
|
+
status: "total",
|
|
29
|
+
filter: {
|
|
30
|
+
flaky: false,
|
|
31
|
+
retry: false,
|
|
32
|
+
new: false,
|
|
33
|
+
},
|
|
34
|
+
sortBy: "order",
|
|
35
|
+
direction: "asc",
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
export const filteredCategories = computed(() => {
|
|
39
|
+
const { root, leavesById, groupsById } = categoriesStore.value.data;
|
|
40
|
+
|
|
41
|
+
return createRecursiveTree({
|
|
42
|
+
group: root as ClassicTreeGroup,
|
|
43
|
+
leavesById,
|
|
44
|
+
groupsById,
|
|
45
|
+
filterOptions: categoriesFiltersStore.value,
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
export const noTestsFound = computed(() => {
|
|
50
|
+
return isRecursiveTreeEmpty(filteredCategories.value);
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
export const clearCategoriesFilters = () => {
|
|
54
|
+
categoriesFiltersStore.value = {
|
|
55
|
+
query: "",
|
|
56
|
+
status: "total",
|
|
57
|
+
filter: {
|
|
58
|
+
flaky: false,
|
|
59
|
+
retry: false,
|
|
60
|
+
new: false,
|
|
61
|
+
},
|
|
62
|
+
sortBy: "order",
|
|
63
|
+
direction: "asc",
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export const setCategoriesQuery = (query: string) => {
|
|
68
|
+
categoriesFiltersStore.value = {
|
|
69
|
+
...categoriesFiltersStore.value,
|
|
70
|
+
query,
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
export const setCategoriesStatus = (status: ClassicStatus) => {
|
|
75
|
+
categoriesFiltersStore.value = {
|
|
76
|
+
...categoriesFiltersStore.value,
|
|
77
|
+
status,
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
export const setCategoriesSortBy = (sortBy: TreeSortBy) => {
|
|
82
|
+
categoriesFiltersStore.value = {
|
|
83
|
+
...categoriesFiltersStore.value,
|
|
84
|
+
sortBy,
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export const setCategoriesDirection = (direction: TreeDirection) => {
|
|
89
|
+
categoriesFiltersStore.value = {
|
|
90
|
+
...categoriesFiltersStore.value,
|
|
91
|
+
direction,
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export const setCategoriesFilter = (filterKey: TreeFilters, value: boolean) => {
|
|
96
|
+
categoriesFiltersStore.value = {
|
|
97
|
+
...categoriesFiltersStore.value,
|
|
98
|
+
filter: {
|
|
99
|
+
...categoriesFiltersStore.value.filter,
|
|
100
|
+
[filterKey]: value,
|
|
101
|
+
},
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
export const fetchCategoriesData = async () => {
|
|
106
|
+
categoriesStore.value = {
|
|
107
|
+
...categoriesStore.value,
|
|
108
|
+
loading: true,
|
|
109
|
+
error: undefined,
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
try {
|
|
113
|
+
const res = await fetchReportJsonData<ClassicTree>("widgets/categories.json", { bustCache: true });
|
|
114
|
+
|
|
115
|
+
categoriesStore.value = {
|
|
116
|
+
data: res,
|
|
117
|
+
error: undefined,
|
|
118
|
+
loading: false,
|
|
119
|
+
};
|
|
120
|
+
} catch (e) {
|
|
121
|
+
categoriesStore.value = {
|
|
122
|
+
...categoriesStore.value,
|
|
123
|
+
error: e.message,
|
|
124
|
+
loading: false,
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { fetchReportJsonData } from "@allurereport/web-commons";
|
|
2
|
+
import { signal } from "@preact/signals";
|
|
3
|
+
import { StoreSignalState } from "@/stores/types";
|
|
4
|
+
|
|
5
|
+
export const pieChartStore = signal<StoreSignalState<any>>({
|
|
6
|
+
loading: true,
|
|
7
|
+
error: undefined,
|
|
8
|
+
data: undefined,
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
export const fetchPieChartData = async () => {
|
|
12
|
+
pieChartStore.value = {
|
|
13
|
+
...pieChartStore.value,
|
|
14
|
+
loading: true,
|
|
15
|
+
error: undefined,
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
try {
|
|
19
|
+
const res = await fetchReportJsonData("widgets/allure_pie_chart.json", { bustCache: true });
|
|
20
|
+
|
|
21
|
+
pieChartStore.value = {
|
|
22
|
+
data: res,
|
|
23
|
+
error: undefined,
|
|
24
|
+
loading: false,
|
|
25
|
+
};
|
|
26
|
+
} catch (err) {
|
|
27
|
+
pieChartStore.value = {
|
|
28
|
+
error: err.message,
|
|
29
|
+
loading: false,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { computed } from "@preact/signals";
|
|
2
|
+
import { fetchPieChartData, pieChartStore } from "@/stores/chart";
|
|
3
|
+
import { fetchTrendData, trendStore } from "@/stores/trend";
|
|
4
|
+
|
|
5
|
+
export const chartsStore = computed(() => {
|
|
6
|
+
const pieChartValue = pieChartStore.value;
|
|
7
|
+
const trendValue = trendStore.value;
|
|
8
|
+
|
|
9
|
+
return {
|
|
10
|
+
error: pieChartValue.error || trendValue.error,
|
|
11
|
+
loading: pieChartValue.loading || trendValue.loading,
|
|
12
|
+
data: {
|
|
13
|
+
pie: pieChartValue.data,
|
|
14
|
+
trends: trendValue.data,
|
|
15
|
+
},
|
|
16
|
+
};
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
export const fetchChartsData = () => {
|
|
20
|
+
fetchTrendData();
|
|
21
|
+
fetchPieChartData();
|
|
22
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { EnvironmentItem } from "@allurereport/core-api";
|
|
2
|
+
import { fetchReportJsonData } from "@allurereport/web-commons";
|
|
3
|
+
import { signal } from "@preact/signals";
|
|
4
|
+
import type { StoreSignalState } from "@/stores/types";
|
|
5
|
+
|
|
6
|
+
export const envInfoStore = signal<StoreSignalState<EnvironmentItem[]>>({
|
|
7
|
+
loading: false,
|
|
8
|
+
error: undefined,
|
|
9
|
+
data: undefined,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export const fetchEnvInfo = async () => {
|
|
13
|
+
envInfoStore.value = {
|
|
14
|
+
...envInfoStore.value,
|
|
15
|
+
loading: true,
|
|
16
|
+
error: undefined,
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
try {
|
|
20
|
+
const res = await fetchReportJsonData<EnvironmentItem[]>("widgets/allure_environment.json", { bustCache: true });
|
|
21
|
+
|
|
22
|
+
envInfoStore.value = {
|
|
23
|
+
data: res,
|
|
24
|
+
error: undefined,
|
|
25
|
+
loading: false,
|
|
26
|
+
};
|
|
27
|
+
} catch (e) {
|
|
28
|
+
envInfoStore.value = {
|
|
29
|
+
...envInfoStore.value,
|
|
30
|
+
error: e.message,
|
|
31
|
+
loading: false,
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
};
|