@titaui/pc 1.12.22-beta.1 → 1.12.22-beta.13
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/lib/components/attachments-preview/index.js +6 -2
- package/lib/components/color-date-picker/index.css +1 -2
- package/lib/components/dialog-upload/index.js +1 -1
- package/lib/components/dynamic/components/comments-dialog/img/curEfforts.png +0 -0
- package/lib/components/dynamic/components/comments-dialog/img/curGood.png +0 -0
- package/lib/components/dynamic/components/comments-dialog/img/curGreat.png +0 -0
- package/lib/components/dynamic/components/comments-dialog/img/efforts.png +0 -0
- package/lib/components/dynamic/components/comments-dialog/img/good.png +0 -0
- package/lib/components/dynamic/components/comments-dialog/img/great.png +0 -0
- package/lib/components/dynamic/components/comments-dialog/index.css +33 -3
- package/lib/components/dynamic/components/comments-dialog/index.js +18 -7
- package/lib/components/dynamic/dynamic-item/components/header/index.js +2 -1
- package/lib/components/dynamic/dynamic-item/components/okr-progress/index.js +3 -14
- package/lib/components/dynamic/dynamic-item/components/schedule/index.js +5 -29
- package/lib/components/dynamic/dynamic-item/components/summary-header/index.css +0 -1
- package/lib/components/dynamic/dynamic-item/components/summary-header/index.js +95 -48
- package/lib/components/dynamic/dynamic-item/components/summary-header/request-api.js +17 -0
- package/lib/components/dynamic/dynamic-item/components/task-progress/constant.js +15 -2
- package/lib/components/dynamic/dynamic-item/components/task-progress/index.css +41 -31
- package/lib/components/dynamic/dynamic-item/components/task-progress/index.js +72 -85
- package/lib/components/dynamic/dynamic-item/components/task-progress/interface.js +18 -1
- package/lib/components/dynamic/dynamic-item/components/task-progress/render-row.js +80 -0
- package/lib/components/dynamic/dynamic-item/components/task-progress/request-api.js +16 -0
- package/lib/components/dynamic/dynamic-item/components/task-progress/utils.js +92 -8
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/components/evalute/index.js +42 -23
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/index.css +1 -1
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/index.js +42 -65
- package/lib/components/dynamic/dynamic-item/index.js +50 -44
- package/lib/components/import-modal/import-okr-modal/index.js +2 -1
- package/lib/components/import-modal/import-task-modal/search-form.js +4 -1
- package/lib/components/import-modal/request-api.js +1 -1
- package/lib/components/import-modal/search/task-relation.js +9 -5
- package/lib/components/import-modal/tree/okr-tree/index.js +15 -5
- package/lib/components/menus/components/search-colleague/index.js +3 -1
- package/lib/components/menus/export-modules/summary-menus/depart-menus/index.js +15 -11
- package/lib/components/menus/export-modules/summary-menus/menus.js +48 -36
- package/lib/components/menus/export-modules/summary-menus/summary-front-menus.js +2 -2
- package/lib/components/picker/components/panels/month-panel/index.js +2 -1
- package/lib/components/picker/components/panels/week-panel/index.js +6 -2
- package/lib/components/picker/components/panels/week-panel/utils.js +24 -2
- package/lib/components/picker/components/panels/week-panel/week-body.js +18 -10
- package/lib/components/picker/components/panels/week-panel/week-head.js +9 -7
- package/lib/components/picker/picker-panels.js +3 -3
- package/lib/components/picker/range-picker/components/select-input/index.js +9 -2
- package/lib/components/rate/index.css +3 -3
- package/lib/components/textarea/index.css +2 -2
- package/lib/components/textarea/index.js +1 -1
- package/lib/components/upvote/index.js +10 -4
- package/lib/components/write-summary-modal/index.css +1 -0
- package/lib/components/write-summary-modal/index.js +7 -6
- package/lib/utils/helpers.js +58 -3
- package/package.json +2 -2
|
@@ -112,13 +112,13 @@
|
|
|
112
112
|
|
|
113
113
|
.titaui-dynamic-summary-task-progress__statistic {
|
|
114
114
|
display: flex;
|
|
115
|
-
justify-content: space-between;
|
|
116
115
|
margin-top: 12px;
|
|
117
116
|
}
|
|
118
117
|
|
|
119
118
|
.titaui-dynamic-summary-task-progress__statistic-item {
|
|
120
119
|
flex: 1;
|
|
121
120
|
height: 48px;
|
|
121
|
+
max-width: 349px;
|
|
122
122
|
border-radius: 12px;
|
|
123
123
|
display: flex;
|
|
124
124
|
align-items: center;
|
|
@@ -131,6 +131,7 @@
|
|
|
131
131
|
line-height: 22px;
|
|
132
132
|
position: relative;
|
|
133
133
|
overflow: hidden;
|
|
134
|
+
cursor: pointer;
|
|
134
135
|
}
|
|
135
136
|
|
|
136
137
|
.titaui-dynamic-summary-task-progress__statistic-item:last-child {
|
|
@@ -141,8 +142,17 @@
|
|
|
141
142
|
background: rgba(0, 214, 133, 0.1);
|
|
142
143
|
}
|
|
143
144
|
|
|
144
|
-
.titaui-dynamic-summary-task-progress__statistic-item--finished
|
|
145
|
-
|
|
145
|
+
.titaui-dynamic-summary-task-progress__statistic-item--finished-text {
|
|
146
|
+
color: #00d685;
|
|
147
|
+
font-size: 16px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.titaui-dynamic-summary-task-progress__statistic-item--finished-active {
|
|
151
|
+
background: rgba(0, 214, 133, 0.3);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.titaui-dynamic-summary-task-progress__statistic-item--finished-active::before {
|
|
155
|
+
content: "";
|
|
146
156
|
position: absolute;
|
|
147
157
|
top: 0;
|
|
148
158
|
left: 0;
|
|
@@ -152,50 +162,50 @@
|
|
|
152
162
|
border-radius: 12px 0 0 12px;
|
|
153
163
|
}
|
|
154
164
|
|
|
155
|
-
.titaui-dynamic-summary-task-progress__statistic-item--finished-text {
|
|
156
|
-
color: #00D685;
|
|
157
|
-
font-size: 16px;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
165
|
.titaui-dynamic-summary-task-progress__statistic-item--processing {
|
|
161
166
|
background: rgba(40, 121, 255, 0.1);
|
|
162
167
|
}
|
|
163
168
|
|
|
164
169
|
.titaui-dynamic-summary-task-progress__statistic-item--processing-text {
|
|
165
|
-
color: #
|
|
170
|
+
color: #2879ff;
|
|
166
171
|
font-size: 16px;
|
|
167
172
|
}
|
|
168
173
|
|
|
169
|
-
.titaui-dynamic-summary-task-progress__statistic-item--
|
|
170
|
-
background: rgba(
|
|
174
|
+
.titaui-dynamic-summary-task-progress__statistic-item--processing-active {
|
|
175
|
+
background: rgba(40, 121, 255, 0.3);
|
|
171
176
|
}
|
|
172
177
|
|
|
173
|
-
.titaui-dynamic-summary-task-progress__statistic-item--
|
|
174
|
-
|
|
175
|
-
|
|
178
|
+
.titaui-dynamic-summary-task-progress__statistic-item--processing-active::before {
|
|
179
|
+
content: "";
|
|
180
|
+
position: absolute;
|
|
181
|
+
top: 0;
|
|
182
|
+
left: 0;
|
|
183
|
+
width: 4px;
|
|
184
|
+
height: 48px;
|
|
185
|
+
background: rgba(40, 121, 255, 0.3);
|
|
186
|
+
border-radius: 12px 0 0 12px;
|
|
176
187
|
}
|
|
177
188
|
|
|
178
|
-
.titaui-dynamic-summary-task-
|
|
179
|
-
|
|
180
|
-
width: 60px;
|
|
181
|
-
height: 60px;
|
|
182
|
-
border-radius: 8px;
|
|
183
|
-
border: 1px solid #e9ecf0;
|
|
184
|
-
display: flex;
|
|
185
|
-
align-items: center;
|
|
186
|
-
justify-content: center;
|
|
189
|
+
.titaui-dynamic-summary-task-progress__statistic-item--overdue {
|
|
190
|
+
background: rgba(240, 94, 94, 0.1);
|
|
187
191
|
}
|
|
188
192
|
|
|
189
|
-
.titaui-dynamic-summary-task-
|
|
190
|
-
|
|
191
|
-
|
|
193
|
+
.titaui-dynamic-summary-task-progress__statistic-item--overdue-text {
|
|
194
|
+
color: #f05e5e;
|
|
195
|
+
font-size: 16px;
|
|
192
196
|
}
|
|
193
197
|
|
|
194
|
-
.titaui-dynamic-summary-task-
|
|
195
|
-
|
|
196
|
-
border: 1px solid #2879ff;
|
|
198
|
+
.titaui-dynamic-summary-task-progress__statistic-item--overdue-active {
|
|
199
|
+
background: rgba(240, 94, 94, 0.3);
|
|
197
200
|
}
|
|
198
201
|
|
|
199
|
-
.titaui-dynamic-summary-task-
|
|
200
|
-
|
|
202
|
+
.titaui-dynamic-summary-task-progress__statistic-item--overdue-active::before {
|
|
203
|
+
content: "";
|
|
204
|
+
position: absolute;
|
|
205
|
+
top: 0;
|
|
206
|
+
left: 0;
|
|
207
|
+
width: 4px;
|
|
208
|
+
height: 48px;
|
|
209
|
+
background: rgba(240, 94, 94, 0.3);
|
|
210
|
+
border-radius: 12px 0 0 12px;
|
|
201
211
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
3
5
|
Object.defineProperty(exports, "__esModule", {
|
|
4
6
|
value: true
|
|
5
7
|
});
|
|
@@ -11,15 +13,11 @@ var _tooltip = _interopRequireDefault(require("../../../../tooltip"));
|
|
|
11
13
|
|
|
12
14
|
var _getLocale = require("../../../../../utils/getLocale");
|
|
13
15
|
|
|
14
|
-
var
|
|
15
|
-
|
|
16
|
-
var _schedule = _interopRequireDefault(require("../schedule"));
|
|
16
|
+
var _utils = require("./utils");
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _renderRow = _interopRequireDefault(require("./render-row"));
|
|
19
19
|
|
|
20
|
-
var
|
|
21
|
-
|
|
22
|
-
var _utils = require("./utils");
|
|
20
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
23
21
|
|
|
24
22
|
require("./index.css");
|
|
25
23
|
|
|
@@ -29,7 +27,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
29
27
|
|
|
30
28
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
31
29
|
|
|
32
|
-
function
|
|
30
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
33
31
|
|
|
34
32
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
35
33
|
|
|
@@ -43,125 +41,114 @@ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Sy
|
|
|
43
41
|
|
|
44
42
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
45
43
|
|
|
46
|
-
var prefix =
|
|
47
|
-
var isImport = true;
|
|
44
|
+
var prefix = "titaui-dynamic-summary-task-progress";
|
|
48
45
|
|
|
49
46
|
var TaskProgress = function TaskProgress(_ref) {
|
|
50
47
|
var data = _ref.data,
|
|
51
|
-
_ref$type = _ref.type,
|
|
52
|
-
type = _ref$type === void 0 ? 'day' : _ref$type,
|
|
53
48
|
title = _ref.title;
|
|
54
49
|
|
|
55
|
-
var _useState = (0, _react.useState)(
|
|
50
|
+
var _useState = (0, _react.useState)({
|
|
51
|
+
1: [],
|
|
52
|
+
2: [],
|
|
53
|
+
3: []
|
|
54
|
+
}),
|
|
56
55
|
_useState2 = _slicedToArray(_useState, 2),
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
tableData = _useState2[0],
|
|
57
|
+
setTableData = _useState2[1];
|
|
59
58
|
|
|
60
59
|
var _useState3 = (0, _react.useState)((0, _utils.getStatusStatistic)([])),
|
|
61
60
|
_useState4 = _slicedToArray(_useState3, 2),
|
|
62
61
|
statusStatistic = _useState4[0],
|
|
63
62
|
setStatusStatistic = _useState4[1];
|
|
64
63
|
|
|
65
|
-
var
|
|
66
|
-
|
|
67
|
-
|
|
64
|
+
var _useState5 = (0, _react.useState)(1),
|
|
65
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
66
|
+
activeId = _useState6[0],
|
|
67
|
+
setActiveId = _useState6[1];
|
|
68
|
+
|
|
69
|
+
var handleFilterDone = function handleFilterDone() {
|
|
70
|
+
setActiveId(1);
|
|
68
71
|
};
|
|
69
72
|
|
|
70
|
-
var
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
}
|
|
73
|
+
var handleFilterDoing = function handleFilterDoing() {
|
|
74
|
+
setActiveId(2);
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
var handleFilterOverdue = function handleFilterOverdue() {
|
|
78
|
+
setActiveId(3);
|
|
79
|
+
};
|
|
78
80
|
|
|
79
|
-
return '';
|
|
80
|
-
}, [type]);
|
|
81
81
|
var renderTable = (0, _react.useMemo)(function () {
|
|
82
82
|
return /*#__PURE__*/_react["default"].createElement("table", null, /*#__PURE__*/_react["default"].createElement("thead", null, /*#__PURE__*/_react["default"].createElement("tr", {
|
|
83
83
|
className: "".concat(prefix, "__table-title")
|
|
84
84
|
}, /*#__PURE__*/_react["default"].createElement("td", {
|
|
85
85
|
className: "".concat(prefix, "__table-title-okrs")
|
|
86
|
-
}, (0, _getLocale.getLocale)(
|
|
86
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_Title_Taskname")), /*#__PURE__*/_react["default"].createElement("td", {
|
|
87
87
|
className: "".concat(prefix, "__table-title-progress")
|
|
88
|
-
}, (0, _getLocale.getLocale)(
|
|
88
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_Pop_Upd_Progresss1")), /*#__PURE__*/_react["default"].createElement("td", {
|
|
89
89
|
className: "".concat(prefix, "__table-title-progress-desc")
|
|
90
|
-
}, (0, _getLocale.getLocale)(
|
|
91
|
-
overlay: (0, _getLocale.getLocale)(
|
|
90
|
+
}, (0, _getLocale.getLocale)("Feed_Tab_Title_Progress"), /*#__PURE__*/_react["default"].createElement(_tooltip["default"], {
|
|
91
|
+
overlay: (0, _getLocale.getLocale)("Rep_NewS_PrgreTask"),
|
|
92
92
|
placement: "top",
|
|
93
93
|
align: {
|
|
94
94
|
offset: [0, 5]
|
|
95
95
|
}
|
|
96
96
|
}, /*#__PURE__*/_react["default"].createElement("i", {
|
|
97
97
|
className: "tu-icon-wiki ".concat(prefix, "__table-title-progress-desc-icon")
|
|
98
|
-
}))))), /*#__PURE__*/_react["default"].createElement("tbody", null,
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
return /*#__PURE__*/_react["default"].createElement("tr", null, /*#__PURE__*/_react["default"].createElement("td", null, /*#__PURE__*/_react["default"].createElement("div", {
|
|
103
|
-
className: "".concat(prefix, "__table-row-title"),
|
|
104
|
-
onClick: function onClick() {
|
|
105
|
-
return handleShowTaskDetail(item);
|
|
106
|
-
}
|
|
107
|
-
}, /*#__PURE__*/_react["default"].createElement("i", {
|
|
108
|
-
className: "".concat(prefix, "__table-row-title-icon ").concat(_constant.EStatusStatus2ClassType[item.Status])
|
|
109
|
-
}), /*#__PURE__*/_react["default"].createElement("span", {
|
|
110
|
-
className: "".concat(prefix, "__table-row-title-text")
|
|
111
|
-
}, item.Name))), /*#__PURE__*/_react["default"].createElement("td", null, /*#__PURE__*/_react["default"].createElement(_progress["default"], {
|
|
112
|
-
id: "".concat(item.Id),
|
|
113
|
-
type: "task",
|
|
114
|
-
status: item.Status === 1 ? "normal" : "risk",
|
|
115
|
-
value: item.Progress,
|
|
116
|
-
editable: false,
|
|
117
|
-
riskLevel: item.Status
|
|
118
|
-
})), /*#__PURE__*/_react["default"].createElement("td", null, /*#__PURE__*/_react["default"].createElement(_schedule["default"], {
|
|
119
|
-
value: (item === null || item === void 0 ? void 0 : (_item$LastContent = item.LastContent) === null || _item$LastContent === void 0 ? void 0 : _item$LastContent.trim()) || '',
|
|
120
|
-
date: item.LastContentTime,
|
|
121
|
-
editable: false,
|
|
122
|
-
id: item.Id
|
|
123
|
-
})));
|
|
124
|
-
} else {
|
|
125
|
-
return /*#__PURE__*/_react["default"].createElement("tr", null, /*#__PURE__*/_react["default"].createElement("td", {
|
|
126
|
-
colSpan: 4
|
|
127
|
-
}, /*#__PURE__*/_react["default"].createElement(_tableRowOProject["default"], {
|
|
128
|
-
id: item.Id // isO={item.Type === EObjType.O}
|
|
129
|
-
,
|
|
130
|
-
extraClass: "".concat(prefix, "__table-obj"),
|
|
131
|
-
text: item.Name
|
|
132
|
-
})));
|
|
133
|
-
}
|
|
98
|
+
}))))), /*#__PURE__*/_react["default"].createElement("tbody", null, tableData[activeId].map(function (item) {
|
|
99
|
+
return /*#__PURE__*/_react["default"].createElement(_renderRow["default"], {
|
|
100
|
+
item: item
|
|
101
|
+
});
|
|
134
102
|
})));
|
|
135
|
-
}, [
|
|
103
|
+
}, [tableData, activeId]);
|
|
136
104
|
(0, _react.useEffect)(function () {
|
|
137
|
-
if (
|
|
138
|
-
|
|
105
|
+
if (data && typeof data === 'string') {
|
|
106
|
+
var statisticData = (0, _utils.getStatusStatistic)(JSON.parse(data).Rows);
|
|
107
|
+
setStatusStatistic(statisticData);
|
|
108
|
+
setTableData((0, _utils.formatTaskData)(JSON.parse(data).Rows));
|
|
139
109
|
|
|
140
|
-
if (
|
|
141
|
-
|
|
110
|
+
if (activeId === 1 && statisticData.done > 0 || activeId === 2 && statisticData.doing > 0 || activeId === 3 && statisticData.overDue > 0) {
|
|
111
|
+
return;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
if (statisticData.done > 0) {
|
|
115
|
+
setActiveId(1);
|
|
116
|
+
} else if (statisticData.doing > 0) {
|
|
117
|
+
setActiveId(2);
|
|
118
|
+
} else if (statisticData.overDue > 0) {
|
|
119
|
+
setActiveId(3);
|
|
142
120
|
}
|
|
143
121
|
}
|
|
144
122
|
}, [data]);
|
|
145
|
-
|
|
123
|
+
|
|
124
|
+
if (data && typeof data === 'string') {
|
|
125
|
+
if (!JSON.parse(data).Rows || !JSON.parse(data).Rows.length) {
|
|
126
|
+
return null;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
146
130
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
147
131
|
className: prefix
|
|
148
132
|
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
149
133
|
className: "".concat(prefix, "__title")
|
|
150
|
-
}, title), /*#__PURE__*/_react["default"].createElement("div", {
|
|
134
|
+
}, title), statusStatistic.done + statusStatistic.doing + statusStatistic.overDue > 0 && /*#__PURE__*/_react["default"].createElement("div", {
|
|
151
135
|
className: "".concat(prefix, "__statistic")
|
|
152
|
-
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
153
|
-
|
|
154
|
-
|
|
136
|
+
}, statusStatistic.done > 0 && /*#__PURE__*/_react["default"].createElement("span", {
|
|
137
|
+
onClick: handleFilterDone,
|
|
138
|
+
className: (0, _classnames["default"])("".concat(prefix, "__statistic-item ").concat(prefix, "__statistic-item--finished"), _defineProperty({}, "".concat(prefix, "__statistic-item--finished-active"), activeId === 1))
|
|
139
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_E_From_Completed"), " ", /*#__PURE__*/_react["default"].createElement("span", {
|
|
155
140
|
className: "".concat(prefix, "__statistic-item--finished-text")
|
|
156
|
-
}, statusStatistic.
|
|
157
|
-
|
|
158
|
-
|
|
141
|
+
}, statusStatistic.done)), statusStatistic.doing > 0 && /*#__PURE__*/_react["default"].createElement("span", {
|
|
142
|
+
onClick: handleFilterDoing,
|
|
143
|
+
className: (0, _classnames["default"])("".concat(prefix, "__statistic-item ").concat(prefix, "__statistic-item--processing"), _defineProperty({}, "".concat(prefix, "__statistic-item--processing-active"), activeId === 2))
|
|
144
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_Butt_Inprogress"), " ", /*#__PURE__*/_react["default"].createElement("span", {
|
|
159
145
|
className: "".concat(prefix, "__statistic-item--processing-text")
|
|
160
|
-
}, statusStatistic.doing)), /*#__PURE__*/_react["default"].createElement("span", {
|
|
161
|
-
|
|
162
|
-
|
|
146
|
+
}, statusStatistic.doing)), statusStatistic.overDue > 0 && /*#__PURE__*/_react["default"].createElement("span", {
|
|
147
|
+
onClick: handleFilterOverdue,
|
|
148
|
+
className: (0, _classnames["default"])("".concat(prefix, "__statistic-item ").concat(prefix, "__statistic-item--overdue"), _defineProperty({}, "".concat(prefix, "__statistic-item--overdue-active"), activeId === 3))
|
|
149
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_E_Overdue"), " ", /*#__PURE__*/_react["default"].createElement("span", {
|
|
163
150
|
className: "".concat(prefix, "__statistic-item--overdue-text")
|
|
164
|
-
}, statusStatistic.overDue))), /*#__PURE__*/_react["default"].createElement("div", {
|
|
151
|
+
}, statusStatistic.overDue))), (tableData[1].length > 0 || tableData[2].length > 0 || tableData[3].length > 0) && /*#__PURE__*/_react["default"].createElement("div", {
|
|
165
152
|
className: "".concat(prefix, "__table")
|
|
166
153
|
}, renderTable));
|
|
167
154
|
};
|
|
@@ -2,4 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
|
-
});
|
|
5
|
+
});
|
|
6
|
+
exports.EReportType = exports.EImportType = void 0;
|
|
7
|
+
var EReportType;
|
|
8
|
+
exports.EReportType = EReportType;
|
|
9
|
+
|
|
10
|
+
(function (EReportType) {
|
|
11
|
+
EReportType[EReportType["Daily"] = 8] = "Daily";
|
|
12
|
+
EReportType[EReportType["Weekly"] = 26] = "Weekly";
|
|
13
|
+
EReportType[EReportType["Month"] = 27] = "Month";
|
|
14
|
+
})(EReportType || (exports.EReportType = EReportType = {}));
|
|
15
|
+
|
|
16
|
+
var EImportType;
|
|
17
|
+
exports.EImportType = EImportType;
|
|
18
|
+
|
|
19
|
+
(function (EImportType) {
|
|
20
|
+
EImportType[EImportType["Imported"] = 1] = "Imported";
|
|
21
|
+
EImportType[EImportType["NotImported"] = 0] = "NotImported";
|
|
22
|
+
})(EImportType || (exports.EImportType = EImportType = {}));
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _progress = _interopRequireDefault(require("../progress"));
|
|
11
|
+
|
|
12
|
+
var _tableRowOProject = _interopRequireDefault(require("../table-row-o-project"));
|
|
13
|
+
|
|
14
|
+
var _constant = require("./constant");
|
|
15
|
+
|
|
16
|
+
var _schedule = _interopRequireDefault(require("../schedule"));
|
|
17
|
+
|
|
18
|
+
var _getLocale = require("../../../../../utils/getLocale");
|
|
19
|
+
|
|
20
|
+
require("./index.css");
|
|
21
|
+
|
|
22
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
+
|
|
24
|
+
var prefix = "titaui-dynamic-summary-task-progress";
|
|
25
|
+
|
|
26
|
+
var RenderRow = function RenderRow(_ref) {
|
|
27
|
+
var item = _ref.item;
|
|
28
|
+
|
|
29
|
+
var handleShowTaskDetail = function handleShowTaskDetail(item) {
|
|
30
|
+
// @ts-ignore
|
|
31
|
+
window.Talent.app.vent.trigger("global-pull-screen", item.TaskId, "task");
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
var render = function render() {
|
|
35
|
+
if (item.IsImport) {
|
|
36
|
+
var _item$LastContent;
|
|
37
|
+
|
|
38
|
+
return /*#__PURE__*/_react["default"].createElement("tr", null, /*#__PURE__*/_react["default"].createElement("td", null, /*#__PURE__*/_react["default"].createElement("div", {
|
|
39
|
+
className: "".concat(prefix, "__table-row-title"),
|
|
40
|
+
onClick: function onClick() {
|
|
41
|
+
return handleShowTaskDetail(item);
|
|
42
|
+
}
|
|
43
|
+
}, /*#__PURE__*/_react["default"].createElement("i", {
|
|
44
|
+
className: "".concat(prefix, "__table-row-title-icon ").concat(_constant.EStatusStatus2ClassType[item.IconStatus])
|
|
45
|
+
}), /*#__PURE__*/_react["default"].createElement("span", {
|
|
46
|
+
className: "".concat(prefix, "__table-row-title-text")
|
|
47
|
+
}, item.Name), item.RemainDay > 0 && /*#__PURE__*/_react["default"].createElement("span", {
|
|
48
|
+
className: "".concat(prefix, "__table-row-title-remain")
|
|
49
|
+
}, (0, _getLocale.getLocale)("Rep_NewS_PrgreDelay").replace("XX", item.RemainDay)), item.WorkTimes > 0 && /*#__PURE__*/_react["default"].createElement("span", {
|
|
50
|
+
className: "".concat(prefix, "__table-row-title-worktime")
|
|
51
|
+
}, item.WorkTimes, "h"))), /*#__PURE__*/_react["default"].createElement("td", null, /*#__PURE__*/_react["default"].createElement(_progress["default"], {
|
|
52
|
+
id: "".concat(item.Id),
|
|
53
|
+
type: "task",
|
|
54
|
+
status: item.Status === 1 || item.Status === 2 && item.RiskLevel === 4 ? "normal" : "risk",
|
|
55
|
+
value: item.Progress,
|
|
56
|
+
editable: false
|
|
57
|
+
})), /*#__PURE__*/_react["default"].createElement("td", null, /*#__PURE__*/_react["default"].createElement(_schedule["default"], {
|
|
58
|
+
value: (item === null || item === void 0 ? void 0 : (_item$LastContent = item.LastContent) === null || _item$LastContent === void 0 ? void 0 : _item$LastContent.trim()) || "",
|
|
59
|
+
editable: false,
|
|
60
|
+
id: item.Id
|
|
61
|
+
})));
|
|
62
|
+
} else {
|
|
63
|
+
return /*#__PURE__*/_react["default"].createElement("tr", null, /*#__PURE__*/_react["default"].createElement("td", {
|
|
64
|
+
colSpan: 3
|
|
65
|
+
}, /*#__PURE__*/_react["default"].createElement(_tableRowOProject["default"], {
|
|
66
|
+
id: item.Id // 6: okr 4: 项目
|
|
67
|
+
,
|
|
68
|
+
isO: item.ParentObjType === 6,
|
|
69
|
+
extraClass: "".concat(prefix, "__table-obj"),
|
|
70
|
+
text: item.Name,
|
|
71
|
+
notIcon: item.ParentObjType !== 4 && item.ParentObjType !== 6
|
|
72
|
+
})));
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, render());
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
var _default = RenderRow;
|
|
80
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.getTasks = void 0;
|
|
7
|
+
|
|
8
|
+
var _request = require("@titaui/request");
|
|
9
|
+
|
|
10
|
+
var getTasks = function getTasks(_ref) {
|
|
11
|
+
var feedId = _ref.feedId,
|
|
12
|
+
moduleId = _ref.moduleId;
|
|
13
|
+
return (0, _request.rpost)("v1")("summary/task/search/".concat(feedId, "/").concat(moduleId));
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
exports.getTasks = getTasks;
|
|
@@ -3,7 +3,47 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.getStatusStatistic = void 0;
|
|
6
|
+
exports.getStatusStatistic = exports.getMapText = exports.formatTime = exports.formatTaskData = void 0;
|
|
7
|
+
|
|
8
|
+
var _constant = require("./constant");
|
|
9
|
+
|
|
10
|
+
var _getLocale = require("../../../../../utils/getLocale");
|
|
11
|
+
|
|
12
|
+
var _helpers = require("../../../../../utils/helpers");
|
|
13
|
+
|
|
14
|
+
var _interface = require("./interface");
|
|
15
|
+
|
|
16
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
17
|
+
|
|
18
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
19
|
+
|
|
20
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
21
|
+
|
|
22
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
23
|
+
|
|
24
|
+
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
25
|
+
|
|
26
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
27
|
+
|
|
28
|
+
var formatTaskData = function formatTaskData(data) {
|
|
29
|
+
var result = {
|
|
30
|
+
1: [],
|
|
31
|
+
2: [],
|
|
32
|
+
3: []
|
|
33
|
+
};
|
|
34
|
+
data.forEach(function (item) {
|
|
35
|
+
if (item.Status === 2) {
|
|
36
|
+
result[1].push(item);
|
|
37
|
+
} else if (item.Status === 1) {
|
|
38
|
+
result[2].push(item);
|
|
39
|
+
} else if (item.Status === 3) {
|
|
40
|
+
result[3].push(item);
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
return result;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
exports.formatTaskData = formatTaskData;
|
|
7
47
|
|
|
8
48
|
var getStatusStatistic = function getStatusStatistic(data) {
|
|
9
49
|
var result = {
|
|
@@ -11,17 +51,61 @@ var getStatusStatistic = function getStatusStatistic(data) {
|
|
|
11
51
|
doing: 0,
|
|
12
52
|
overDue: 0
|
|
13
53
|
};
|
|
14
|
-
data.forEach(function (
|
|
15
|
-
// 1 进行中 2 已完成 3
|
|
16
|
-
if (
|
|
54
|
+
data.forEach(function (items) {
|
|
55
|
+
// 1 进行中 2 已完成 3已延期
|
|
56
|
+
if (items.Status === 3) {
|
|
57
|
+
result.overDue = result.overDue + 1;
|
|
58
|
+
} else if (items.Status === 1) {
|
|
17
59
|
result.doing = result.doing + 1;
|
|
18
|
-
} else if (
|
|
60
|
+
} else if (items.Status === 2) {
|
|
19
61
|
result.done = result.done + 1;
|
|
20
|
-
} else if (item.Status === 3) {
|
|
21
|
-
result.overDue = result.overDue + 1;
|
|
22
62
|
}
|
|
23
63
|
});
|
|
24
64
|
return result;
|
|
25
65
|
};
|
|
26
66
|
|
|
27
|
-
exports.getStatusStatistic = getStatusStatistic;
|
|
67
|
+
exports.getStatusStatistic = getStatusStatistic;
|
|
68
|
+
|
|
69
|
+
var formatTime = function formatTime(type, date) {
|
|
70
|
+
if (type === _interface.EReportType.Daily) {
|
|
71
|
+
return date.replace(/-/g, '/');
|
|
72
|
+
} else if (type === _interface.EReportType.Weekly) {
|
|
73
|
+
var _date$split = date.split('-'),
|
|
74
|
+
_date$split2 = _slicedToArray(_date$split, 3),
|
|
75
|
+
year = _date$split2[0],
|
|
76
|
+
month = _date$split2[1],
|
|
77
|
+
week = _date$split2[2];
|
|
78
|
+
|
|
79
|
+
var weeks = (0, _helpers.getPointYearMonthWeeksRange)(year, month);
|
|
80
|
+
var startDate = weeks[Number(week) - 1].startTime;
|
|
81
|
+
var endTime = weeks[Number(week) - 1].endTime;
|
|
82
|
+
|
|
83
|
+
var _startDate$replace$sp = startDate.replace('/', '-').split('-'),
|
|
84
|
+
_startDate$replace$sp2 = _slicedToArray(_startDate$replace$sp, 1),
|
|
85
|
+
startMonth = _startDate$replace$sp2[0];
|
|
86
|
+
|
|
87
|
+
var _endTime$replace$spli = endTime.replace('/', '-').split('-'),
|
|
88
|
+
_endTime$replace$spli2 = _slicedToArray(_endTime$replace$spli, 1),
|
|
89
|
+
endMonth = _endTime$replace$spli2[0];
|
|
90
|
+
|
|
91
|
+
return "".concat(Number(startMonth) > Number(endMonth) ? Number(year) + 1 : year, "/") + weeks[Number(week) - 1].endTime;
|
|
92
|
+
} else if (type === _interface.EReportType.Month) {
|
|
93
|
+
return date.replace(/-/g, '/');
|
|
94
|
+
}
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
exports.formatTime = formatTime;
|
|
98
|
+
|
|
99
|
+
var getMapText = function getMapText(types, type) {
|
|
100
|
+
if (types.includes(_constant.EObjType.Task)) {
|
|
101
|
+
if (type === 1) {
|
|
102
|
+
return (0, _getLocale.getLocale)('Rep_NewS_TargBeenMdif');
|
|
103
|
+
} else if (type === 2) {
|
|
104
|
+
return (0, _getLocale.getLocale)('Rep_NewS_ModifOKR');
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
return '';
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
exports.getMapText = getMapText;
|