@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,50 @@
|
|
|
1
|
+
import { formatDuration } from "@allurereport/core-api";
|
|
2
|
+
import { clsx } from "clsx";
|
|
3
|
+
import { useState } from "preact/hooks";
|
|
4
|
+
import arrowsChevronDown from "@/assets/svg/arrows-chevron-down.svg";
|
|
5
|
+
import LineGeneralLinkExternal from "@/assets/svg/line-general-link-external.svg";
|
|
6
|
+
import { ArrowButton } from "@/components/app/ArrowButton";
|
|
7
|
+
import { TestResultError } from "@/components/app/TestResult/TestResultError";
|
|
8
|
+
import * as styles from "@/components/app/TestResult/TestResultRetriesView/styles.scss";
|
|
9
|
+
import TreeItemIcon from "@/components/app/Tree/TreeItemIcon";
|
|
10
|
+
import { IconButton } from "@/components/commons/Button";
|
|
11
|
+
import { Text } from "@/components/commons/Typography";
|
|
12
|
+
import { navigateTo } from "@/index";
|
|
13
|
+
import { timestampToDate } from "@/utils/time";
|
|
14
|
+
|
|
15
|
+
export const TestResultRetriesItem = ({ testResultItem }) => {
|
|
16
|
+
const { id, status, message, trace, stop, duration } = testResultItem;
|
|
17
|
+
const [isOpened, setIsOpen] = useState(false);
|
|
18
|
+
const convertedStop = timestampToDate(stop);
|
|
19
|
+
const formattedDuration = formatDuration(duration);
|
|
20
|
+
const navigateUrl = `/testresult/${id}`;
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<div>
|
|
24
|
+
<div className={styles["test-result-retries-item-header"]} onClick={() => setIsOpen(!isOpened)}>
|
|
25
|
+
{Boolean(message) && <ArrowButton isOpened={isOpened} icon={arrowsChevronDown.id} />}
|
|
26
|
+
<div className={styles["test-result-retries-item-wrap"]}>
|
|
27
|
+
<TreeItemIcon status={status} className={styles["test-result-retries-item-status"]} />
|
|
28
|
+
<Text className={styles["test-result-retries-item-text"]}>{convertedStop}</Text>
|
|
29
|
+
<div className={styles["test-result-retries-item-info"]}>
|
|
30
|
+
<Text type="ui" size={"s"} className={styles["item-time"]}>
|
|
31
|
+
{formattedDuration}
|
|
32
|
+
</Text>
|
|
33
|
+
<IconButton
|
|
34
|
+
icon={LineGeneralLinkExternal.id}
|
|
35
|
+
style={"ghost"}
|
|
36
|
+
size={"s"}
|
|
37
|
+
className={styles["test-result-retries-item-link"]}
|
|
38
|
+
onClick={() => navigateTo(navigateUrl)}
|
|
39
|
+
/>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
{isOpened && message && (
|
|
44
|
+
<div className={styles["test-result-retries-item-content"]}>
|
|
45
|
+
<TestResultError message={message} trace={trace} />
|
|
46
|
+
</div>
|
|
47
|
+
)}
|
|
48
|
+
</div>
|
|
49
|
+
);
|
|
50
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { FunctionalComponent } from "preact";
|
|
2
|
+
import type { AllureAwesomeTestResult } from "types";
|
|
3
|
+
import * as styles from "@/components/app/TestResult/TestResultHistory/styles.scss";
|
|
4
|
+
import { TestResultRetriesItem } from "@/components/app/TestResult/TestResultRetriesView/TestResultRetriesItem";
|
|
5
|
+
import { useI18n } from "@/stores";
|
|
6
|
+
|
|
7
|
+
export type TestResultRetriesViewProps = {
|
|
8
|
+
testResult?: AllureAwesomeTestResult;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export const TestResultRetriesView: FunctionalComponent<TestResultRetriesViewProps> = ({ testResult }) => {
|
|
12
|
+
const { retries } = testResult ?? {};
|
|
13
|
+
const { t } = useI18n("empty");
|
|
14
|
+
|
|
15
|
+
return (
|
|
16
|
+
<div className={styles["test-result-history"]}>
|
|
17
|
+
{retries.length ? (
|
|
18
|
+
retries?.map((item, key) => <TestResultRetriesItem testResultItem={item} key={key} />)
|
|
19
|
+
) : (
|
|
20
|
+
<div className={styles["test-result-empty"]}>{t("no-retries-results")}</div>
|
|
21
|
+
)}
|
|
22
|
+
</div>
|
|
23
|
+
);
|
|
24
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
.test-result-retries {
|
|
2
|
+
padding: 12px 24px 32px;
|
|
3
|
+
min-height: 320px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.test-result-retries-item-header {
|
|
7
|
+
display: flex;
|
|
8
|
+
width: 100%;
|
|
9
|
+
gap: 4px;
|
|
10
|
+
align-items: center;
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
|
|
13
|
+
a {
|
|
14
|
+
color: inherit;
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
text-decoration: none;
|
|
17
|
+
display: contents;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.test-result-retries-item-wrap {
|
|
22
|
+
transition: background-color 300ms;
|
|
23
|
+
display: flex;
|
|
24
|
+
gap: 4px;
|
|
25
|
+
justify-content: space-between;
|
|
26
|
+
border-radius: 6px;
|
|
27
|
+
padding: 4px;
|
|
28
|
+
width: 100%;
|
|
29
|
+
align-items: flex-start;
|
|
30
|
+
|
|
31
|
+
&:hover {
|
|
32
|
+
background: var(--bg-control-flat-medium);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.test-result-retries-item-text {
|
|
37
|
+
padding-top: 2px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.test-result-retries-item-info {
|
|
41
|
+
display: flex;
|
|
42
|
+
gap: 4px;
|
|
43
|
+
align-items: center;
|
|
44
|
+
margin-left: auto;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.item-time {
|
|
48
|
+
margin-left: auto;
|
|
49
|
+
line-height: 20px;
|
|
50
|
+
color: var(--on-text-secondary);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.test-result-retries-item-content {
|
|
54
|
+
padding-left: 24px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.test-result-retries-item-link {
|
|
58
|
+
color: var(--on-icon-secondary);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.test-result-retries-item-status {
|
|
62
|
+
padding-top: 4px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.test-result-empty {
|
|
66
|
+
display: flex;
|
|
67
|
+
width: 100%;
|
|
68
|
+
justify-content: center;
|
|
69
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import i18n from "i18next";
|
|
2
|
+
import { FunctionalComponent } from "preact";
|
|
3
|
+
import { useState } from "preact/hooks";
|
|
4
|
+
import { AllureAwesomeTestResult } from "types";
|
|
5
|
+
import LineTimeClockStopwatch from "@/assets/svg/line-time-clock-stopwatch.svg";
|
|
6
|
+
import { TestResultDropdown } from "@/components/app/TestResult/TestResultDropdown";
|
|
7
|
+
import * as styles from "@/components/app/TestResult/TestResultSteps/styles.scss";
|
|
8
|
+
import { TestResultAttachment } from "@/components/app/TestResult/TestResultSteps/testResultAttachment";
|
|
9
|
+
import { TestResultStep } from "@/components/app/TestResult/TestResultSteps/testResultStep";
|
|
10
|
+
import { useI18n } from "@/stores/locale";
|
|
11
|
+
|
|
12
|
+
const typeMap = {
|
|
13
|
+
before: TestResultStep,
|
|
14
|
+
after: TestResultStep,
|
|
15
|
+
step: TestResultStep,
|
|
16
|
+
attachment: TestResultAttachment,
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export type TestResultSetupProps = {
|
|
20
|
+
setup: AllureAwesomeTestResult["setup"];
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export const TestResultSetup: FunctionalComponent<TestResultSetupProps> = ({ setup }) => {
|
|
24
|
+
const [isOpened, setIsOpen] = useState(false);
|
|
25
|
+
const { t } = useI18n("execution");
|
|
26
|
+
|
|
27
|
+
return (
|
|
28
|
+
<div className={styles["test-result-steps"]}>
|
|
29
|
+
<TestResultDropdown
|
|
30
|
+
icon={LineTimeClockStopwatch.id}
|
|
31
|
+
isOpened={isOpened}
|
|
32
|
+
setIsOpen={setIsOpen}
|
|
33
|
+
counter={setup?.length}
|
|
34
|
+
title={t("setup")}
|
|
35
|
+
/>
|
|
36
|
+
{isOpened && (
|
|
37
|
+
<div className={styles["test-result-steps-root"]}>
|
|
38
|
+
{setup?.map((item, key) => {
|
|
39
|
+
const StepComponent = typeMap[item.type];
|
|
40
|
+
return StepComponent ? (
|
|
41
|
+
// FIXME: use proper type in the StepComponent component
|
|
42
|
+
// @ts-ignore
|
|
43
|
+
<StepComponent item={item} stepIndex={key + 1} key={key} className={styles["test-result-step-root"]} />
|
|
44
|
+
) : null;
|
|
45
|
+
})}
|
|
46
|
+
</div>
|
|
47
|
+
)}
|
|
48
|
+
</div>
|
|
49
|
+
);
|
|
50
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import clsx from "clsx";
|
|
2
|
+
import i18n from "i18next";
|
|
3
|
+
import ChevronDownDouble from "@/assets/svg/line-arrows-chevron-down-double.svg";
|
|
4
|
+
import ChevronDown from "@/assets/svg/line-arrows-chevron-down.svg";
|
|
5
|
+
import ChevronUpDouble from "@/assets/svg/line-arrows-chevron-up-double.svg";
|
|
6
|
+
import ChevronUp from "@/assets/svg/line-arrows-chevron-up.svg";
|
|
7
|
+
import EqualIcon from "@/assets/svg/line-general-equal.svg";
|
|
8
|
+
import { SvgIcon } from "@/components/commons/SvgIcon";
|
|
9
|
+
import { Text } from "@/components/commons/Typography";
|
|
10
|
+
import { useI18n } from "@/stores/locale";
|
|
11
|
+
import { capitalize } from "@/utils/capitalize";
|
|
12
|
+
import * as styles from "./styles.scss";
|
|
13
|
+
|
|
14
|
+
const icons = {
|
|
15
|
+
blocker: ChevronUpDouble.id,
|
|
16
|
+
critical: ChevronUp.id,
|
|
17
|
+
normal: EqualIcon.id,
|
|
18
|
+
minor: ChevronDown.id,
|
|
19
|
+
trivial: ChevronDownDouble.id,
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export const TestResultSeverity = ({ severity = "normal" }: { severity?: string }) => {
|
|
23
|
+
const { t } = useI18n("severity");
|
|
24
|
+
const statusClass = clsx(styles[`severity-${severity}`]);
|
|
25
|
+
|
|
26
|
+
return (
|
|
27
|
+
<div className={styles["test-result-severity"]}>
|
|
28
|
+
<SvgIcon className={statusClass} id={icons[severity]}></SvgIcon>
|
|
29
|
+
<Text size={"s"} bold className={styles["test-result-severity-text"]}>
|
|
30
|
+
{capitalize(t(severity))}
|
|
31
|
+
</Text>
|
|
32
|
+
</div>
|
|
33
|
+
);
|
|
34
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
.test-result-severity {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
gap: 6px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.test-result-severity-text {
|
|
8
|
+
color: var(--on-text-secondary);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.severity-blocker {
|
|
12
|
+
color: var(--on-support-capella);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.severity-critical {
|
|
16
|
+
color: var(--on-support-atlas);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.severity-normal {
|
|
20
|
+
color: var(--on-icon-secondary);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.severity-minor {
|
|
24
|
+
color: var(--on-support-aldebaran);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.severity-trivial {
|
|
28
|
+
color: var(--on-support-castor);
|
|
29
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { TestStatus } from "@allurereport/core-api";
|
|
2
|
+
import clsx from "clsx";
|
|
3
|
+
import TreeItemIcon from "@/components/app/Tree/TreeItemIcon";
|
|
4
|
+
import { Text } from "@/components/commons/Typography";
|
|
5
|
+
import { useI18n } from "@/stores";
|
|
6
|
+
import { capitalize } from "@/utils/capitalize";
|
|
7
|
+
import * as styles from "./styles.scss";
|
|
8
|
+
|
|
9
|
+
export const TestResultStatus = ({ status }: { status: TestStatus }) => {
|
|
10
|
+
const { t } = useI18n("statuses");
|
|
11
|
+
return (
|
|
12
|
+
<div
|
|
13
|
+
data-testid={`test-result-status-${status}`}
|
|
14
|
+
className={clsx(styles["test-result-status"], styles[`status-${status}`])}
|
|
15
|
+
>
|
|
16
|
+
<TreeItemIcon
|
|
17
|
+
status={status}
|
|
18
|
+
className={styles["test-result-status-icon"]}
|
|
19
|
+
classNameIcon={styles["test-result-status-icon"]}
|
|
20
|
+
/>
|
|
21
|
+
<Text type={"ui"} size={"s"} bold className={styles["test-result-status-text"]}>
|
|
22
|
+
{capitalize(t(status) ?? status)}
|
|
23
|
+
</Text>
|
|
24
|
+
</div>
|
|
25
|
+
);
|
|
26
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
.test-result-status {
|
|
2
|
+
padding: 2px;
|
|
3
|
+
display: flex;
|
|
4
|
+
border-radius: 100px;
|
|
5
|
+
color: var(--constant-on-text-primary);
|
|
6
|
+
height: max-content;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.test-result-status-text {
|
|
10
|
+
padding: 0 4px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.test-result-status-icon {
|
|
14
|
+
color: var(--constant-on-text-primary);
|
|
15
|
+
padding: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.status-passed {
|
|
19
|
+
background-color: var(--bg-support-castor);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.status-failed {
|
|
23
|
+
background-color: var(--bg-support-capella);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.status-broken {
|
|
27
|
+
background-color: var(--bg-support-atlas);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.status-skipped {
|
|
31
|
+
background-color: var(--bg-support-rau);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.status-unknown {
|
|
35
|
+
background-color: var(--bg-support-skat);
|
|
36
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { FunctionalComponent } from "preact";
|
|
2
|
+
import * as styles from "./styles.scss";
|
|
3
|
+
|
|
4
|
+
// TODO: use proper type here
|
|
5
|
+
export type HtmlAttachmentPreviewProps = {
|
|
6
|
+
attachment: { text: string };
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export const HtmlAttachmentPreview: FunctionalComponent<HtmlAttachmentPreviewProps> = ({ attachment }) => {
|
|
10
|
+
// eslint-disable-next-line react/no-danger
|
|
11
|
+
return <div className={styles["html-attachment-preview"]} dangerouslySetInnerHTML={{ __html: attachment?.text }} />;
|
|
12
|
+
};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import type { AttachmentTestStepResult } from "@allurereport/core-api";
|
|
2
|
+
import type { FunctionalComponent } from "preact";
|
|
3
|
+
import { useEffect, useState } from "preact/hooks";
|
|
4
|
+
import { AttachmentCode } from "@/components/app/TestResult/TestResultSteps/attachmentCode";
|
|
5
|
+
import { AttachmentImage } from "@/components/app/TestResult/TestResultSteps/attachmentImage";
|
|
6
|
+
import { AttachmentVideo } from "@/components/app/TestResult/TestResultSteps/attachmentVideo";
|
|
7
|
+
import { EmptyComponent } from "@/components/app/TestResult/TestResultSteps/wrongAttachment";
|
|
8
|
+
import { Spinner } from "@/components/commons/Spinner";
|
|
9
|
+
import { type Attachments, attachmentType, fetchAttachment } from "@/utils/attachments";
|
|
10
|
+
import {
|
|
11
|
+
HtmlAttachmentPreview
|
|
12
|
+
} from "@/components/app/TestResult/TestResultSteps/HtmlAttachmentPreview";
|
|
13
|
+
import { modalData } from "@/components/app/Modal";
|
|
14
|
+
import * as styles from "./styles.scss";
|
|
15
|
+
|
|
16
|
+
const componentsByAttachmentType = {
|
|
17
|
+
image: AttachmentImage,
|
|
18
|
+
svg: AttachmentImage,
|
|
19
|
+
json: AttachmentCode,
|
|
20
|
+
code: AttachmentCode,
|
|
21
|
+
uri: AttachmentCode,
|
|
22
|
+
css: AttachmentCode,
|
|
23
|
+
table: AttachmentCode,
|
|
24
|
+
html: AttachmentCode,
|
|
25
|
+
text: AttachmentCode,
|
|
26
|
+
video: AttachmentVideo,
|
|
27
|
+
};
|
|
28
|
+
const previewComponentsByAttachmentType = {
|
|
29
|
+
html: HtmlAttachmentPreview,
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export interface AttachmentTestStepResultProps {
|
|
33
|
+
item: AttachmentTestStepResult;
|
|
34
|
+
previewable?: boolean;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export const Attachment: FunctionalComponent<AttachmentTestStepResultProps> = ({ item, previewable }) => {
|
|
38
|
+
const {
|
|
39
|
+
link: { contentType, id, ext },
|
|
40
|
+
} = item;
|
|
41
|
+
const [attachment, setAttachment] = useState<Attachments>(null);
|
|
42
|
+
const [loaded, setLoaded] = useState(false);
|
|
43
|
+
const attachmentComponent = attachmentType(contentType);
|
|
44
|
+
const CurrentComponent = componentsByAttachmentType[attachmentComponent.type];
|
|
45
|
+
const CurrentPreviewComponent = previewComponentsByAttachmentType[attachmentComponent.type];
|
|
46
|
+
|
|
47
|
+
useEffect(() => {
|
|
48
|
+
const fetchData = async () => {
|
|
49
|
+
const result: Attachments = await fetchAttachment(id, ext, contentType);
|
|
50
|
+
setLoaded(true);
|
|
51
|
+
setAttachment(result);
|
|
52
|
+
};
|
|
53
|
+
fetchData();
|
|
54
|
+
}, [item]);
|
|
55
|
+
|
|
56
|
+
if (!loaded) {
|
|
57
|
+
return (
|
|
58
|
+
<div className={styles["test-result-spinner"]}>
|
|
59
|
+
<Spinner />
|
|
60
|
+
</div>
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// temp solution before modal component refactoring
|
|
65
|
+
if (CurrentPreviewComponent && previewable && modalData.value.preview) {
|
|
66
|
+
return <CurrentPreviewComponent attachment={attachment} item={item} />
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return CurrentComponent ? <CurrentComponent attachment={attachment} item={item} /> : <EmptyComponent />
|
|
70
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { useEffect } from "preact/hooks";
|
|
2
|
+
import Prism from "prismjs";
|
|
3
|
+
import "@/assets/scss/code.css";
|
|
4
|
+
|
|
5
|
+
export const AttachmentCode = ({ attachment, item }) => {
|
|
6
|
+
useEffect(() => {
|
|
7
|
+
Prism.highlightAll();
|
|
8
|
+
}, [attachment]);
|
|
9
|
+
|
|
10
|
+
return (
|
|
11
|
+
<pre key={item?.link?.id} className={`language-${item?.link?.ext?.replace(".", "")} line-numbers`}>
|
|
12
|
+
<code>{attachment?.text}</code>
|
|
13
|
+
</pre>
|
|
14
|
+
);
|
|
15
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { useEffect, useState } from "preact/hooks";
|
|
2
|
+
import * as styles from "@/components/app/TestResult/TestResultSteps/styles.scss";
|
|
3
|
+
import { EmptyComponent } from "@/components/app/TestResult/TestResultSteps/wrongAttachment";
|
|
4
|
+
|
|
5
|
+
export const AttachmentImage = ({ attachment }) => {
|
|
6
|
+
const [isValidImage, setIsValidImage] = useState(true);
|
|
7
|
+
|
|
8
|
+
useEffect(() => {
|
|
9
|
+
if (attachment?.img) {
|
|
10
|
+
const img = new Image();
|
|
11
|
+
img.onload = () => setIsValidImage(true);
|
|
12
|
+
img.onerror = () => setIsValidImage(false);
|
|
13
|
+
img.src = attachment.img;
|
|
14
|
+
}
|
|
15
|
+
}, [attachment?.img]);
|
|
16
|
+
|
|
17
|
+
if (!attachment?.img || !isValidImage) {
|
|
18
|
+
return (
|
|
19
|
+
<div className={styles["test-result-attachment-error"]}>
|
|
20
|
+
<EmptyComponent />
|
|
21
|
+
</div>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
return (
|
|
25
|
+
<div className={styles["test-result-attachment-image"]}>
|
|
26
|
+
{attachment?.img && <img src={attachment.img} alt={attachment.originalFileName} />}
|
|
27
|
+
</div>
|
|
28
|
+
);
|
|
29
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Spinner } from "@/components/commons/Spinner";
|
|
2
|
+
|
|
3
|
+
export const AttachmentVideo = ({ attachment }) => {
|
|
4
|
+
if (!attachment) {
|
|
5
|
+
return <Spinner />;
|
|
6
|
+
}
|
|
7
|
+
return (
|
|
8
|
+
<video controls loop muted>
|
|
9
|
+
<source src={attachment?.src} type={attachment?.contentType} />
|
|
10
|
+
</video>
|
|
11
|
+
);
|
|
12
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type { FunctionalComponent } from "preact";
|
|
2
|
+
import { useState } from "preact/hooks";
|
|
3
|
+
import type { AllureAwesomeTestResult, AllureAwesomeTestStepResult } from "types";
|
|
4
|
+
import LineHelpersPlayCircle from "@/assets/svg/line-helpers-play-circle.svg";
|
|
5
|
+
import { TestResultDropdown } from "@/components/app/TestResult/TestResultDropdown";
|
|
6
|
+
import { TestResultAttachment } from "@/components/app/TestResult/TestResultSteps/testResultAttachment";
|
|
7
|
+
import { TestResultStep } from "@/components/app/TestResult/TestResultSteps/testResultStep";
|
|
8
|
+
import { useI18n } from "@/stores/locale";
|
|
9
|
+
import * as styles from "./styles.scss";
|
|
10
|
+
|
|
11
|
+
const typeMap = {
|
|
12
|
+
step: TestResultStep,
|
|
13
|
+
attachment: TestResultAttachment,
|
|
14
|
+
} as const;
|
|
15
|
+
|
|
16
|
+
export type TestResultStepsProps = {
|
|
17
|
+
steps: AllureAwesomeTestResult["steps"];
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
type StepComponentProps = FunctionalComponent<{
|
|
21
|
+
item?: AllureAwesomeTestStepResult;
|
|
22
|
+
stepIndex?: number;
|
|
23
|
+
}>;
|
|
24
|
+
|
|
25
|
+
export const TestResultSteps: FunctionalComponent<TestResultStepsProps> = ({ steps }) => {
|
|
26
|
+
const [isOpened, setIsOpen] = useState(true);
|
|
27
|
+
|
|
28
|
+
const { t } = useI18n("execution");
|
|
29
|
+
return (
|
|
30
|
+
<div className={styles["test-result-steps"]}>
|
|
31
|
+
<TestResultDropdown
|
|
32
|
+
icon={LineHelpersPlayCircle.id}
|
|
33
|
+
isOpened={isOpened}
|
|
34
|
+
setIsOpen={setIsOpen}
|
|
35
|
+
counter={steps?.length}
|
|
36
|
+
title={t("body")}
|
|
37
|
+
/>
|
|
38
|
+
{isOpened && (
|
|
39
|
+
<div className={styles["test-result-steps-root"]}>
|
|
40
|
+
{steps?.map((item: AllureAwesomeTestStepResult, index) => {
|
|
41
|
+
const { type } = item;
|
|
42
|
+
const StepComponent: StepComponentProps = typeMap[type];
|
|
43
|
+
return StepComponent ? <StepComponent item={item} stepIndex={index + 1} key={index} /> : null;
|
|
44
|
+
})}
|
|
45
|
+
</div>
|
|
46
|
+
)}
|
|
47
|
+
</div>
|
|
48
|
+
);
|
|
49
|
+
};
|