eli-video-interview 1.2.41-alpha.2 → 1.2.41-alpha.21

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.
Files changed (85) hide show
  1. package/esm/constants/ai-question.d.ts +3 -0
  2. package/esm/constants/ai-question.js +10 -0
  3. package/esm/constants/ai-report.d.ts +5 -0
  4. package/esm/constants/ai-report.js +5 -0
  5. package/esm/enum/ai-report.d.ts +12 -0
  6. package/esm/enum/ai-report.js +12 -0
  7. package/esm/modules/ai-ability/components/AbilityFormItem/AbilityFormItem.d.ts +14 -0
  8. package/esm/modules/ai-ability/components/AbilityFormItem/AbilityFormItem.js +145 -0
  9. package/esm/modules/ai-ability/components/AbilityFormItem/index.d.ts +2 -0
  10. package/esm/modules/ai-ability/components/AbilityFormItem/index.js +17 -6
  11. package/esm/modules/ai-ability/components/AddAbility/index.js +131 -101
  12. package/esm/modules/ai-ability/components/UpdateAbility/index.js +81 -106
  13. package/esm/modules/ai-question/components/BootVideo/CustomVideos.js +1 -1
  14. package/esm/modules/ai-question/components/BootVideo/UploadPreview.js +9 -1
  15. package/esm/modules/ai-question/components/BootVideo/index.js +16 -7
  16. package/esm/modules/ai-question/components/QuestionModel/Item.js +4 -4
  17. package/esm/modules/ai-question/components/QuestionUpdate/RandomQuestion.js +2 -1
  18. package/esm/modules/ai-question/components/QuestionUpdate/index.js +3 -3
  19. package/esm/modules/ai-report/Root.js +54 -10
  20. package/esm/modules/ai-report/components/AIEvaluate/index.js +1 -1
  21. package/esm/modules/ai-report/components/ScoreReport/Bar.d.ts +4 -1
  22. package/esm/modules/ai-report/components/ScoreReport/Bar.js +12 -10
  23. package/esm/modules/ai-report/components/ScoreReport/Failed.d.ts +1 -1
  24. package/esm/modules/ai-report/components/ScoreReport/Failed.js +18 -5
  25. package/esm/modules/ai-report/components/ScoreReport/RecommendIcon.d.ts +3 -0
  26. package/esm/modules/ai-report/components/ScoreReport/RecommendIcon.js +17 -0
  27. package/esm/modules/ai-report/components/ScoreReport/Score.js +38 -9
  28. package/esm/modules/ai-report/components/ScoreReport/Tips.d.ts +3 -0
  29. package/esm/modules/ai-report/components/ScoreReport/Tips.js +18 -0
  30. package/esm/modules/ai-report/components/ScoreReport/index.js +8 -10
  31. package/esm/modules/ai-report/components/ScoreReport/interface.d.ts +5 -0
  32. package/esm/modules/ai-report/components/ScoreReport/styled.js +2 -4
  33. package/esm/modules/ai-report/components/Suggestion/index.js +2 -2
  34. package/esm/modules/ai-report/components/VideoQuestion/QuestionItem.js +1 -1
  35. package/esm/modules/ai-report/components/VideoQuestion/index.js +2 -2
  36. package/esm/modules/ai-report/components/WorkPlaces/WorkPlace.d.ts +1 -0
  37. package/esm/modules/ai-report/components/WorkPlaces/WorkPlace.js +2 -1
  38. package/esm/modules/ai-report/components/WorkPlaces/index.js +4 -3
  39. package/esm/modules/ai-report/interface.d.ts +2 -0
  40. package/esm/services/ai-report.d.ts +6 -0
  41. package/esm/services/ai-report.js +1 -0
  42. package/esm/store/enterprise/enterprise-store.js +2 -2
  43. package/lib/constants/ai-question.d.ts +3 -0
  44. package/lib/constants/ai-question.js +12 -1
  45. package/lib/constants/ai-report.d.ts +5 -0
  46. package/lib/constants/ai-report.js +6 -1
  47. package/lib/enum/ai-report.d.ts +12 -0
  48. package/lib/enum/ai-report.js +13 -1
  49. package/lib/modules/ai-ability/components/AbilityFormItem/AbilityFormItem.d.ts +14 -0
  50. package/lib/modules/ai-ability/components/AbilityFormItem/AbilityFormItem.js +147 -0
  51. package/lib/modules/ai-ability/components/AbilityFormItem/index.d.ts +2 -0
  52. package/lib/modules/ai-ability/components/AbilityFormItem/index.js +15 -4
  53. package/lib/modules/ai-ability/components/AddAbility/index.js +153 -100
  54. package/lib/modules/ai-ability/components/UpdateAbility/index.js +101 -103
  55. package/lib/modules/ai-question/components/BootVideo/CustomVideos.js +1 -1
  56. package/lib/modules/ai-question/components/BootVideo/UploadPreview.js +9 -1
  57. package/lib/modules/ai-question/components/BootVideo/index.js +16 -7
  58. package/lib/modules/ai-question/components/QuestionModel/Item.js +3 -3
  59. package/lib/modules/ai-question/components/QuestionUpdate/RandomQuestion.js +4 -3
  60. package/lib/modules/ai-question/components/QuestionUpdate/index.js +2 -2
  61. package/lib/modules/ai-report/Root.js +51 -7
  62. package/lib/modules/ai-report/components/AIEvaluate/index.js +1 -1
  63. package/lib/modules/ai-report/components/ScoreReport/Bar.d.ts +4 -1
  64. package/lib/modules/ai-report/components/ScoreReport/Bar.js +11 -9
  65. package/lib/modules/ai-report/components/ScoreReport/Failed.d.ts +1 -1
  66. package/lib/modules/ai-report/components/ScoreReport/Failed.js +19 -6
  67. package/lib/modules/ai-report/components/ScoreReport/RecommendIcon.d.ts +3 -0
  68. package/lib/modules/ai-report/components/ScoreReport/RecommendIcon.js +22 -0
  69. package/lib/modules/ai-report/components/ScoreReport/Score.js +36 -7
  70. package/lib/modules/ai-report/components/ScoreReport/Tips.d.ts +3 -0
  71. package/lib/modules/ai-report/components/ScoreReport/Tips.js +20 -0
  72. package/lib/modules/ai-report/components/ScoreReport/index.js +6 -8
  73. package/lib/modules/ai-report/components/ScoreReport/interface.d.ts +5 -0
  74. package/lib/modules/ai-report/components/ScoreReport/styled.js +2 -4
  75. package/lib/modules/ai-report/components/Suggestion/index.js +1 -1
  76. package/lib/modules/ai-report/components/VideoQuestion/QuestionItem.js +1 -1
  77. package/lib/modules/ai-report/components/VideoQuestion/index.js +1 -1
  78. package/lib/modules/ai-report/components/WorkPlaces/WorkPlace.d.ts +1 -0
  79. package/lib/modules/ai-report/components/WorkPlaces/WorkPlace.js +2 -1
  80. package/lib/modules/ai-report/components/WorkPlaces/index.js +3 -2
  81. package/lib/modules/ai-report/interface.d.ts +2 -0
  82. package/lib/services/ai-report.d.ts +6 -0
  83. package/lib/services/ai-report.js +3 -1
  84. package/lib/store/enterprise/enterprise-store.js +2 -2
  85. package/package.json +5 -3
@@ -1,3 +1,6 @@
1
1
  import { FC } from 'react';
2
- declare const Bar: FC;
2
+ interface BarProps {
3
+ model?: 'pro' | 'standard';
4
+ }
5
+ declare const Bar: FC<BarProps>;
3
6
  export default Bar;
@@ -33,11 +33,12 @@ var ai_report_1 = require("../../../../constants/ai-report");
33
33
  var global_store_1 = require("../../../../store/ai-report/global-store");
34
34
  var fbm_ui_1 = require("fbm-ui");
35
35
  var react_1 = require("react");
36
- var Bar = function () {
37
- var _a = __read((0, react_1.useState)(1), 2), currentRank = _a[0], setCurrentRank = _a[1];
38
- var _b = __read((0, react_1.useState)(''), 2), text = _b[0], setText = _b[1];
39
- var _c = (0, global_store_1.useAiReportStore)(function (store) { return [store.reportResult, store.scoreRankIntervals]; }), reportResult = _c.reportResult, scoreRankIntervals = _c.scoreRankIntervals, reportRank = _c.reportRank;
40
- var _d = (reportResult || {}).score, score = _d === void 0 ? 0 : _d;
36
+ var Bar = function (_a) {
37
+ var _b = _a.model, model = _b === void 0 ? 'standard' : _b;
38
+ var _c = __read((0, react_1.useState)(1), 2), currentRank = _c[0], setCurrentRank = _c[1];
39
+ var _d = __read((0, react_1.useState)(''), 2), text = _d[0], setText = _d[1];
40
+ var _e = (0, global_store_1.useAiReportStore)(function (store) { return [store.reportResult, store.scoreRankIntervals]; }), reportResult = _e.reportResult, scoreRankIntervals = _e.scoreRankIntervals, reportRank = _e.reportRank;
41
+ var _f = (reportResult || {}).score, score = _f === void 0 ? 0 : _f;
41
42
  (0, react_1.useEffect)(function () {
42
43
  var floatInterval = scoreRankIntervals === null || scoreRankIntervals === void 0 ? void 0 : scoreRankIntervals.find(function (interval) { return score >= interval.score.startScore && score <= interval.score.endScore; });
43
44
  if (floatInterval) {
@@ -53,14 +54,15 @@ var Bar = function () {
53
54
  }, [score, reportRank, scoreRankIntervals]);
54
55
  if (!scoreRankIntervals || (scoreRankIntervals === null || scoreRankIntervals === void 0 ? void 0 : scoreRankIntervals.length) === 0)
55
56
  return null;
56
- return ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, { children: [(0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ variant: "body2", flexShrink: 0 }, { children: [text, "\u00A0"] })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ display: "flex", alignItems: "center", sx: { height: 12, mt: 0.5 } }, { children: scoreRankIntervals === null || scoreRankIntervals === void 0 ? void 0 : scoreRankIntervals.map(function (_a, index) {
57
- var rank = _a.rank, _b = _a.scoreRankIntervals, startRankProportion = _b.startRankProportion, endRankProportion = _b.endRankProportion;
57
+ return ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, { children: [(0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ color: "inherit", variant: "body2", flexShrink: 0 }, { children: [text, "\u00A0"] })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ display: "flex", alignItems: "center", sx: { height: 12, mt: 0.5 } }, { children: scoreRankIntervals === null || scoreRankIntervals === void 0 ? void 0 : scoreRankIntervals.map(function (_a, index) {
58
+ var _b;
59
+ var rank = _a.rank, _c = _a.scoreRankIntervals, startRankProportion = _c.startRankProportion, endRankProportion = _c.endRankProportion;
58
60
  return [
59
61
  (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, { sx: {
60
62
  width: "".concat((endRankProportion - startRankProportion) * 100, "%"),
61
63
  height: currentRank === rank ? 'calc(100% + 4px)' : '100%',
62
- background: ai_report_1.scoreRankIntervalColors[index],
63
- border: '1px solid rgb(255, 255, 255)',
64
+ background: (_b = ai_report_1.scoreRankIntervalModeColors === null || ai_report_1.scoreRankIntervalModeColors === void 0 ? void 0 : ai_report_1.scoreRankIntervalModeColors[model]) === null || _b === void 0 ? void 0 : _b[index],
65
+ border: '2px solid rgb(255, 255, 255)',
64
66
  } }, rank),
65
67
  ];
66
68
  }) }))] }));
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
2
1
  import { FailedProps } from './interface';
2
+ import { FC } from 'react';
3
3
  declare const Failed: FC<FailedProps>;
4
4
  export default Failed;
@@ -12,16 +12,29 @@ var __assign = (this && this.__assign) || function () {
12
12
  };
13
13
  Object.defineProperty(exports, "__esModule", { value: true });
14
14
  var jsx_runtime_1 = require("react/jsx-runtime");
15
- var fbm_ui_1 = require("fbm-ui");
16
15
  var ai_report_1 = require("../../../../enum/ai-report");
17
- var FAILED = ai_report_1.INTERVIEW_STATUS.FAILED;
16
+ var ai_report_2 = require("../../../../enum/ai-report");
17
+ var fbm_icons_1 = require("fbm-icons");
18
+ var fbm_ui_1 = require("fbm-ui");
19
+ var mui_1 = require("fbm-ui/lib/mui");
20
+ var FAILED = ai_report_2.INTERVIEW_STATUS.FAILED;
18
21
  var Failed = function (_a) {
19
- var loading = _a.loading, status = _a.status, onRefresh = _a.onRefresh;
20
- return ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ loading: loading, display: "flex", alignItems: "center", padding: "32px 24px" }, { children: [status === FAILED && ((0, jsx_runtime_1.jsx)(fbm_ui_1.CancelIcon, { style: {
21
- background: 'white',
22
+ var loading = _a.loading, status = _a.status, onRefresh = _a.onRefresh, _b = _a.model, model = _b === void 0 ? 'standard' : _b, onSwitchReportModel = _a.onSwitchReportModel;
23
+ return ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ loading: loading, display: "flex", alignItems: "center", padding: "32px 24px", sx: {
24
+ px: 3,
25
+ height: 280,
26
+ background: "url('".concat(ai_report_1.BackgroundImage[model], "') no-repeat center center / contain"),
27
+ } }, { children: [status === FAILED && ((0, jsx_runtime_1.jsx)(fbm_ui_1.CancelIcon, { style: {
22
28
  color: '#ff6c6c',
23
29
  width: '24px',
24
30
  height: '24px',
25
- } })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: status === FAILED ? '报告计算失败,请手动' : '报告正在计算中,请稍后查看或手动' })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Button, __assign({ variant: "text", endIcon: (0, jsx_runtime_1.jsx)(fbm_ui_1.RefreshIcon, {}), size: "small", style: { color: '#576B95', padding: '0px 4px' }, onClick: onRefresh }, { children: "\u5237\u65B0\u62A5\u544A" }))] })));
31
+ } })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: status === FAILED ? '报告计算失败,请手动' : '报告正在计算中,请稍后查看或手动' })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Button, __assign({ variant: "text", endIcon: (0, jsx_runtime_1.jsx)(fbm_ui_1.RefreshIcon, {}), size: "small", style: { color: '#576B95', padding: '0px 4px' }, onClick: onRefresh }, { children: "\u5237\u65B0\u62A5\u544A" })), model === 'pro' && ((0, jsx_runtime_1.jsx)(mui_1.Stack, __assign({ direction: "row", py: 2, justifyContent: "flex-end", spacing: 1, alignContent: "center", color: ai_report_1.Colors[model] }, { children: (0, jsx_runtime_1.jsx)(fbm_ui_1.Button, __assign({ variant: "outlined", size: "small", loading: loading, icon: (0, jsx_runtime_1.jsx)(fbm_icons_1.SwitchIcon, {}), sx: {
32
+ ml: 1,
33
+ color: 'inherit',
34
+ borderColor: 'inherit',
35
+ '&:hover': {
36
+ borderColor: 'inherit',
37
+ },
38
+ }, onClick: onSwitchReportModel }, { children: ai_report_1.SwitchTitle[model] })) })))] })));
26
39
  };
27
40
  exports.default = Failed;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const RecommendIcon: (props: any) => JSX.Element;
3
+ export default RecommendIcon;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __importDefault = (this && this.__importDefault) || function (mod) {
14
+ return (mod && mod.__esModule) ? mod : { "default": mod };
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ var jsx_runtime_1 = require("react/jsx-runtime");
18
+ var SvgIcon_1 = __importDefault(require("@mui/material/SvgIcon"));
19
+ var RecommendIcon = function (props) {
20
+ return ((0, jsx_runtime_1.jsx)(SvgIcon_1.default, __assign({}, props, { viewBox: "0 0 120 120" }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M84.407 24.379a2.648 2.648 0 0 1 1.186 2.298c-.131 4.575 3.655 8.601 8.247 8.731a2.656 2.656 0 0 1 2.415 3.58 8.473 8.473 0 0 0 .119 6.286 8.543 8.543 0 0 0 4.889 4.634 2.656 2.656 0 0 1 .898 4.42 8.43 8.43 0 0 0-.343 12.008 2.656 2.656 0 0 1-.82 4.238 8.472 8.472 0 0 0-4.362 4.53 8.42 8.42 0 0 0 .18 6.733 2.656 2.656 0 0 1-2.491 3.764 8.427 8.427 0 0 0-8.73 8.246 2.65 2.65 0 0 1-3.58 2.415 8.473 8.473 0 0 0-6.287.118 8.405 8.405 0 0 0-4.475 4.49 2.642 2.642 0 0 1-.73 1.389c-1.045 1.044-2.746 1.16-3.775-.02l-.085-.084c-1.79-1.79-3.916-2.676-6.164-2.678a8.475 8.475 0 0 0-5.831 2.345 2.659 2.659 0 0 1-4.24-.82 8.487 8.487 0 0 0-4.53-4.362 8.42 8.42 0 0 0-6.733.178 2.656 2.656 0 0 1-3.763-2.49c.133-4.577-3.66-8.602-8.248-8.732a2.651 2.651 0 0 1-2.415-3.58 8.473 8.473 0 0 0-.119-6.286 8.546 8.546 0 0 0-4.889-4.634 2.656 2.656 0 0 1-.898-4.42 8.432 8.432 0 0 0 .344-12.007 2.656 2.656 0 0 1 .82-4.24 8.424 8.424 0 0 0 4.182-11.262 2.656 2.656 0 0 1 2.49-3.764 8.427 8.427 0 0 0 8.731-8.246 2.65 2.65 0 0 1 3.58-2.415 8.436 8.436 0 0 0 10.919-5.007 2.663 2.663 0 0 1 1.96-1.679 2.702 2.702 0 0 1 2.461.782l.011.011c1.79 1.79 3.914 2.675 6.166 2.677a8.472 8.472 0 0 0 5.832-2.346 2.661 2.661 0 0 1 4.239.825 8.426 8.426 0 0 0 11.26 4.181 2.648 2.648 0 0 1 2.58.193Zm-3.778 5.706c-2.532.45-5.14.172-7.522-.798a13.723 13.723 0 0 1-5.704-4.315 13.705 13.705 0 0 1-14.178-.216 13.626 13.626 0 0 1-5.884 4.757 13.68 13.68 0 0 1-7.086.978 13.68 13.68 0 0 1-3.564 6.205 13.624 13.624 0 0 1-6.613 3.671c.45 2.532.174 5.139-.796 7.52a13.672 13.672 0 0 1-4.319 5.71 13.706 13.706 0 0 1 1.87 6.903 13.627 13.627 0 0 1-2.085 7.278 13.683 13.683 0 0 1 5.742 12.965 13.667 13.667 0 0 1 6.203 3.563 13.627 13.627 0 0 1 3.674 6.615c2.532-.45 5.14-.173 7.522.798 2.25.911 4.218 2.4 5.706 4.317a13.705 13.705 0 0 1 14.176.214 13.618 13.618 0 0 1 5.884-4.757 13.68 13.68 0 0 1 7.088-.98 13.664 13.664 0 0 1 3.562-6.203 13.624 13.624 0 0 1 6.61-3.675c-.45-2.532-.174-5.14.797-7.522a13.67 13.67 0 0 1 4.32-5.702 13.705 13.705 0 0 1 .215-14.185 13.683 13.683 0 0 1-5.74-12.963c-4.839-1.274-8.771-5.36-9.878-10.178Zm-37.034 47.32a2.656 2.656 0 1 1-3.756 3.756 2.656 2.656 0 0 1 3.756-3.757Zm5.635 5.634a2.656 2.656 0 1 1-3.756 3.756 2.656 2.656 0 0 1 3.756-3.756ZM36.77 71.082a2.656 2.656 0 1 1-1.376 5.132 2.656 2.656 0 0 1 1.376-5.132ZM50.819 33.61a1.328 1.328 0 0 1-.318 2.278 26.351 26.351 0 0 0-8.786 5.833 26.491 26.491 0 0 0-5.835 8.784 1.328 1.328 0 0 1-2.46-.996 29.024 29.024 0 0 1 6.417-9.666 28.977 28.977 0 0 1 9.666-6.417c.44-.178.942-.108 1.316.184Zm36.508 36.428.094.11c.294.388.353.905.153 1.349a29.024 29.024 0 0 1-6.417 9.666 28.977 28.977 0 0 1-9.666 6.417 1.323 1.323 0 0 1-1.728-.732 1.328 1.328 0 0 1 .73-1.73 26.351 26.351 0 0 0 8.786-5.833 26.491 26.491 0 0 0 5.835-8.784 1.328 1.328 0 0 1 2.307-.353Zm-13.559 3.55-1.473 1.473-3.756-1.172 2.9 2.9-1.593 1.593-3.44-3.441-1.263 1.262c-1.457 1.458-2.329 1.458-4.027 0l-.917-.766 1.082-2.134 1.082.902c.661.54.827.466 1.307-.015l.992-.992-3.53-3.531 1.592-1.593 3.531 3.531.406-.405 2.464.901-4.433-4.433 1.578-1.577 7.498 7.498ZM58.171 45.97l1.352 2.043c-.766.466-1.547.887-2.329 1.248l1.939 1.938 1.307-2.029 1.818 1.638-1.397 2.119 2.239 2.239-1.698 1.698-2.435-2.435-1.487 1.488 2.194 2.194-1.608 1.608-2.194-2.194-1.518 1.517 2.194 2.194-1.668 1.668-2.194-2.194-1.532 1.533 2.795 2.795-1.683 1.683-8.295-8.295 7.048-7.047-.526.105.856-2.78c.33-.06.646-.135.962-.21l-.631-.63-1.863 1.862c.3.15.57.3.841.421l-.796 1.037-.782 1.022-1.142-.601-3.621 3.62c-1.337 1.338-2.104 1.443-3.591.286l-1.097-.856 1.217-2.3 1.007.767c.45.36.826.196 1.232-.21l2.54-2.54c-.872-.42-1.624-.871-2.195-1.111l1.458-2.24c.721.391 1.623.932 2.614 1.473l2.405-2.404-1.398-1.397 1.848-1.849 1.398 1.398 2.103-2.104 1.698 1.848-2.028 2.029 1.052 1.052-1.142 1.142c1.728-.526 3.125-1.202 4.733-2.24Zm16.844 17.175 1.698 1.848-.766.766 3.185 3.186-1.653 1.652-3.185-3.185-.676.676-1.773-1.773.676-.676-2.885-2.885-.376.376.917 1.427-.752.3 6.657 6.657-1.623 1.623-7.483-7.483c-1.112.3-2.179.526-3.32.616l-6.191 6.19-1.728-1.727 4.432-4.433a27.952 27.952 0 0 1-2.509-.285l.857-2.66c2.193.42 4.282.466 6.31.15l-2.479-2.48 1.623-1.622 3.471 3.471.736-.285-.991-.992.646-.646-3.186-3.186 1.653-1.653 3.186 3.186.841-.842 1.728 1.879-.766.766 2.885 2.885.841-.841Zm-24.207-4.313-1.788-1.788-1.533 1.533 1.789 1.788 1.532-1.533Zm3.186-3.185-1.788-1.789-1.518 1.518 1.788 1.788 1.518-1.517Zm3.095-3.096-1.788-1.788-1.488 1.488 1.789 1.788 1.487-1.488Zm29.701-7.073a2.656 2.656 0 1 1-3.756 3.757 2.656 2.656 0 0 1 3.756-3.757Zm-5.635-5.634A2.656 2.656 0 1 1 77.4 43.6a2.656 2.656 0 0 1 3.756-3.756Zm-6.825-6.322a2.656 2.656 0 1 1-1.375 5.131 2.656 2.656 0 0 1 1.375-5.131Z", fill: "currentColor", fillRule: "evenodd" }) })));
21
+ };
22
+ exports.default = RecommendIcon;
@@ -33,19 +33,24 @@ Object.defineProperty(exports, "__esModule", { value: true });
33
33
  var jsx_runtime_1 = require("react/jsx-runtime");
34
34
  var RankingRange_1 = __importDefault(require("../RankingRange"));
35
35
  var Bar_1 = __importDefault(require("./Bar"));
36
+ var RecommendIcon_1 = __importDefault(require("./RecommendIcon"));
36
37
  var styled_1 = require("./styled");
38
+ var Tips_1 = __importDefault(require("./Tips"));
39
+ var ai_report_1 = require("../../../../enum/ai-report");
37
40
  var global_store_1 = require("../../../../store/ai-report/global-store");
38
41
  var utils_1 = require("../../../../utils/utils");
39
42
  var dayjs_1 = __importDefault(require("dayjs"));
43
+ var fbm_icons_1 = require("fbm-icons");
40
44
  var fbm_ui_1 = require("fbm-ui");
45
+ var mui_1 = require("fbm-ui/lib/mui");
41
46
  var react_1 = require("react");
42
47
  var Score = function (_a) {
43
- var customScore = _a.customScore, loading = _a.loading, onRefresh = _a.onRefresh;
44
- var _b = __read((0, react_1.useState)(false), 2), openRankingRange = _b[0], setOpenRankingRange = _b[1];
45
- var _c = __read((0, react_1.useState)(false), 2), openRefresh = _c[0], setOpenRefresh = _c[1];
46
- var _d = (0, global_store_1.useAiReportStore)(function (store) { return [store.reportResult, store.operableButtons]; }), reportResult = _d.reportResult, operableButtons = _d.operableButtons, onExportReportClick = _d.onExportReportClick;
47
- var _e = reportResult || {}, score = _e.score, createTime = _e.createTime;
48
- var _f = __read((0, react_1.useState)(score || 0), 2), feScore = _f[0], setScore = _f[1];
48
+ var customScore = _a.customScore, loading = _a.loading, onRefresh = _a.onRefresh, onSwitchReportModel = _a.onSwitchReportModel, _b = _a.model, model = _b === void 0 ? 'standard' : _b;
49
+ var _c = __read((0, react_1.useState)(false), 2), openRankingRange = _c[0], setOpenRankingRange = _c[1];
50
+ var _d = __read((0, react_1.useState)(false), 2), openRefresh = _d[0], setOpenRefresh = _d[1];
51
+ var _e = (0, global_store_1.useAiReportStore)(function (store) { return [store.reportResult, store.operableButtons]; }), reportResult = _e.reportResult, operableButtons = _e.operableButtons, onExportReportClick = _e.onExportReportClick;
52
+ var _f = reportResult || {}, score = _f.score, createTime = _f.createTime;
53
+ var _g = __read((0, react_1.useState)(score || 0), 2), feScore = _g[0], setScore = _g[1];
49
54
  (0, react_1.useEffect)(function () {
50
55
  if (typeof customScore === 'number' && customScore > -1) {
51
56
  setScore(customScore);
@@ -57,6 +62,30 @@ var Score = function (_a) {
57
62
  setOpenRefresh(false);
58
63
  }, [loading, customScore, score]);
59
64
  var content = ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ padding: 2 }, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body1", color: "secondary" }, { children: "\u5237\u65B0\u540E\u5C06\u6309\u6700\u65B0\u7B97\u5206\u89C4\u5219\u8BA1\u7B97\uFF0C\u662F\u5426\u786E\u8BA4\u5237\u65B0" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ paddingTop: 1, textAlign: "right" }, { children: (0, jsx_runtime_1.jsx)(fbm_ui_1.Button, __assign({ loading: loading, onClick: onRefresh }, { children: "\u5237\u65B0" })) }))] })));
60
- return ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ display: "flex", sx: { padding: '24px' } }, { children: [(0, jsx_runtime_1.jsx)(RankingRange_1.default, { open: openRankingRange, onClose: function () { return setOpenRankingRange(false); } }), (0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ flex: "1 0" }, { children: [(0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ display: "flex", alignItems: "center" }, { children: [(0, jsx_runtime_1.jsxs)(styled_1.ScoreTypography, { children: [(0, utils_1.formatScore)(feScore || 0), (0, jsx_runtime_1.jsx)(styled_1.ScoreUnitTypography, __assign({ variant: "caption" }, { children: "\u5206" }))] }), (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ width: 50, height: 50 }, { children: !!feScore && feScore >= 80 && (0, jsx_runtime_1.jsx)("img", { src: "//webcdn.fbmms.cn/web/saas/asset/image/recommended.svg", alt: "" }) })), (operableButtons === null || operableButtons === void 0 ? void 0 : operableButtons.includes('export')) && ((0, jsx_runtime_1.jsx)(fbm_ui_1.Button, __assign({ variant: "outlined", size: "small", icon: (0, jsx_runtime_1.jsx)(fbm_ui_1.DownloadIcon, {}), sx: { ml: 1 }, onClick: onExportReportClick }, { children: "\u5BFC\u51FA\u62A5\u544A" })))] })), (0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ display: "flex", alignItems: "center", mt: 1 }, { children: [(operableButtons === null || operableButtons === void 0 ? void 0 : operableButtons.includes('refresh')) && ((0, jsx_runtime_1.jsx)(fbm_ui_1.Popover, __assign({ open: openRefresh, content: content, onClickAway: function () { return setOpenRefresh(false); } }, { children: (0, jsx_runtime_1.jsx)(styled_1.RefreshIconRoot, { onClick: function () { return setOpenRefresh(true); } }) }))), (0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ variant: "caption", color: "secondary", ml: 0.5 }, { children: ["\u62A5\u544A\u751F\u6210\u4E8E ", (0, dayjs_1.default)(createTime && createTime * 1000).format('YYYY-MM-DD HH:mm')] })), (operableButtons === null || operableButtons === void 0 ? void 0 : operableButtons.includes('scoreRank')) && ((0, jsx_runtime_1.jsx)(fbm_ui_1.Button, __assign({ variant: "text", size: "small", sx: { textDecoration: 'underline' }, onClick: function () { return setOpenRankingRange(true); } }, { children: "\u6392\u540D\u533A\u95F4\u8BBE\u7F6E" })))] }))] })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ width: 200 }, { children: (0, jsx_runtime_1.jsx)(Bar_1.default, {}) }))] })));
65
+ return ((0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ display: "flex", sx: {
66
+ px: 3,
67
+ height: 280,
68
+ background: "url('".concat(ai_report_1.BackgroundImage[model], "') no-repeat center center / contain"),
69
+ } }, { children: [model === 'pro' && ((0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ display: "flex", alignItems: "center", justifyContent: "center", width: 92, height: 30, sx: {
70
+ position: 'absolute',
71
+ top: 0,
72
+ left: 0,
73
+ backgroundColor: ai_report_1.Colors[model],
74
+ borderBottomRightRadius: 16,
75
+ } }, { children: (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", fontWeight: "medium", color: "white" }, { children: "\u9AD8\u7CBE\u51C6\u5EA6" })) }))), (0, jsx_runtime_1.jsx)(RankingRange_1.default, { open: openRankingRange, onClose: function () { return setOpenRankingRange(false); } }), (0, jsx_runtime_1.jsx)(mui_1.Stack, __assign({ direction: "row", py: 2, justifyContent: "flex-end", spacing: 1, alignContent: "center", color: ai_report_1.Colors[model] }, { children: (operableButtons === null || operableButtons === void 0 ? void 0 : operableButtons.includes('export')) && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Button, __assign({ variant: "outlined", size: "small", icon: (0, jsx_runtime_1.jsx)(fbm_ui_1.DownloadIcon, {}), sx: {
76
+ ml: 1,
77
+ color: 'inherit',
78
+ borderColor: 'inherit',
79
+ '&:hover': {
80
+ borderColor: 'inherit',
81
+ },
82
+ }, onClick: onExportReportClick }, { children: "\u5BFC\u51FA\u62A5\u544A" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Button, __assign({ variant: "outlined", size: "small", loading: loading, icon: (0, jsx_runtime_1.jsx)(fbm_icons_1.SwitchIcon, {}), sx: {
83
+ ml: 1,
84
+ color: 'inherit',
85
+ borderColor: 'inherit',
86
+ '&:hover': {
87
+ borderColor: 'inherit',
88
+ },
89
+ }, onClick: onSwitchReportModel }, { children: ai_report_1.SwitchTitle[model] })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Popover, __assign({ arrow: false, content: Tips_1.default, trigger: "hover" }, { children: (0, jsx_runtime_1.jsx)(fbm_ui_1.InfoOutlineIcon, { htmlColor: "inherit", sx: { cursor: 'pointer' } }) }))] })) })), (0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ display: "flex", alignItems: "center", height: 80, color: ai_report_1.Colors[model] }, { children: [(0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ direction: "row", alignItems: "center" }, { children: [(0, jsx_runtime_1.jsx)(styled_1.ScoreTypography, __assign({ color: "inherit" }, { children: (0, utils_1.formatScore)(feScore || 0) })), (0, jsx_runtime_1.jsx)(styled_1.ScoreUnitTypography, __assign({ color: "inherit", sx: { alignSelf: 'flex-end' } }, { children: "\u5206" }))] })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ width: 200, ml: 5, color: ai_report_1.Colors[model] }, { children: (0, jsx_runtime_1.jsx)(Bar_1.default, { model: model }) }))] })), (0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ direction: "row", justifyContent: "space-between", color: ai_report_1.Colors[model] }, { children: [(0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ display: "flex", alignItems: "center", mt: 1, sx: { alignSelf: 'flex-start' } }, { children: [(operableButtons === null || operableButtons === void 0 ? void 0 : operableButtons.includes('refresh')) && ((0, jsx_runtime_1.jsx)(fbm_ui_1.Popover, __assign({ open: openRefresh, content: content, onClickAway: function () { return setOpenRefresh(false); } }, { children: (0, jsx_runtime_1.jsx)(styled_1.RefreshIconRoot, { htmlColor: "inherit", onClick: function () { return setOpenRefresh(true); } }) }))), (0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ variant: "caption", color: "inherit", ml: 0.5 }, { children: ["\u62A5\u544A\u751F\u6210\u4E8E ", (0, dayjs_1.default)(createTime && createTime * 1000).format('YYYY-MM-DD HH:mm')] })), (operableButtons === null || operableButtons === void 0 ? void 0 : operableButtons.includes('scoreRank')) && ((0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ color: "inherit", sx: { textDecoration: 'underline', cursor: 'pointer', ml: 1.5 }, onClick: function () { return setOpenRankingRange(true); } }, { children: "\u6392\u540D\u533A\u95F4\u8BBE\u7F6E" })))] })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ width: 120, height: 120, sx: { marginTop: -3 } }, { children: !!feScore && feScore >= 80 && (0, jsx_runtime_1.jsx)(RecommendIcon_1.default, { size: 120, sx: { width: 120, height: 120 }, htmlColor: ai_report_1.Colors[model] }) }))] }))] })));
61
90
  };
62
91
  exports.default = Score;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const Tips: () => JSX.Element;
3
+ export default Tips;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ var jsx_runtime_1 = require("react/jsx-runtime");
15
+ var fbm_ui_1 = require("fbm-ui");
16
+ var mui_1 = require("fbm-ui/lib/mui");
17
+ var Tips = function () {
18
+ return ((0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ width: 588, spacing: 3, pl: 3, pr: 2, py: 3, overflow: "scroll" }, { children: [(0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ spacing: 2.5 }, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ color: "textSecondary" }, { children: "\u4E13\u4E1A\u7248\u8BF4\u660E" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ fontWeight: "medium" }, { children: "\u6CE8\u610F\uFF1A\u4E13\u4E1A\u7248\u62A5\u544A\u4EE5\u9AD8\u7EA7AI\u6280\u672F\u63D0\u4F9B\u66F4\u7CBE\u51C6\u8BC4\u4F30\uFF0C\u5C5E\u589E\u503C\u4EA7\u54C1\uFF0C\u6BCF\u4E13\u4E1A\u7248\u62A5\u544A\u6309\u6807\u51C6\u72482\u4EBA\u6B21\u8BA1\u8D39\uFF0C\u4EC5\u9996\u6B21\u5347\u7EA7\u6536\u8D39\u3002\u9ED8\u8BA4\u63D0\u4F9B\u6807\u51C6\u7248\uFF0C\u54A8\u8BE2\u5BA2\u6237\u987E\u95EE\u4E86\u89E3\u8D44\u8D39\u4F18\u60E0\u3002" }))] })), (0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ spacing: 2.5 }, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ fontWeight: "medium" }, { children: "\u62A5\u544A\u8BF4\u660E" })), (0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ spacing: 0.5 }, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: "1.\u4E13\u4E1A\u7248\u62A5\u544A\u91C7\u7528\u4E86\u66F4\u4E3A\u9AD8\u7EA7\u7684AI\u7B97\u6CD5\u548C\u6280\u672F\uFF0C\u5728\u62E9\u4F18\u548C\u7565\u6C70\u65B9\u9762\u90FD\u80FD\u505A\u5230\u66F4\u9AD8\u51C6\u786E\u5EA6\u3002" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: "2.\u5728\u6807\u51C6\u6D4B\u8BD5\u96C6\u4E2D\u7ECF\u8FC7\u591A\u6B21\u6D4B\u8BD5\u5F97\u51FA\uFF0C\u5982\u679C\u9898\u76EE\u8003\u6838\u7684\u80FD\u529B\u7684\u540D\u79F0\u548C\u80FD\u529B\u7684\u8BC4\u5206\u5173\u952E\u70B9\u5185\u5BB9\u66F4\u8D34\u5408\u9898\u76EE\u5185\u5BB9\uFF0C\u6253\u5206\u51C6\u786E\u5EA6\u4E5F\u4F1A\u66F4\u9AD8\u3002\u5728\u76F8\u540C\u7684\u80FD\u529B\u540D\u79F0\u548C\u8BC4\u5206\u5173\u952E\u70B9\u65F6\uFF0C\u4E13\u4E1A\u7248\u8F83\u6807\u51C6\u7248\u7684\u5206\u6570\u51C6\u786E\u5EA6\u63D0\u534721%\u3002" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: "3.\u6807\u51C6\u6D4B\u8BD5\u96C6\u4E2D\u91C7\u7528\u7EBF\u4E0A\u771F\u5B9E\u6570\u636E\uFF0C\u4E14\u4FDD\u8BC1\u6570\u636E\u7684\u591A\u6837\u5316\uFF0C\u9002\u7528\u4E8E\u5404\u79CD\u62DB\u8058\u573A\u666F\u3002" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: "4.\u4E0B\u9762\u6848\u4F8B\u80FD\u591F\u5E2E\u52A9\u7406\u89E3\u4E24\u4E2A\u7248\u672C\u7684\u5DEE\u5F02\uFF1A" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: "\u95EE\u9898\uFF1A\u8BF7\u5206\u4EAB\u4E00\u4E0B\u60A8\u7684\u804C\u4E1A\u89C4\u5212\u548C\u76EE\u6807\uFF1F" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: "\u5019\u9009\u4EBA\u56DE\u7B54\uFF1A\u9996\u5148\u662F\u5165\u804C\u4E00\u4EFD\u8DDF\u6211\u4E13\u4E1A\u76F8\u5173\u7684\u3002 \u5DE5\u4F5C\uFF0C\u7136\u540E\u3002 \u5728\u63A5\u4E0B\u6765\u7684\u51E0\u5E74\u3002 \u6728\u95E8\u3002 \u5C31\u662F\u7A33\u6B65\u5DE5\u4F5C\uFF0C\u7136\u540E\u6709\u6240\u5B66\u4E60\uFF0C\u7136\u540E\u6709\u6240\u6536\u83B7\u3002 \u5E76\u4E14\u3002 \u719F\u6089\u7684\u4E86\u89E3\u3002 \u6211\u6240\u5DE5\u4F5C\u7684\u6A21\u5757\u7684\u3002 \u6240\u6709\u6D41\u7A0B\uFF0C\u5E76\u4E14\u80FD\u5728\u5176\u4E2D\u83B7\u5F97\u4E00\u4E9B\u77E5\u8BC6" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: "\u8003\u5BDF\u80FD\u529B\uFF1A\u804C\u4E1A\u89C4\u5212\u80FD\u529B" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: "\u8BC4\u5206\u5173\u952E\u70B9\uFF1A\u9700\u8981\u5305\u542B\u5177\u4F53\u7684\u5DE5\u4F5C\u5B89\u6392\u7EC6\u8282\u3002\u5982\u679C\u5019\u9009\u4EBA\u7684\u89C4\u5212\u4E0D\u5177\u6709\u660E\u786E\u6027\u548C\u5B9E\u9645\u6027\uFF0C\u5219\u5C06\u5206\u6570\u6263\u51CF\u523070\u5206\u4EE5\u4E0B\uFF1B" }))] }))] })), (0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ direction: "row", spacing: 2 }, { children: [(0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ p: 2, flex: 1, spacing: 1, sx: { backgroundColor: '#FAFAFA', borderRadius: 2 } }, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2" }, { children: "\u57FA\u7840\u7248\uFF1A70\u5206" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: "\u5019\u9009\u4EBA\u7684\u56DE\u7B54\u7F3A\u4E4F\u660E\u786E\u6027\u548C\u5B9E\u9645\u6027\uFF0C\u8868\u8FBE\u80FD\u529B\u4E5F\u8F83\u5DEE\uFF0C\u6CA1\u6709\u63D0\u4F9B\u5177\u4F53\u7684\u5DE5\u4F5C\u5B89\u6392\u7EC6\u8282\u3002\u9700\u8981\u5728\u8FD9\u65B9\u9762\u8FDB\u884C\u6539\u8FDB\u3002" }))] })), (0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ p: 2, flex: 1, spacing: 1, sx: { backgroundColor: '#FAFAFA', borderRadius: 2 } }, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2" }, { children: "\u4E13\u4E1A\u7248\uFF1A60\u5206" })), (0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "textSecondary" }, { children: ["\u5019\u9009\u4EBA\u7684\u56DE\u7B54\u867D\u7136\u8868\u8FBE\u4E86\u5BF9\u804C\u4E1A\u89C4\u5212\u7684\u4E00\u4E9B\u7406\u89E3\uFF0C\u4F46\u662F\u5728\u5B8C\u6574\u5EA6\u3001\u903B\u8F91\u6027\u548C\u8868\u8FBE\u80FD\u529B\u4E0A\u90FD\u5B58\u5728\u4E00\u5B9A\u7684\u95EE\u9898\uFF0C\u6CA1\u6709\u660E\u786E\u7684\u53D1\u5C55\u610F\u613F\u548C\u5BF9\u884C\u4E1A\u7684\u7406\u89E3\uFF0C\u4E5F\u6CA1\u6709\u8868\u73B0\u51FA\u5BF9\u751F\u6D3B\u7684\u70ED\u7231\u548C\u79EF\u6781\u7684\u6001\u5EA6\u3002", ' '] }))] }))] }))] })));
19
+ };
20
+ exports.default = Tips;
@@ -16,31 +16,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  var jsx_runtime_1 = require("react/jsx-runtime");
18
18
  var Failed_1 = __importDefault(require("./Failed"));
19
- var Report_1 = __importDefault(require("./Report"));
20
19
  var Score_1 = __importDefault(require("./Score"));
21
20
  var ai_report_1 = require("../../../../enum/ai-report");
22
21
  var ai_report_2 = require("../../../../services/ai-report");
23
22
  var global_store_1 = require("../../../../store/ai-report/global-store");
24
23
  var ahooks_1 = require("ahooks");
25
24
  var fbm_ui_1 = require("fbm-ui");
26
- var mui_1 = require("fbm-ui/lib/mui");
27
25
  var FAILED = ai_report_1.INTERVIEW_STATUS.FAILED, IN_CALCULATION = ai_report_1.INTERVIEW_STATUS.IN_CALCULATION;
28
26
  var ScoreReport = function (_a) {
29
- var customScore = _a.customScore, onRefreshSuccess = _a.onRefreshSuccess;
27
+ var customScore = _a.customScore, onRefreshSuccess = _a.onRefreshSuccess, onSwitchReportModel = _a.onSwitchReportModel;
30
28
  var _b = (0, global_store_1.useAiReportStore)(function (store) { return [store.token, store.reportResult]; }), token = _b.token, reportResult = _b.reportResult;
31
- var _c = (reportResult || {}).status, status = _c === void 0 ? 0 : _c;
32
- var _d = (0, ahooks_1.useRequest)(function () { return (0, ai_report_2.PostAiInterviewRefresh)(token); }, {
29
+ var _c = reportResult || {}, _d = _c.status, status = _d === void 0 ? 0 : _d, model = _c.model;
30
+ var _e = (0, ahooks_1.useRequest)(function () { return (0, ai_report_2.PostAiInterviewRefresh)(token); }, {
33
31
  manual: true,
34
32
  onSuccess: function () {
35
33
  onRefreshSuccess();
36
34
  fbm_ui_1.Message.success('刷新成功');
37
35
  },
38
- }), run = _d.run, loading = _d.loading;
36
+ }), run = _e.run, loading = _e.loading;
39
37
  if ([FAILED, IN_CALCULATION].includes(status)) {
40
- return ((0, jsx_runtime_1.jsx)(mui_1.Paper, __assign({ id: "report-score", variant: "outlined" }, { children: (0, jsx_runtime_1.jsx)(Failed_1.default, { status: status, loading: loading, onRefresh: run }) })));
38
+ return ((0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ id: "report-score" }, { children: (0, jsx_runtime_1.jsx)(Failed_1.default, { status: status, loading: loading, onRefresh: run, model: model, onSwitchReportModel: onSwitchReportModel }) })));
41
39
  }
42
40
  else {
43
- return ((0, jsx_runtime_1.jsxs)(mui_1.Paper, __assign({ id: "report-score", variant: "outlined" }, { children: [(0, jsx_runtime_1.jsx)(Score_1.default, { customScore: customScore, loading: loading, onRefresh: run }), (0, jsx_runtime_1.jsx)(mui_1.Divider, {}), (0, jsx_runtime_1.jsx)(Report_1.default, {})] })));
41
+ return ((0, jsx_runtime_1.jsx)(fbm_ui_1.Box, { children: (0, jsx_runtime_1.jsx)(Score_1.default, { model: model, customScore: customScore, loading: loading, onRefresh: run, onSwitchReportModel: onSwitchReportModel }) }));
44
42
  }
45
43
  };
46
44
  exports.default = ScoreReport;
@@ -4,12 +4,17 @@ export interface ScoreLegendProps {
4
4
  export interface ScoreReportProps {
5
5
  customScore?: number;
6
6
  onRefreshSuccess: () => void;
7
+ onSwitchReportModel: () => void;
7
8
  }
8
9
  export interface ScoreProps {
9
10
  customScore?: number;
10
11
  loading?: boolean;
12
+ model?: 'pro' | 'standard';
11
13
  onRefresh: () => void;
14
+ onSwitchReportModel?: () => void;
12
15
  }
13
16
  export interface FailedProps extends ScoreProps {
14
17
  status?: number;
18
+ model?: 'pro' | 'standard';
19
+ onSwitchReportModel: () => void;
15
20
  }
@@ -5,16 +5,14 @@ var fbm_ui_1 = require("fbm-ui");
5
5
  exports.ScoreTypography = (0, fbm_ui_1.styled)(fbm_ui_1.Typography)(function (_a) {
6
6
  var theme = _a.theme;
7
7
  return ({
8
- color: theme.palette.primary.main,
9
- fontSize: 48,
8
+ fontSize: 70,
10
9
  fontWeight: 700,
11
10
  });
12
11
  });
13
12
  exports.ScoreUnitTypography = (0, fbm_ui_1.styled)(fbm_ui_1.Typography)(function (_a) {
14
13
  var theme = _a.theme;
15
14
  return ({
16
- color: theme.palette.primary.main,
17
- fontSize: 14,
15
+ fontSize: 24,
18
16
  marginLeft: 4,
19
17
  });
20
18
  });
@@ -25,7 +25,7 @@ var Index = function () {
25
25
  var _e = (0, global_store_1.useAiReportStore)(function (store) { return [store.reportResult]; }), reportResult = _e.reportResult, showAiDimension = _e.showAiDimension;
26
26
  if (!showAiDimension || !((_a = reportResult === null || reportResult === void 0 ? void 0 : reportResult.suggestion) === null || _a === void 0 ? void 0 : _a.show))
27
27
  return null;
28
- return ((0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ id: "report-suggestion", component: mui_1.Paper, variant: "outlined", px: 2, mt: 2, pb: 2 }, { children: [(0, jsx_runtime_1.jsx)(mui_1.Stack, __assign({ direction: "row", height: 56, alignItems: "center", spacing: 1 }, { children: (0, jsx_runtime_1.jsx)(AiHeaderTitle_1.default, { name: "\u8003\u5BDF\u5EFA\u8BAE" }) })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "secondary", mt: 1 }, { children: (_b = reportResult === null || reportResult === void 0 ? void 0 : reportResult.suggestion) === null || _b === void 0 ? void 0 : _b.text })), (0, jsx_runtime_1.jsx)(mui_1.Collapse, __assign({ in: true }, { children: (_d = (_c = reportResult === null || reportResult === void 0 ? void 0 : reportResult.suggestion) === null || _c === void 0 ? void 0 : _c.abilitys) === null || _d === void 0 ? void 0 : _d.map(function (v) {
28
+ return ((0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ id: "report-suggestion", px: 2, mt: 2, pb: 2 }, { children: [(0, jsx_runtime_1.jsx)(mui_1.Stack, __assign({ direction: "row", height: 56, alignItems: "center", spacing: 1 }, { children: (0, jsx_runtime_1.jsx)(AiHeaderTitle_1.default, { name: "\u8003\u5BDF\u5EFA\u8BAE" }) })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "secondary", mt: 1 }, { children: (_b = reportResult === null || reportResult === void 0 ? void 0 : reportResult.suggestion) === null || _b === void 0 ? void 0 : _b.text })), (0, jsx_runtime_1.jsx)(mui_1.Collapse, __assign({ in: true }, { children: (_d = (_c = reportResult === null || reportResult === void 0 ? void 0 : reportResult.suggestion) === null || _c === void 0 ? void 0 : _c.abilitys) === null || _d === void 0 ? void 0 : _d.map(function (v) {
29
29
  return (0, jsx_runtime_1.jsx)(Suggestion_1.default, { abilityName: v.abilityName, interviewQuestion: v.interviewQuestion, keyPoints: v.keyPoints }, v.abilityName);
30
30
  }) }))] })));
31
31
  };
@@ -114,6 +114,6 @@ var QuestionItem = function (props) {
114
114
  borderColor: token === stepToken ? ThemeProvider_1.theme.palette.primary.main : '',
115
115
  }, variant: "outlined", onClick: handleClickItem }, { children: [(0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ fontSize: 14, color: token === stepToken ? ThemeProvider_1.theme.palette.primary.main : ThemeProvider_1.theme.palette.text.primary }, { children: [index + 1, ".", desc] })), (0, jsx_runtime_1.jsxs)(styled_1.QuestionDesc, { children: [(0, jsx_runtime_1.jsx)(BodyImages_1.default, { reviewImgs: reviewImgs }), (0, jsx_runtime_1.jsx)(FormatQuote_1.default, {}), status === STEP_IN_CALCULATION ? ((0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "caption", color: "secondary" }, { children: "\u89C6\u9891\u5904\u7406\u4E2D\uFF0C\u8BF7\u7A0D\u5019" }))) : ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [isSingleChoice && (0, jsx_runtime_1.jsx)(SingleChoice_1.default, { options: options || [], selected: (analysisResult === null || analysisResult === void 0 ? void 0 : analysisResult.selected) || [] }), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, { variant: "caption", color: "secondary", dangerouslySetInnerHTML: { __html: renderText } }), type === ai_question_1.QUESTION_TYPE.COLOR_BLINDNESS && (analysisResult === null || analysisResult === void 0 ? void 0 : analysisResult.img) && ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, { children: [(0, jsx_runtime_1.jsx)("img", { style: { width: 100, height: 100 }, src: analysisResult === null || analysisResult === void 0 ? void 0 : analysisResult.img, alt: "" }), (0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ variant: "caption", color: "secondary", ml: 1 }, { children: ["\u56DE\u7B54\uFF1A", analysisResult === null || analysisResult === void 0 ? void 0 : analysisResult.answer] }))] }))] }))] }), followupQuestions === null || followupQuestions === void 0 ? void 0 : followupQuestions.map(function (v) {
116
116
  return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ mt: 1, fontSize: 14, color: token === stepToken ? ThemeProvider_1.theme.palette.primary.main : ThemeProvider_1.theme.palette.text.primary }, { children: "\u8FFD\u95EE\uFF1A".concat(v === null || v === void 0 ? void 0 : v.desc) })), (0, jsx_runtime_1.jsxs)(styled_1.QuestionDesc, { children: [(0, jsx_runtime_1.jsx)(FormatQuote_1.default, {}), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "caption", color: "secondary", ml: 1 }, { children: v === null || v === void 0 ? void 0 : v.answer }))] })] }));
117
- }), isExistWeight && status === STEP_COMPLETED && ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ mt: 2, display: "flex" }, { children: [(0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ variant: "body2", mr: 4 }, { children: ["\u8BC4\u5206\uFF1A", finalScore.toFixed(0), "\u5206"] })), isShowWeight && (0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ variant: "body2" }, { children: ["\u5355\u9898\u6743\u91CD\uFF1A", weight, "%"] }))] }))), isExistWeight && ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ width: "100%", display: "flex", alignItems: "center", mt: 2 }, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ flex: "1 0", display: "flex", alignItems: "center" }, { children: status === STEP_COMPLETED && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(ScoreSlider_1.default, { valueLabelDisplay: "".concat(isSingleChoice ? 'off' : 'auto'), originScore: originScore, disabledScore: isSingleChoice, finalScore: finalScore, isShowScoreRank: true, onChangeCommitted: handleChangeCommitted }), isShowAbilitiesButton && ((0, jsx_runtime_1.jsx)(fbm_ui_1.Button, __assign({ variant: "text", style: { whiteSpace: 'nowrap' }, onClick: function () { return setShowAbilities(!showAbilities); } }, { children: showAbilities ? '收起' : '详情' })))] })) })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ width: 150, textAlign: "right" }, { children: (0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ variant: "body1", fontSize: 16, fontWeight: 500 }, { children: ["\u7EFC\u5408\u8BC4\u5206\uFF1A", comprehensiveScore] })) }))] }))), isShowAbilitiesDetails && (0, jsx_runtime_1.jsx)(Abilities_1.default, { stepIndex: index, disabledScore: isSingleChoice })] }), token));
117
+ }), isExistWeight && status === STEP_COMPLETED && ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ mt: 2, display: "flex" }, { children: [(0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ variant: "body2", mr: 4 }, { children: ["\u8BC4\u5206\uFF1A", finalScore.toFixed(0), "\u5206"] })), isShowWeight && (0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ variant: "body2" }, { children: ["\u5355\u9898\u6743\u91CD\uFF1A", weight, "%"] }))] }))), isExistWeight && ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ width: "100%", display: "flex", alignItems: "center", mt: 2 }, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ flex: "1 0", display: "flex", alignItems: "center" }, { children: status === STEP_COMPLETED && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(ScoreSlider_1.default, { valueLabelDisplay: "".concat(isSingleChoice ? 'off' : 'auto'), originScore: originScore, disabledScore: isSingleChoice, finalScore: finalScore, isShowScoreRank: true, onChangeCommitted: handleChangeCommitted }), isShowAbilitiesButton && ((0, jsx_runtime_1.jsx)(fbm_ui_1.Button, __assign({ variant: "text", style: { whiteSpace: 'nowrap' }, onClick: function () { return setShowAbilities(!showAbilities); } }, { children: showAbilities ? '收起' : '详情' })))] })) })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ width: 150, textAlign: "right" }, { children: (0, jsx_runtime_1.jsxs)(fbm_ui_1.Typography, __assign({ variant: "body1", fontSize: 16, fontWeight: 500, noWrap: true }, { children: ["\u7EFC\u5408\u8BC4\u5206\uFF1A", comprehensiveScore] })) }))] }))), isShowAbilitiesDetails && (0, jsx_runtime_1.jsx)(Abilities_1.default, { stepIndex: index, disabledScore: isSingleChoice })] }), token));
118
118
  };
119
119
  exports.default = QuestionItem;
@@ -22,6 +22,6 @@ var fbm_ui_1 = require("fbm-ui");
22
22
  var VideoQuestion = function () {
23
23
  var reportResult = (0, global_store_1.useAiReportStore)(function (store) { return [store.reportResult, store.operableButtons]; }).reportResult;
24
24
  var steps = (reportResult || {}).steps;
25
- return ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ id: "report-question", component: fbm_ui_1.Paper, p: 2, style: { background: '#fff', border: '1px solid rgb(244, 244, 244)' }, mt: 2 }, { children: [(0, jsx_runtime_1.jsx)(AiHeaderTitle_1.default, { name: "\u89C6\u9891\u9898" }), (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ mt: 3 }, { children: steps && steps.length > 0 ? (steps === null || steps === void 0 ? void 0 : steps.map(function (item, index) { return (0, jsx_runtime_1.jsx)(QuestionItem_1.default, __assign({ index: index }, item), item.token); })) : ((0, jsx_runtime_1.jsx)(fbm_ui_1.Empty, { src: "//public-static-assets.oss-cn-beijing.aliyuncs.com/img/empty.png", desc: "\u6682\u65E0\u9898\u76EE" })) }))] })));
25
+ return ((0, jsx_runtime_1.jsxs)(fbm_ui_1.Box, __assign({ id: "report-question", p: 2, mt: 2 }, { children: [(0, jsx_runtime_1.jsx)(AiHeaderTitle_1.default, { name: "\u89C6\u9891\u9898" }), (0, jsx_runtime_1.jsx)(fbm_ui_1.Box, __assign({ mt: 3 }, { children: steps && steps.length > 0 ? (steps === null || steps === void 0 ? void 0 : steps.map(function (item, index) { return (0, jsx_runtime_1.jsx)(QuestionItem_1.default, __assign({ index: index }, item), item.token); })) : ((0, jsx_runtime_1.jsx)(fbm_ui_1.Empty, { src: "//public-static-assets.oss-cn-beijing.aliyuncs.com/img/empty.png", desc: "\u6682\u65E0\u9898\u76EE" })) }))] })));
26
26
  };
27
27
  exports.default = VideoQuestion;
@@ -6,6 +6,7 @@ interface WorkplaceProps {
6
6
  bgcolor?: string;
7
7
  mode?: Mode;
8
8
  canEdit?: boolean;
9
+ thirdOrderID: string;
9
10
  }
10
11
  declare const Evaluate: React.FC<WorkplaceProps>;
11
12
  export default Evaluate;
@@ -33,7 +33,7 @@ var fbm_ui_1 = require("fbm-ui");
33
33
  var mui_1 = require("fbm-ui/lib/mui");
34
34
  var react_1 = require("react");
35
35
  var Evaluate = function (_a) {
36
- var answer = _a.answer, token = _a.token, bgcolor = _a.bgcolor, _b = _a.mode, mode = _b === void 0 ? 'show' : _b, _c = _a.canEdit, canEdit = _c === void 0 ? 'true' : _c;
36
+ var answer = _a.answer, token = _a.token, thirdOrderID = _a.thirdOrderID, bgcolor = _a.bgcolor, _b = _a.mode, mode = _b === void 0 ? 'show' : _b, _c = _a.canEdit, canEdit = _c === void 0 ? 'true' : _c;
37
37
  var _d = __read((0, react_1.useState)(answer), 2), content = _d[0], setContent = _d[1];
38
38
  var _e = __read((0, react_1.useState)('show'), 2), internalMode = _e[0], setInternalMode = _e[1];
39
39
  var handleChange = (0, react_1.useCallback)(function (e) {
@@ -56,6 +56,7 @@ var Evaluate = function (_a) {
56
56
  var onClose = _a.onClose;
57
57
  var data = {
58
58
  token: token,
59
+ thirdOrderID: thirdOrderID,
59
60
  answer: content,
60
61
  };
61
62
  (0, ai_report_1.PostAiInterviewWorkplace)(data).then(handleModeChange).then(onClose).catch(console.log);
@@ -65,10 +65,11 @@ var ColorIndexMap = {
65
65
  var Index = function () {
66
66
  var _a;
67
67
  var _b = (0, global_store_1.useAiReportStore)(function (store) { return [store.reportResult, store.operableButtons]; }), reportResult = _b.reportResult, showAiDimension = _b.showAiDimension, canEditAiDimension = _b.canEditAiDimension;
68
+ var _c = (reportResult || {}).orderToken, orderToken = _c === void 0 ? '' : _c;
68
69
  if (!showAiDimension)
69
70
  return null;
70
- return ((0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ id: "report-workplace", component: mui_1.Paper, variant: "outlined", px: 2, mt: 2 }, { children: [(0, jsx_runtime_1.jsx)(mui_1.Stack, __assign({ direction: "row", height: 56, alignItems: "center", spacing: 1, marginBottom: 1 }, { children: (0, jsx_runtime_1.jsx)(AiHeaderTitle_1.default, { name: "\u804C\u573A\u80FD\u529B\u8868\u73B0" }) })), (0, jsx_runtime_1.jsx)(mui_1.Collapse, __assign({ in: true }, { children: (_a = reportResult === null || reportResult === void 0 ? void 0 : reportResult.workplaces) === null || _a === void 0 ? void 0 : _a.map(function (v, idx) {
71
- return ((0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ component: mui_1.Paper, variant: "outlined", elevation: 0, mb: 2, pb: 2, pr: 2 }, { children: [(0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ display: "flex", mb: 2, mt: 1, justifyContent: "space-between", alignItems: "center" }, { children: [(0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ display: "flex", alignItems: "center", maxWidth: "calc(100% - 90px)" }, { children: [(0, jsx_runtime_1.jsx)(TagTitle, __assign({ bgcolor: ColorIndexMap[idx % 3][200] }, { children: (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "subtitle1", fontWeight: "medium", style: { lineHeight: '32px', color: '#fff', whiteSpace: 'nowrap', overflow: 'hidden', textOverflow: 'ellipsis' } }, { children: v.dimensionName })) })), v.dimensionType === 3 && (0, jsx_runtime_1.jsx)(fbm_ui_1.Chip, { color: 'primary', label: '自定义', size: "small", sx: { ml: 1 } })] })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Tooltip, __assign({ title: (0, jsx_runtime_1.jsxs)("span", { children: ["\u9AD8\u5206\u8868\u73B0\uFF1A", v.abilityExpression.good, (0, jsx_runtime_1.jsx)("br", {}), "\u4F4E\u5206\u8868\u73B0\uFF1A", v.abilityExpression.bad] }) }, { children: (0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ display: "flex", alignItems: "center" }, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", style: { lineHeight: '32px' }, mr: 1 }, { children: "\u4F18\u6B21\u8868\u73B0" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.InfoOutlineIcon, { sx: { fontSize: '16px' } })] })) }))] })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "secondary", ml: 2, style: { background: '#F5F5F5', borderRadius: 4, padding: 8 } }, { children: v.define })), (0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ pl: 2 }, { children: [(0, jsx_runtime_1.jsx)(mui_1.Box, __assign({ mt: 2 }, { children: (0, jsx_runtime_1.jsx)(ScoreSlider_1.default, { width: "100%", isShowLabel: true, score: v.score, scoreText: v.scoreText, scoreLevel: v.scoreLevel }) })), (0, jsx_runtime_1.jsx)(mui_1.Stack, __assign({ spacing: 2 }, { children: (0, jsx_runtime_1.jsx)(WorkPlace_1.default, { token: v.token, canEdit: canEditAiDimension, answer: v.answer, mode: "show", bgcolor: ColorIndexMap[idx % 3][50] }) }))] }))] }), v.token));
71
+ return ((0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ id: "report-workplace", px: 2, mt: 2 }, { children: [(0, jsx_runtime_1.jsx)(mui_1.Stack, __assign({ direction: "row", height: 56, alignItems: "center", spacing: 1, marginBottom: 1 }, { children: (0, jsx_runtime_1.jsx)(AiHeaderTitle_1.default, { name: "\u804C\u573A\u80FD\u529B\u8868\u73B0" }) })), (0, jsx_runtime_1.jsx)(mui_1.Collapse, __assign({ in: true }, { children: (_a = reportResult === null || reportResult === void 0 ? void 0 : reportResult.workplaces) === null || _a === void 0 ? void 0 : _a.map(function (v, idx) {
72
+ return ((0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ mb: 2, pb: 2, pr: 2 }, { children: [(0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ display: "flex", mb: 2, mt: 1, justifyContent: "space-between", alignItems: "center" }, { children: [(0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ display: "flex", alignItems: "center", maxWidth: "calc(100% - 90px)" }, { children: [(0, jsx_runtime_1.jsx)(TagTitle, __assign({ bgcolor: ColorIndexMap[idx % 3][200] }, { children: (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "subtitle1", fontWeight: "medium", style: { lineHeight: '32px', color: '#fff', whiteSpace: 'nowrap', overflow: 'hidden', textOverflow: 'ellipsis' } }, { children: v.dimensionName })) })), v.dimensionType === 3 && (0, jsx_runtime_1.jsx)(fbm_ui_1.Chip, { color: 'primary', label: '自定义', size: "small", sx: { ml: 1 } })] })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Tooltip, __assign({ title: (0, jsx_runtime_1.jsxs)("span", { children: ["\u9AD8\u5206\u8868\u73B0\uFF1A", v.abilityExpression.good, (0, jsx_runtime_1.jsx)("br", {}), "\u4F4E\u5206\u8868\u73B0\uFF1A", v.abilityExpression.bad] }) }, { children: (0, jsx_runtime_1.jsxs)(mui_1.Box, __assign({ display: "flex", alignItems: "center" }, { children: [(0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", style: { lineHeight: '32px' }, mr: 1 }, { children: "\u4F18\u6B21\u8868\u73B0" })), (0, jsx_runtime_1.jsx)(fbm_ui_1.InfoOutlineIcon, { sx: { fontSize: '16px' } })] })) }))] })), (0, jsx_runtime_1.jsx)(fbm_ui_1.Typography, __assign({ variant: "body2", color: "secondary", ml: 2, style: { background: '#F5F5F5', borderRadius: 4, padding: 8 } }, { children: v.define })), (0, jsx_runtime_1.jsxs)(mui_1.Stack, __assign({ pl: 2 }, { children: [(0, jsx_runtime_1.jsx)(mui_1.Box, __assign({ mt: 2 }, { children: (0, jsx_runtime_1.jsx)(ScoreSlider_1.default, { width: "100%", isShowLabel: true, score: v.score, scoreText: v.scoreText, scoreLevel: v.scoreLevel }) })), (0, jsx_runtime_1.jsx)(mui_1.Stack, __assign({ spacing: 2 }, { children: (0, jsx_runtime_1.jsx)(WorkPlace_1.default, { thirdOrderID: orderToken, token: v.token, canEdit: canEditAiDimension, answer: v.answer, mode: "show", bgcolor: ColorIndexMap[idx % 3][50] }) }))] }))] }), v.token));
72
73
  }) }))] })));
73
74
  };
74
75
  exports.default = Index;
@@ -135,12 +135,14 @@ export interface AiInterviewReportList {
135
135
  workplaces: WorkPlaceAbility[];
136
136
  suggestion: Suggestion;
137
137
  summaryText: SummaryText;
138
+ model: 'pro' | 'standard';
138
139
  score: number;
139
140
  status: number;
140
141
  completedStatus: number;
141
142
  createTime: number;
142
143
  startTime: number;
143
144
  completeTime: number;
145
+ hasProVersion: boolean;
144
146
  steps: AiInterviewReportStep[];
145
147
  }
146
148
  export interface AiInterviewReportData {
@@ -7,8 +7,14 @@ interface PostAiInterviewEvaluationData {
7
7
  }
8
8
  export declare const PostAiInterviewEvaluation: <R>(data: PostAiInterviewEvaluationData) => import("axios").AxiosPromise<R>;
9
9
  interface PostAiInterviewWorkplaceData {
10
+ thirdOrderID: string;
10
11
  token: string;
11
12
  answer?: string;
12
13
  }
13
14
  export declare const PostAiInterviewWorkplace: <R>(data: PostAiInterviewWorkplaceData) => import("axios").AxiosPromise<R>;
15
+ interface SwitchReportModelParams {
16
+ model: 'standard' | 'pro';
17
+ thirdOrderID: string;
18
+ }
19
+ export declare const SwitchReportModel: (data: SwitchReportModelParams) => import("axios").AxiosPromise<unknown>;
14
20
  export {};
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PostAiInterviewWorkplace = exports.PostAiInterviewEvaluation = exports.PostAiInterviewRefresh = exports.PostAiInterviewResult = void 0;
3
+ exports.SwitchReportModel = exports.PostAiInterviewWorkplace = exports.PostAiInterviewEvaluation = exports.PostAiInterviewRefresh = exports.PostAiInterviewResult = void 0;
4
4
  var request_1 = require("../utils/request");
5
5
  // 查询面试结果
6
6
  var PostAiInterviewResult = function (orderTokens) { return (0, request_1.POST)({ url: "/standard/b/aiInterview/result", data: { orderTokens: orderTokens } }); };
@@ -18,3 +18,5 @@ var PostAiInterviewWorkplace = function (data) {
18
18
  return (0, request_1.POST)({ url: "/standard/b/aiInterview/workplace/answer/modify", data: data });
19
19
  };
20
20
  exports.PostAiInterviewWorkplace = PostAiInterviewWorkplace;
21
+ var SwitchReportModel = function (data) { return (0, request_1.POST)({ url: "standard/b/reports/switch-model", data: data }); };
22
+ exports.SwitchReportModel = SwitchReportModel;
@@ -22,8 +22,8 @@ var hox_1 = require("hox");
22
22
  var react_1 = require("react");
23
23
  exports.useEnterpriseStore = (_a = __read((0, hox_1.createGlobalStore)(function () {
24
24
  var _a = __read((0, react_1.useState)({
25
- jobToken: 'vWqoOO3mWRh7JO2R5M2QRXO8WX',
26
- thirdToken: '7nkaOm56MyljuO109r4sQXWWOS',
25
+ jobToken: '',
26
+ thirdToken: '',
27
27
  }), 2), enterprise = _a[0], setEnterprise = _a[1];
28
28
  return {
29
29
  enterprise: enterprise,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eli-video-interview",
3
- "version": "1.2.41-alpha.2",
3
+ "version": "1.2.41-alpha.21",
4
4
  "description": "鳄梨科技 AI视频面试 React SDK",
5
5
  "author": "鳄梨科技",
6
6
  "license": "MIT",
@@ -13,6 +13,7 @@
13
13
  "esm"
14
14
  ],
15
15
  "dependencies": {
16
+ "@avocadoui/echarts": "^1.0.2",
16
17
  "@mui/icons-material": "^5.8.3",
17
18
  "@mui/lab": "^5.0.0-alpha.85",
18
19
  "@mui/styles": "^5.6.0",
@@ -20,14 +21,15 @@
20
21
  "array-move": "^4.0.0",
21
22
  "axios": "^0.27.2",
22
23
  "dayjs": "^1.11.4",
23
- "@avocadoui/echarts": "^1.0.2",
24
+ "fbm-icons": "^0.0.18",
24
25
  "fbm-ui": "^1.4.161",
25
26
  "hox": "^2.1.0",
26
27
  "immutability-helper": "^3.1.1",
27
28
  "react-svg": "^15.1.3",
28
29
  "sortablejs": "^1.15.0",
29
30
  "typescript": "^4.7.2",
30
- "use-immer": "^0.7.0"
31
+ "use-immer": "^0.7.0",
32
+ "yup": "^1.3.3"
31
33
  },
32
34
  "devDependencies": {
33
35
  "@types/jest": "^27.5.1",