@allurereport/web-awesome 3.0.0-beta.3
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 +15 -0
- package/README.md +27 -0
- package/dist/multi/141.app-b6362ca0.js +1 -0
- package/dist/multi/222.app-b6362ca0.js +1 -0
- package/dist/multi/335.app-b6362ca0.js +1 -0
- package/dist/multi/34.app-b6362ca0.js +1 -0
- package/dist/multi/349.app-b6362ca0.js +1 -0
- package/dist/multi/378.app-b6362ca0.js +1 -0
- package/dist/multi/406.app-b6362ca0.js +1 -0
- package/dist/multi/476.app-b6362ca0.js +1 -0
- package/dist/multi/53.app-b6362ca0.js +1 -0
- package/dist/multi/584.app-b6362ca0.js +1 -0
- package/dist/multi/690.app-b6362ca0.js +1 -0
- package/dist/multi/747.app-b6362ca0.js +1 -0
- package/dist/multi/767.app-b6362ca0.js +1 -0
- package/dist/multi/816.app-b6362ca0.js +1 -0
- package/dist/multi/83.app-b6362ca0.js +1 -0
- package/dist/multi/873.app-b6362ca0.js +1 -0
- package/dist/multi/920.app-b6362ca0.js +1 -0
- package/dist/multi/991.app-b6362ca0.js +1 -0
- package/dist/multi/JetBrainsMono_vf-9e9649b6..woff2 +0 -0
- package/dist/multi/JetBrainsMono_vf-b9a9c326..woff +0 -0
- package/dist/multi/app-b6362ca0.js +2 -0
- package/dist/multi/app-b6362ca0.js.LICENSE.txt +16 -0
- package/dist/multi/manifest.json +26 -0
- package/dist/multi/pt-root-ui_vf-22fe60ca..woff +0 -0
- package/dist/multi/pt-root-ui_vf-9d251e8b..woff2 +0 -0
- package/dist/multi/styles-b6362ca0.css +363 -0
- package/dist/single/app-57ae0a60.js +2 -0
- package/dist/single/app-57ae0a60.js.LICENSE.txt +16 -0
- package/dist/single/manifest.json +3 -0
- package/package.json +93 -0
- package/postcss.config.js +5 -0
- package/src/assets/fonts/JetBrainsMono_vf.woff +0 -0
- package/src/assets/fonts/JetBrainsMono_vf.woff2 +0 -0
- package/src/assets/fonts/pt-root-ui_vf.woff +0 -0
- package/src/assets/fonts/pt-root-ui_vf.woff2 +0 -0
- package/src/assets/scss/_common.scss +134 -0
- package/src/assets/scss/code.css +71 -0
- package/src/assets/scss/day.scss +51 -0
- package/src/assets/scss/fonts.scss +21 -0
- package/src/assets/scss/index.scss +9 -0
- package/src/assets/scss/mixins.scss +26 -0
- package/src/assets/scss/night.scss +61 -0
- package/src/assets/scss/palette.scss +393 -0
- package/src/assets/scss/theme.scss +117 -0
- package/src/assets/scss/typography.scss +218 -0
- package/src/assets/scss/vars.scss +8 -0
- package/src/assets/svg/arrows-chevron-down.svg +5 -0
- package/src/assets/svg/github.svg +5 -0
- package/src/assets/svg/line-alerts-notification-box.svg +3 -0
- package/src/assets/svg/line-arrows-chevron-down-double.svg +3 -0
- package/src/assets/svg/line-arrows-chevron-down.svg +3 -0
- package/src/assets/svg/line-arrows-chevron-right.svg +3 -0
- package/src/assets/svg/line-arrows-chevron-up-double.svg +3 -0
- package/src/assets/svg/line-arrows-chevron-up.svg +3 -0
- package/src/assets/svg/line-arrows-corner-down-right.svg +3 -0
- package/src/assets/svg/line-arrows-expand-3.svg +3 -0
- package/src/assets/svg/line-arrows-refresh-ccw-1.svg +3 -0
- package/src/assets/svg/line-arrows-sort-line-asc.svg +3 -0
- package/src/assets/svg/line-arrows-sort-line-desc.svg +3 -0
- package/src/assets/svg/line-arrows-switch-vertical-1.svg +3 -0
- package/src/assets/svg/line-dev-bug-2.svg +3 -0
- package/src/assets/svg/line-dev-code-square.svg +3 -0
- package/src/assets/svg/line-files-file-attachment-2.svg +3 -0
- package/src/assets/svg/line-general-check.svg +3 -0
- package/src/assets/svg/line-general-checklist3.svg +3 -0
- package/src/assets/svg/line-general-copy-3.svg +3 -0
- package/src/assets/svg/line-general-download-cloud.svg +3 -0
- package/src/assets/svg/line-general-equal.svg +3 -0
- package/src/assets/svg/line-general-home-line.svg +3 -0
- package/src/assets/svg/line-general-link-1.svg +3 -0
- package/src/assets/svg/line-general-link-external.svg +3 -0
- package/src/assets/svg/line-general-search-md.svg +3 -0
- package/src/assets/svg/line-general-settings-1.svg +3 -0
- package/src/assets/svg/line-general-x-close.svg +3 -0
- package/src/assets/svg/line-general-zap.svg +3 -0
- package/src/assets/svg/line-helpers-flag.svg +4 -0
- package/src/assets/svg/line-helpers-play-circle.svg +4 -0
- package/src/assets/svg/line-images-image.svg +3 -0
- package/src/assets/svg/line-security-key.svg +3 -0
- package/src/assets/svg/line-shapes-dot-circle.svg +3 -0
- package/src/assets/svg/line-shapes-moon.svg +3 -0
- package/src/assets/svg/line-shapes-sun.svg +3 -0
- package/src/assets/svg/line-time-clock-stopwatch.svg +3 -0
- package/src/assets/svg/report-logo.svg +64 -0
- package/src/assets/svg/solid-alert-circle.svg +3 -0
- package/src/assets/svg/solid-check-circle.svg +3 -0
- package/src/assets/svg/solid-help-circle.svg +3 -0
- package/src/assets/svg/solid-minus-circle.svg +3 -0
- package/src/assets/svg/solid-x-circle.svg +3 -0
- package/src/assets/svg/spinner.svg +18 -0
- package/src/assets/svg/view-off.svg +12 -0
- package/src/assets/svg/view.svg +11 -0
- package/src/components/app/ArrowButton/index.tsx +36 -0
- package/src/components/app/ArrowButton/styles.scss +32 -0
- package/src/components/app/BaseLayout/index.tsx +60 -0
- package/src/components/app/BaseLayout/styles.scss +60 -0
- package/src/components/app/Footer/FooterLogo.tsx +16 -0
- package/src/components/app/Footer/FooterVersion.tsx +27 -0
- package/src/components/app/Footer/index.tsx +13 -0
- package/src/components/app/Footer/styles.scss +14 -0
- package/src/components/app/Header/index.tsx +17 -0
- package/src/components/app/Header/styles.scss +26 -0
- package/src/components/app/LanguagePicker/index.tsx +41 -0
- package/src/components/app/MainReport/index.tsx +19 -0
- package/src/components/app/Metadata/index.tsx +114 -0
- package/src/components/app/Metadata/styles.scss +146 -0
- package/src/components/app/MetadataButton/index.tsx +33 -0
- package/src/components/app/MetadataButton/styles.scss +53 -0
- package/src/components/app/Modal/index.tsx +184 -0
- package/src/components/app/Modal/styles.scss +126 -0
- package/src/components/app/ReportBody/Filters.tsx +94 -0
- package/src/components/app/ReportBody/HeaderActions.tsx +21 -0
- package/src/components/app/ReportBody/SortBy.tsx +134 -0
- package/src/components/app/ReportBody/context.tsx +107 -0
- package/src/components/app/ReportBody/index.tsx +71 -0
- package/src/components/app/ReportBody/styles.scss +64 -0
- package/src/components/app/ReportHeader/ReportHeaderLabelList.tsx +12 -0
- package/src/components/app/ReportHeader/ReportHeaderLogo.tsx +10 -0
- package/src/components/app/ReportHeader/ReportHeaderPie.tsx +14 -0
- package/src/components/app/ReportHeader/index.tsx +33 -0
- package/src/components/app/ReportHeader/styles.scss +49 -0
- package/src/components/app/ReportLogo/index.tsx +17 -0
- package/src/components/app/ReportLogo/styles.scss +20 -0
- package/src/components/app/ReportLogoFull/index.tsx +21 -0
- package/src/components/app/ReportLogoFull/styles.scss +7 -0
- package/src/components/app/ReportMetadata/MetadataItem.tsx +45 -0
- package/src/components/app/ReportMetadata/MetadataSummary.tsx +79 -0
- package/src/components/app/ReportMetadata/MetadataTestType.tsx +16 -0
- package/src/components/app/ReportMetadata/MetadataWithIcon.tsx +25 -0
- package/src/components/app/ReportMetadata/index.tsx +46 -0
- package/src/components/app/ReportMetadata/styles.scss +99 -0
- package/src/components/app/Tabs/index.tsx +58 -0
- package/src/components/app/Tabs/styles.scss +56 -0
- package/src/components/app/TestResult/TestResultAttachmentsView/index.tsx +27 -0
- package/src/components/app/TestResult/TestResultAttachmentsView/styles.scss +12 -0
- package/src/components/app/TestResult/TestResultDescription/index.tsx +27 -0
- package/src/components/app/TestResult/TestResultDescription/styles.scss +12 -0
- package/src/components/app/TestResult/TestResultDropdown/index.tsx +19 -0
- package/src/components/app/TestResult/TestResultDropdown/styles.scss +34 -0
- package/src/components/app/TestResult/TestResultEmpty/index.tsx +34 -0
- package/src/components/app/TestResult/TestResultEmpty/styles.scss +25 -0
- package/src/components/app/TestResult/TestResultError/index.tsx +51 -0
- package/src/components/app/TestResult/TestResultError/styles.scss +40 -0
- package/src/components/app/TestResult/TestResultHeader/index.tsx +55 -0
- package/src/components/app/TestResult/TestResultHeader/styles.scss +43 -0
- package/src/components/app/TestResult/TestResultHistory/TestResultHistoryItem.tsx +57 -0
- package/src/components/app/TestResult/TestResultHistory/index.tsx +26 -0
- package/src/components/app/TestResult/TestResultHistory/styles.scss +63 -0
- package/src/components/app/TestResult/TestResultInfo/index.tsx +79 -0
- package/src/components/app/TestResult/TestResultInfo/styles.scss +33 -0
- package/src/components/app/TestResult/TestResultLinks/index.tsx +60 -0
- package/src/components/app/TestResult/TestResultLinks/styles.scss +30 -0
- package/src/components/app/TestResult/TestResultMetadata/index.tsx +27 -0
- package/src/components/app/TestResult/TestResultMetadata/styles.scss +8 -0
- package/src/components/app/TestResult/TestResultNavigation/index.tsx +89 -0
- package/src/components/app/TestResult/TestResultNavigation/styles.scss +48 -0
- package/src/components/app/TestResult/TestResultOverview.tsx +40 -0
- package/src/components/app/TestResult/TestResultParameters/index.tsx +30 -0
- package/src/components/app/TestResult/TestResultParameters/styles.scss +8 -0
- package/src/components/app/TestResult/TestResultPrevStatuses/index.tsx +52 -0
- package/src/components/app/TestResult/TestResultPrevStatuses/styles.scss +57 -0
- package/src/components/app/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +50 -0
- package/src/components/app/TestResult/TestResultRetriesView/index.tsx +24 -0
- package/src/components/app/TestResult/TestResultRetriesView/styles.scss +69 -0
- package/src/components/app/TestResult/TestResultSetup/index.tsx +50 -0
- package/src/components/app/TestResult/TestResultSeverity/index.tsx +34 -0
- package/src/components/app/TestResult/TestResultSeverity/styles.scss +29 -0
- package/src/components/app/TestResult/TestResultStatus/index.tsx +26 -0
- package/src/components/app/TestResult/TestResultStatus/styles.scss +36 -0
- package/src/components/app/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +12 -0
- package/src/components/app/TestResult/TestResultSteps/attachment.tsx +70 -0
- package/src/components/app/TestResult/TestResultSteps/attachmentCode.tsx +15 -0
- package/src/components/app/TestResult/TestResultSteps/attachmentImage.tsx +29 -0
- package/src/components/app/TestResult/TestResultSteps/attachmentVideo.tsx +12 -0
- package/src/components/app/TestResult/TestResultSteps/index.tsx +49 -0
- package/src/components/app/TestResult/TestResultSteps/styles.scss +225 -0
- package/src/components/app/TestResult/TestResultSteps/testResultAttachment.tsx +79 -0
- package/src/components/app/TestResult/TestResultSteps/testResultAttachmentInfo.tsx +87 -0
- package/src/components/app/TestResult/TestResultSteps/testResultStep.tsx +71 -0
- package/src/components/app/TestResult/TestResultSteps/testResultStepInfo.tsx +33 -0
- package/src/components/app/TestResult/TestResultSteps/wrongAttachment.tsx +8 -0
- package/src/components/app/TestResult/TestResultTabs/index.tsx +59 -0
- package/src/components/app/TestResult/TestResultTabs/styles.scss +76 -0
- package/src/components/app/TestResult/TestResultTeardown/index.tsx +49 -0
- package/src/components/app/TestResult/index.tsx +56 -0
- package/src/components/app/ThemeButton/ThemeButton.tsx +22 -0
- package/src/components/app/Tree/Tree.tsx +122 -0
- package/src/components/app/Tree/TreeHeader.tsx +81 -0
- package/src/components/app/Tree/TreeItem.tsx +31 -0
- package/src/components/app/Tree/TreeItemIcon.tsx +35 -0
- package/src/components/app/Tree/index.tsx +40 -0
- package/src/components/app/Tree/styles.scss +170 -0
- package/src/components/commons/Button/index.tsx +176 -0
- package/src/components/commons/Button/styles.scss +558 -0
- package/src/components/commons/Counter/index.tsx +29 -0
- package/src/components/commons/Counter/styles.scss +21 -0
- package/src/components/commons/Label/index.tsx +11 -0
- package/src/components/commons/Label/styles.scss +7 -0
- package/src/components/commons/Link/index.tsx +20 -0
- package/src/components/commons/Link/styles.scss +46 -0
- package/src/components/commons/Loadable/index.tsx +32 -0
- package/src/components/commons/Menu/index.tsx +173 -0
- package/src/components/commons/Menu/styles.scss +94 -0
- package/src/components/commons/PageLoader/index.tsx +10 -0
- package/src/components/commons/PageLoader/styles.scss +29 -0
- package/src/components/commons/SearchBox/index.tsx +61 -0
- package/src/components/commons/SearchBox/styles.scss +58 -0
- package/src/components/commons/Spinner/index.tsx +8 -0
- package/src/components/commons/SuccessRatePieChart/index.tsx +52 -0
- package/src/components/commons/SuccessRatePieChart/styles.scss +12 -0
- package/src/components/commons/SvgIcon/index.tsx +46 -0
- package/src/components/commons/SvgIcon/styles.scss +26 -0
- package/src/components/commons/Toggle/index.tsx +29 -0
- package/src/components/commons/Toggle/styles.scss +48 -0
- package/src/components/commons/Tooltip/index.tsx +123 -0
- package/src/components/commons/Tooltip/styles.scss +38 -0
- package/src/components/commons/Typography/index.tsx +99 -0
- package/src/hooks/useDebouncedCallback.ts +31 -0
- package/src/i18n/constants.ts +105 -0
- package/src/i18n/locales/am.json +115 -0
- package/src/i18n/locales/az.json +115 -0
- package/src/i18n/locales/de.json +115 -0
- package/src/i18n/locales/en.json +115 -0
- package/src/i18n/locales/es.json +114 -0
- package/src/i18n/locales/fr.json +115 -0
- package/src/i18n/locales/he.json +115 -0
- package/src/i18n/locales/it.json +115 -0
- package/src/i18n/locales/ja.json +115 -0
- package/src/i18n/locales/ka.json +115 -0
- package/src/i18n/locales/kr.json +115 -0
- package/src/i18n/locales/nl.json +115 -0
- package/src/i18n/locales/pl.json +113 -0
- package/src/i18n/locales/pt.json +115 -0
- package/src/i18n/locales/ru.json +113 -0
- package/src/i18n/locales/sv.json +115 -0
- package/src/i18n/locales/tr.json +115 -0
- package/src/i18n/locales/zh.json +115 -0
- package/src/index.html +35 -0
- package/src/index.tsx +48 -0
- package/src/stores/chart.ts +32 -0
- package/src/stores/envInfo.ts +34 -0
- package/src/stores/index.ts +4 -0
- package/src/stores/locale.ts +79 -0
- package/src/stores/stats.ts +36 -0
- package/src/stores/testResults.ts +40 -0
- package/src/stores/theme.ts +33 -0
- package/src/stores/tree.ts +33 -0
- package/src/stores/types.ts +5 -0
- package/src/types/globals.d.ts +8 -0
- package/src/types/window.d.ts +8 -0
- package/src/utils/attachments.ts +156 -0
- package/src/utils/capitalize.ts +4 -0
- package/src/utils/copyToClipboard.ts +3 -0
- package/src/utils/isMac.ts +7 -0
- package/src/utils/statuses.ts +55 -0
- package/src/utils/time.ts +17 -0
- package/src/utils/treeFilters.ts +150 -0
- package/tsconfig.json +25 -0
- package/types.d.ts +53 -0
- package/webpack.config.js +108 -0
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import type { DefaultTreeData } from "@allurereport/core-api";
|
|
2
|
+
import type { ReportContentContextValue } from "@/components/app/ReportBody/context";
|
|
3
|
+
|
|
4
|
+
const statusOrder = {
|
|
5
|
+
failed: 1,
|
|
6
|
+
broken: 2,
|
|
7
|
+
passed: 3,
|
|
8
|
+
skipped: 4,
|
|
9
|
+
unknown: 5,
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
const filterByQuery = ({
|
|
13
|
+
leaves,
|
|
14
|
+
leavesById,
|
|
15
|
+
query,
|
|
16
|
+
}: {
|
|
17
|
+
leaves: string[];
|
|
18
|
+
leavesById: DefaultTreeData["leavesById"];
|
|
19
|
+
query: string;
|
|
20
|
+
}) =>
|
|
21
|
+
leaves.filter((leafId) => {
|
|
22
|
+
const lowerCaseQuery = query.toLocaleLowerCase();
|
|
23
|
+
const foundById = leavesById[leafId].nodeId.toLowerCase().includes(lowerCaseQuery);
|
|
24
|
+
const foundByName = leavesById[leafId].name.toLowerCase().includes(lowerCaseQuery);
|
|
25
|
+
|
|
26
|
+
return foundById || foundByName;
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
const sortedLeaves = ({
|
|
30
|
+
leavesFiltered,
|
|
31
|
+
leavesById,
|
|
32
|
+
filterOptions,
|
|
33
|
+
}: {
|
|
34
|
+
leavesFiltered: string[];
|
|
35
|
+
leavesById: DefaultTreeData["leavesById"];
|
|
36
|
+
filterOptions: ReportContentContextValue;
|
|
37
|
+
}) => {
|
|
38
|
+
leavesFiltered.sort((a, b) => {
|
|
39
|
+
const leafA = leavesById[a];
|
|
40
|
+
const leafB = leavesById[b];
|
|
41
|
+
const filterDirection = filterOptions.direction === "asc";
|
|
42
|
+
|
|
43
|
+
switch (filterOptions.sortBy) {
|
|
44
|
+
case "duration":
|
|
45
|
+
return filterDirection
|
|
46
|
+
? (leafA.duration || 0) - (leafB.duration || 0)
|
|
47
|
+
: (leafB.duration || 0) - (leafA.duration || 0);
|
|
48
|
+
case "alphabet":
|
|
49
|
+
return filterDirection ? leafA.name.localeCompare(leafB.name) : leafB.name.localeCompare(leafA.name);
|
|
50
|
+
case "status": {
|
|
51
|
+
const statusA = statusOrder[leafA.status] || statusOrder.unknown;
|
|
52
|
+
const statusB = statusOrder[leafB.status] || statusOrder.unknown;
|
|
53
|
+
return filterDirection ? statusA - statusB : statusB - statusA;
|
|
54
|
+
}
|
|
55
|
+
default:
|
|
56
|
+
return 0;
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
if (filterOptions.direction === "desc" && ["order"].includes(filterOptions.sortBy as string)) {
|
|
61
|
+
leavesFiltered.reverse();
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
return leavesFiltered;
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
const filterByTestType = ({
|
|
68
|
+
leaves,
|
|
69
|
+
leavesById,
|
|
70
|
+
filterTypes,
|
|
71
|
+
}: {
|
|
72
|
+
leaves: string[];
|
|
73
|
+
leavesById: DefaultTreeData["leavesById"];
|
|
74
|
+
filterTypes: ReportContentContextValue["filter"];
|
|
75
|
+
}) => {
|
|
76
|
+
return leaves.filter((leafId) => {
|
|
77
|
+
const leaf = leavesById[leafId];
|
|
78
|
+
return (!filterTypes.flaky || leaf.flaky) && (!filterTypes.retry || leaf.retry) && (!filterTypes.new || leaf.new);
|
|
79
|
+
});
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
export const filterLeaves = (
|
|
83
|
+
leaves: string[],
|
|
84
|
+
leavesById: DefaultTreeData["leavesById"],
|
|
85
|
+
statusFilter?: string,
|
|
86
|
+
filterOptions?: ReportContentContextValue,
|
|
87
|
+
): string[] => {
|
|
88
|
+
let leavesFiltered =
|
|
89
|
+
statusFilter === "total" || !statusFilter
|
|
90
|
+
? filterByQuery({
|
|
91
|
+
leaves,
|
|
92
|
+
leavesById,
|
|
93
|
+
query: filterOptions.query,
|
|
94
|
+
})
|
|
95
|
+
: leaves.filter((leafId) => leavesById[leafId].status === statusFilter);
|
|
96
|
+
|
|
97
|
+
leavesFiltered = filterByQuery({
|
|
98
|
+
leaves: leavesFiltered,
|
|
99
|
+
leavesById,
|
|
100
|
+
query: filterOptions.query,
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
leavesFiltered = filterByTestType({ leaves: leavesFiltered, leavesById, filterTypes: filterOptions.filter });
|
|
104
|
+
|
|
105
|
+
leavesFiltered = sortedLeaves({ leavesFiltered, leavesById, filterOptions });
|
|
106
|
+
|
|
107
|
+
return leavesFiltered;
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
export const filterGroups = (
|
|
111
|
+
groups: string[],
|
|
112
|
+
groupsById: DefaultTreeData["groupsById"],
|
|
113
|
+
leavesById: DefaultTreeData["leavesById"],
|
|
114
|
+
statusFilter?: string,
|
|
115
|
+
filterOptions?: ReportContentContextValue,
|
|
116
|
+
): string[] => {
|
|
117
|
+
const gro = groups.filter((groupId) => {
|
|
118
|
+
const group = groupsById?.[groupId];
|
|
119
|
+
const groupLeaves = filterLeaves((group?.leaves as string[]) || [], leavesById, statusFilter, filterOptions);
|
|
120
|
+
const filteredSubGroups = group?.groups?.filter((subGroupId: number) => {
|
|
121
|
+
const subGroup = groupsById?.[subGroupId] as { leaves: string[]; groups: string[] };
|
|
122
|
+
return (
|
|
123
|
+
filterLeaves(subGroup?.leaves || [], leavesById, statusFilter, filterOptions).length > 0 ||
|
|
124
|
+
filterGroups(subGroup?.groups || [], groupsById, leavesById, statusFilter, filterOptions).length > 0
|
|
125
|
+
);
|
|
126
|
+
});
|
|
127
|
+
|
|
128
|
+
return groupLeaves.length > 0 || (filteredSubGroups && filteredSubGroups.length > 0);
|
|
129
|
+
});
|
|
130
|
+
|
|
131
|
+
const sortedGroups = gro.sort((a, b) => {
|
|
132
|
+
const leafA = groupsById[a];
|
|
133
|
+
const leafB = groupsById[b];
|
|
134
|
+
const filterDirection = filterOptions.direction === "asc";
|
|
135
|
+
|
|
136
|
+
switch (filterOptions.sortBy) {
|
|
137
|
+
case "alphabet": {
|
|
138
|
+
return filterDirection ? leafA.name.localeCompare(leafB.name) : leafB.name.localeCompare(leafA.name);
|
|
139
|
+
}
|
|
140
|
+
default:
|
|
141
|
+
return 0;
|
|
142
|
+
}
|
|
143
|
+
});
|
|
144
|
+
|
|
145
|
+
if (filterOptions.direction === "desc" && ["order"].includes(filterOptions.sortBy as string)) {
|
|
146
|
+
sortedGroups.reverse();
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
return sortedGroups;
|
|
150
|
+
};
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"baseUrl": "./",
|
|
4
|
+
"paths": {
|
|
5
|
+
"@/*": ["src/*"],
|
|
6
|
+
},
|
|
7
|
+
"jsx": "preserve",
|
|
8
|
+
"jsxFactory": "h",
|
|
9
|
+
"jsxFragmentFactory": "Fragment",
|
|
10
|
+
"jsxImportSource": "preact",
|
|
11
|
+
"target": "ESNext",
|
|
12
|
+
"module": "ESNext",
|
|
13
|
+
"moduleResolution": "node",
|
|
14
|
+
"allowSyntheticDefaultImports": true,
|
|
15
|
+
"useUnknownInCatchVariables": false,
|
|
16
|
+
"noEmit": true,
|
|
17
|
+
"resolveJsonModule": true,
|
|
18
|
+
"esModuleInterop": true,
|
|
19
|
+
"lib": ["ES2019", "dom"],
|
|
20
|
+
// node types should not be used in web-commons
|
|
21
|
+
"types": []
|
|
22
|
+
},
|
|
23
|
+
"include": ["src"],
|
|
24
|
+
"exclude": ["node_modules"]
|
|
25
|
+
}
|
package/types.d.ts
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
AttachmentLink, AttachmentTestStepResult,
|
|
3
|
+
DefaultTreeGroup,
|
|
4
|
+
DefaultTreeLeaf,
|
|
5
|
+
HistoryTestResult,
|
|
6
|
+
TestFixtureResult,
|
|
7
|
+
TestResult,
|
|
8
|
+
TestStepResult,
|
|
9
|
+
TreeData,
|
|
10
|
+
} from "@allurereport/core-api";
|
|
11
|
+
|
|
12
|
+
export type AllureAwesomeReportOptions = {
|
|
13
|
+
reportName?: string;
|
|
14
|
+
logo?: string;
|
|
15
|
+
theme?: "light" | "dark";
|
|
16
|
+
reportLanguage?: "en" | "ru";
|
|
17
|
+
createdAt: number;
|
|
18
|
+
reportUuid: string;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export type AllureAwesomeFixtureResult = Omit<
|
|
22
|
+
TestFixtureResult,
|
|
23
|
+
"testResultIds" | "start" | "stop" | "sourceMetadata" | "steps"
|
|
24
|
+
> & {
|
|
25
|
+
steps: AllureAwesomeTestStepResult[];
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export type AllureAwesomeTestStepResult = TestStepResult;
|
|
29
|
+
|
|
30
|
+
type AllureAwesomeBreadcrumbItem = string[] | string[][];
|
|
31
|
+
|
|
32
|
+
export type AllureAwesomeTestResult = Omit<
|
|
33
|
+
TestResult,
|
|
34
|
+
| "runSelector"
|
|
35
|
+
| "sourceMetadata"
|
|
36
|
+
| "expectedResult"
|
|
37
|
+
| "expectedResultHtml"
|
|
38
|
+
| "precondition"
|
|
39
|
+
| "preconditionHtml"
|
|
40
|
+
| "start"
|
|
41
|
+
| "steps"
|
|
42
|
+
> & {
|
|
43
|
+
setup: AllureAwesomeFixtureResult[];
|
|
44
|
+
teardown: AllureAwesomeFixtureResult[];
|
|
45
|
+
steps: AllureAwesomeTestStepResult[];
|
|
46
|
+
history: HistoryTestResult[];
|
|
47
|
+
retries?: TestResult[];
|
|
48
|
+
groupedLabels: Record<string, string[]>;
|
|
49
|
+
attachments?: AttachmentTestStepResult[];
|
|
50
|
+
breadcrumbs: AllureAwesomeBreadcrumbItem[];
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
export type AllureAwesomeTree = TreeData<DefaultTreeLeaf, DefaultTreeGroup>;
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import HtmlWebpackPlugin from "html-webpack-plugin";
|
|
2
|
+
import MiniCssExtractPlugin from "mini-css-extract-plugin";
|
|
3
|
+
import { dirname, join } from "node:path";
|
|
4
|
+
import { env } from "node:process";
|
|
5
|
+
import { fileURLToPath } from "node:url";
|
|
6
|
+
import SpriteLoaderPlugin from "svg-sprite-loader/plugin.js";
|
|
7
|
+
import webpack from "webpack";
|
|
8
|
+
import { WebpackManifestPlugin } from "webpack-manifest-plugin";
|
|
9
|
+
|
|
10
|
+
const { SINGLE_FILE_MODE } = env;
|
|
11
|
+
const baseDir = dirname(fileURLToPath(import.meta.url));
|
|
12
|
+
|
|
13
|
+
export default (env, argv) => {
|
|
14
|
+
const devMode = argv?.mode === "development";
|
|
15
|
+
const config = {
|
|
16
|
+
entry: "./src/index.tsx",
|
|
17
|
+
output: {
|
|
18
|
+
path: join(baseDir, SINGLE_FILE_MODE ? "dist/single" : "dist/multi"),
|
|
19
|
+
filename: devMode ? "app.js" : "app-[hash:8].js",
|
|
20
|
+
assetModuleFilename: devMode ? `[name].[ext]` : `[name]-[hash:8].[ext]`,
|
|
21
|
+
},
|
|
22
|
+
devtool: devMode ? "inline-source-map" : false,
|
|
23
|
+
module: {
|
|
24
|
+
rules: [
|
|
25
|
+
{
|
|
26
|
+
test: /\.tsx?$/,
|
|
27
|
+
use: "babel-loader",
|
|
28
|
+
exclude: /node_modules/,
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
test: /\.css$/,
|
|
32
|
+
use: [SINGLE_FILE_MODE ? "style-loader" : MiniCssExtractPlugin.loader, "css-loader"],
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
test: /\.scss$/,
|
|
36
|
+
use: [
|
|
37
|
+
SINGLE_FILE_MODE ? "style-loader" : MiniCssExtractPlugin.loader,
|
|
38
|
+
{
|
|
39
|
+
loader: "css-loader",
|
|
40
|
+
options: {
|
|
41
|
+
modules: {
|
|
42
|
+
localIdentName: devMode ? "[path][name]__[local]" : "[hash:base64:8]",
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
"sass-loader",
|
|
47
|
+
],
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
test: /\.svg$/,
|
|
51
|
+
loader: "svg-sprite-loader",
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
test: /\.(png|jpe?g|gif|woff2?|otf|ttf)$/i,
|
|
55
|
+
type: SINGLE_FILE_MODE ? "asset/inline" : "asset/resource",
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
devServer: {
|
|
60
|
+
hot: true,
|
|
61
|
+
static: "./out/dev",
|
|
62
|
+
historyApiFallback: true,
|
|
63
|
+
watchFiles: ["./src"],
|
|
64
|
+
devMiddleware: {
|
|
65
|
+
index: true,
|
|
66
|
+
mimeTypes: { phtml: "text/html" },
|
|
67
|
+
serverSideRender: false,
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
plugins: [
|
|
71
|
+
new webpack.DefinePlugin({
|
|
72
|
+
DEVELOPMENT: devMode,
|
|
73
|
+
}),
|
|
74
|
+
new MiniCssExtractPlugin({
|
|
75
|
+
filename: devMode ? "styles.css" : "styles-[hash:8].css",
|
|
76
|
+
}),
|
|
77
|
+
new SpriteLoaderPlugin(),
|
|
78
|
+
new WebpackManifestPlugin({
|
|
79
|
+
publicPath: "",
|
|
80
|
+
}),
|
|
81
|
+
],
|
|
82
|
+
resolve: {
|
|
83
|
+
modules: ["node_modules"],
|
|
84
|
+
extensions: [".js", ".ts", ".tsx"],
|
|
85
|
+
alias: {
|
|
86
|
+
"@": join(baseDir, "src"),
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
if (SINGLE_FILE_MODE) {
|
|
92
|
+
config.plugins.push(
|
|
93
|
+
new webpack.optimize.LimitChunkCountPlugin({
|
|
94
|
+
maxChunks: 1,
|
|
95
|
+
}),
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
if (devMode) {
|
|
100
|
+
config.plugins.push(
|
|
101
|
+
new HtmlWebpackPlugin({
|
|
102
|
+
template: "src/index.html",
|
|
103
|
+
}),
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
return config;
|
|
108
|
+
};
|