@titaui/pc 1.12.48-beta.2 → 1.12.48-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/attachments-preview/index.css +5 -0
- package/lib/components/dynamic/constant.js +5 -1
- package/lib/components/dynamic/dynamic-item/components/okr-progress/index.css +44 -2
- package/lib/components/dynamic/dynamic-item/components/okr-progress/index.js +24 -6
- package/lib/components/dynamic/dynamic-item/components/summary-header/index.css +10 -0
- package/lib/components/dynamic/dynamic-item/components/summary-header/index.js +61 -60
- package/lib/components/dynamic/dynamic-item/components/summary-header/request-api.js +9 -3
- package/lib/components/dynamic/dynamic-item/components/task-progress/index.css +91 -45
- package/lib/components/dynamic/dynamic-item/components/task-progress/index.js +22 -8
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/components/evalute/index.css +13 -0
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/components/evalute/index.js +5 -3
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/components/remind-user-view/index.css +2 -2
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/index.css +44 -2
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/index.js +25 -7
- package/lib/components/dynamic/dynamic-item/dynamic-new-report/util.js +1 -1
- package/lib/components/dynamic/dynamic-item/index.css +1 -1
- package/lib/components/guide-tip/index.css +1 -1
- package/lib/components/guide-tip/index.js +15 -27
- package/lib/components/menus/components/menu-tree/tree-node/menu-item.js +5 -1
- package/lib/components/menus/export-modules/demo-menus/menus.js +5 -4
- package/lib/components/menus/export-modules/summary-menus/depart-menus/index.js +8 -3
- package/lib/components/menus/export-modules/summary-menus/index.js +1 -1
- package/lib/components/menus/export-modules/summary-menus/menus.js +57 -7
- package/lib/components/menus/export-modules/summary-menus/summary-front-menus.js +28 -6
- package/lib/components/menus/request-apis.js +15 -1
- package/lib/components/nav-top/components/app-center/images/new.svg +30 -0
- package/lib/components/nav-top/components/app-center/index.css +20 -1
- package/lib/components/nav-top/components/app-center/index.js +9 -1
- package/lib/components/nav-top/components/menu/index.css +11 -0
- package/lib/components/nav-top/components/menu/index.js +46 -54
- package/lib/components/nav-top/index.css +5 -0
- package/lib/components/nav-top/index.js +57 -20
- package/lib/components/okr-flow/okr-map/index.js +3 -1
- package/lib/components/picker/range-picker/components/picker-trigger/index.css +2 -3
- package/lib/components/picker/range-picker/components/picker-trigger/index.js +2 -2
- package/lib/components/rate/index.css +1 -1
- package/lib/components/rate/index.js +29 -2
- package/lib/utils/auth.js +5 -0
- package/lib/utils/open-data.js +1 -1
- package/package.json +2 -2
|
@@ -1,18 +1,23 @@
|
|
|
1
|
-
.titaui-dynamic-
|
|
1
|
+
.titaui-dynamic-task-progress {
|
|
2
2
|
padding: 12px 0;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
.titaui-dynamic-
|
|
6
|
-
|
|
5
|
+
.titaui-dynamic-task-progress:hover .titaui-dynamic-task-progress__title-arrow {
|
|
6
|
+
opacity: 1;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.titaui-dynamic-task-progress__title {
|
|
10
|
+
position: relative;
|
|
11
|
+
font-size: 16px;
|
|
7
12
|
font-weight: 600;
|
|
8
13
|
color: #141c28;
|
|
9
|
-
line-height:
|
|
14
|
+
line-height: 24px;
|
|
10
15
|
display: flex;
|
|
11
16
|
justify-content: space-between;
|
|
12
17
|
align-items: center;
|
|
13
18
|
}
|
|
14
19
|
|
|
15
|
-
.titaui-dynamic-
|
|
20
|
+
.titaui-dynamic-task-progress__title-update {
|
|
16
21
|
font-size: 14px;
|
|
17
22
|
font-weight: 400;
|
|
18
23
|
color: #2879ff;
|
|
@@ -21,28 +26,65 @@
|
|
|
21
26
|
align-items: center;
|
|
22
27
|
}
|
|
23
28
|
|
|
24
|
-
.titaui-dynamic-
|
|
29
|
+
.titaui-dynamic-task-progress__title-update-icon {
|
|
25
30
|
margin-right: 4px;
|
|
26
31
|
}
|
|
27
32
|
|
|
28
|
-
.titaui-dynamic-
|
|
33
|
+
.titaui-dynamic-task-progress__title-update:hover {
|
|
29
34
|
cursor: pointer;
|
|
30
35
|
opacity: 0.8;
|
|
31
36
|
}
|
|
32
37
|
|
|
33
|
-
.titaui-dynamic-
|
|
38
|
+
.titaui-dynamic-task-progress__title-arrow {
|
|
39
|
+
opacity: 0;
|
|
40
|
+
transition: all 0.3s;
|
|
41
|
+
position: absolute;
|
|
42
|
+
left: -28px;
|
|
43
|
+
display: inline-flex;
|
|
44
|
+
align-items: center;
|
|
45
|
+
justify-content: center;
|
|
46
|
+
width: 24px;
|
|
47
|
+
height: 24px;
|
|
48
|
+
border-radius: 8px;
|
|
49
|
+
cursor: pointer;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.titaui-dynamic-task-progress__title-arrow--show {
|
|
53
|
+
opacity: 1;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.titaui-dynamic-task-progress__title-arrow:hover {
|
|
57
|
+
background: #F0F4FA;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.titaui-dynamic-task-progress__title-arrow-icon {
|
|
61
|
+
font-size: 16px;
|
|
62
|
+
transform: scale(0.5);
|
|
63
|
+
transition: all 0.3s;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.titaui-dynamic-task-progress__title-arrow-icon--rotate {
|
|
67
|
+
transform: rotate(-90deg) scale(0.5);
|
|
68
|
+
transition: all 0.3s;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.titaui-dynamic-task-progress__table {
|
|
34
72
|
border: 1px solid #dfe3ea;
|
|
35
73
|
border-radius: 12px;
|
|
36
74
|
margin-top: 12px;
|
|
37
75
|
}
|
|
38
76
|
|
|
39
|
-
.titaui-dynamic-
|
|
77
|
+
.titaui-dynamic-task-progress__table--hide {
|
|
78
|
+
display: none;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.titaui-dynamic-task-progress__table-row-title {
|
|
40
82
|
font-size: 14px;
|
|
41
83
|
color: #141c28;
|
|
42
84
|
padding: 8px 0;
|
|
43
85
|
}
|
|
44
86
|
|
|
45
|
-
.titaui-dynamic-
|
|
87
|
+
.titaui-dynamic-task-progress__table-row-title-remain {
|
|
46
88
|
background: rgba(240, 94, 94, 0.16);
|
|
47
89
|
border-radius: 12px;
|
|
48
90
|
padding: 0 8px;
|
|
@@ -54,7 +96,7 @@
|
|
|
54
96
|
margin-left: 4px;
|
|
55
97
|
}
|
|
56
98
|
|
|
57
|
-
.titaui-dynamic-
|
|
99
|
+
.titaui-dynamic-task-progress__table-row-title-worktime {
|
|
58
100
|
display: inline-flex;
|
|
59
101
|
margin-left: 4px;
|
|
60
102
|
height: 20px;
|
|
@@ -66,64 +108,64 @@
|
|
|
66
108
|
line-height: 18px;
|
|
67
109
|
}
|
|
68
110
|
|
|
69
|
-
.titaui-dynamic-
|
|
111
|
+
.titaui-dynamic-task-progress__table-row-title-icon {
|
|
70
112
|
margin-right: 4px;
|
|
71
113
|
vertical-align: middle;
|
|
72
114
|
}
|
|
73
115
|
|
|
74
|
-
.titaui-dynamic-
|
|
116
|
+
.titaui-dynamic-task-progress__table-row-title-text {
|
|
75
117
|
font-size: 14px;
|
|
76
118
|
font-weight: 600;
|
|
77
119
|
color: #141c28;
|
|
78
120
|
line-height: 22px;
|
|
79
121
|
}
|
|
80
122
|
|
|
81
|
-
.titaui-dynamic-
|
|
123
|
+
.titaui-dynamic-task-progress__table-row-title-text:hover {
|
|
82
124
|
cursor: pointer;
|
|
83
125
|
color: #2879ff;
|
|
84
126
|
}
|
|
85
127
|
|
|
86
|
-
.titaui-dynamic-
|
|
128
|
+
.titaui-dynamic-task-progress__table table {
|
|
87
129
|
width: 100%;
|
|
88
130
|
}
|
|
89
131
|
|
|
90
|
-
.titaui-dynamic-
|
|
132
|
+
.titaui-dynamic-task-progress__table table thead {
|
|
91
133
|
width: 100%;
|
|
92
134
|
}
|
|
93
135
|
|
|
94
|
-
.titaui-dynamic-
|
|
136
|
+
.titaui-dynamic-task-progress__table table tbody {
|
|
95
137
|
width: 100%;
|
|
96
138
|
}
|
|
97
139
|
|
|
98
|
-
.titaui-dynamic-
|
|
140
|
+
.titaui-dynamic-task-progress__table table tbody tr {
|
|
99
141
|
border-bottom: 1px solid #dfe3ea;
|
|
100
142
|
}
|
|
101
143
|
|
|
102
|
-
.titaui-dynamic-
|
|
144
|
+
.titaui-dynamic-task-progress__table table tbody tr:last-child {
|
|
103
145
|
border-bottom: unset;
|
|
104
146
|
}
|
|
105
147
|
|
|
106
|
-
.titaui-dynamic-
|
|
148
|
+
.titaui-dynamic-task-progress__table table tbody tr td {
|
|
107
149
|
box-sizing: border-box;
|
|
108
150
|
padding: 0 12px;
|
|
109
151
|
border-right: 1px solid #dfe3ea;
|
|
110
152
|
}
|
|
111
153
|
|
|
112
|
-
.titaui-dynamic-
|
|
154
|
+
.titaui-dynamic-task-progress__table table tbody tr td:first-child {
|
|
113
155
|
overflow: hidden;
|
|
114
156
|
width: 282px;
|
|
115
157
|
max-width: 282px;
|
|
116
158
|
}
|
|
117
159
|
|
|
118
|
-
.titaui-dynamic-
|
|
160
|
+
.titaui-dynamic-task-progress__table table tbody tr td:last-child {
|
|
119
161
|
border-right: unset;
|
|
120
162
|
}
|
|
121
163
|
|
|
122
|
-
.titaui-dynamic-
|
|
164
|
+
.titaui-dynamic-task-progress__table table tbody tr td:nth-child(2) {
|
|
123
165
|
padding: 0;
|
|
124
166
|
}
|
|
125
167
|
|
|
126
|
-
.titaui-dynamic-
|
|
168
|
+
.titaui-dynamic-task-progress__table-title {
|
|
127
169
|
height: 40px;
|
|
128
170
|
background: #f0f4fa;
|
|
129
171
|
font-size: 13px;
|
|
@@ -131,44 +173,48 @@
|
|
|
131
173
|
line-height: 18px;
|
|
132
174
|
}
|
|
133
175
|
|
|
134
|
-
.titaui-dynamic-
|
|
176
|
+
.titaui-dynamic-task-progress__table-title td {
|
|
135
177
|
text-align: center;
|
|
136
178
|
padding: 0 12px;
|
|
137
179
|
box-sizing: border-box;
|
|
138
180
|
border-right: 1px solid #dfe3ea;
|
|
139
181
|
}
|
|
140
182
|
|
|
141
|
-
.titaui-dynamic-
|
|
183
|
+
.titaui-dynamic-task-progress__table-title td:last-child {
|
|
142
184
|
border-right: none;
|
|
143
185
|
}
|
|
144
186
|
|
|
145
|
-
.titaui-dynamic-
|
|
187
|
+
.titaui-dynamic-task-progress__table-title-okrs {
|
|
146
188
|
overflow: hidden;
|
|
147
189
|
border-top-left-radius: 12px;
|
|
148
190
|
width: 282px;
|
|
149
191
|
}
|
|
150
192
|
|
|
151
|
-
.titaui-dynamic-
|
|
193
|
+
.titaui-dynamic-task-progress__table-title-progress {
|
|
152
194
|
width: 102px;
|
|
153
195
|
}
|
|
154
196
|
|
|
155
|
-
.titaui-dynamic-
|
|
197
|
+
.titaui-dynamic-task-progress__table-title-progress-desc {
|
|
156
198
|
overflow: hidden;
|
|
157
199
|
border-top-right-radius: 12px;
|
|
158
200
|
}
|
|
159
201
|
|
|
160
|
-
.titaui-dynamic-
|
|
202
|
+
.titaui-dynamic-task-progress__table-title-progress-desc-icon {
|
|
161
203
|
font-size: 14px;
|
|
162
204
|
margin-left: 4px;
|
|
163
205
|
vertical-align: text-top;
|
|
164
206
|
}
|
|
165
207
|
|
|
166
|
-
.titaui-dynamic-
|
|
208
|
+
.titaui-dynamic-task-progress__statistic {
|
|
167
209
|
display: flex;
|
|
168
210
|
margin-top: 12px;
|
|
169
211
|
}
|
|
170
212
|
|
|
171
|
-
.titaui-dynamic-
|
|
213
|
+
.titaui-dynamic-task-progress__statistic--hide {
|
|
214
|
+
display: none;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.titaui-dynamic-task-progress__statistic-item {
|
|
172
218
|
flex: 1;
|
|
173
219
|
height: 48px;
|
|
174
220
|
max-width: 349px;
|
|
@@ -187,24 +233,24 @@
|
|
|
187
233
|
cursor: pointer;
|
|
188
234
|
}
|
|
189
235
|
|
|
190
|
-
.titaui-dynamic-
|
|
236
|
+
.titaui-dynamic-task-progress__statistic-item:last-child {
|
|
191
237
|
margin-right: 0;
|
|
192
238
|
}
|
|
193
239
|
|
|
194
|
-
.titaui-dynamic-
|
|
240
|
+
.titaui-dynamic-task-progress__statistic-item--finished {
|
|
195
241
|
background: rgba(0, 214, 133, 0.1);
|
|
196
242
|
}
|
|
197
243
|
|
|
198
|
-
.titaui-dynamic-
|
|
244
|
+
.titaui-dynamic-task-progress__statistic-item--finished-text {
|
|
199
245
|
color: #00d685;
|
|
200
246
|
font-size: 16px;
|
|
201
247
|
}
|
|
202
248
|
|
|
203
|
-
.titaui-dynamic-
|
|
249
|
+
.titaui-dynamic-task-progress__statistic-item--finished-active {
|
|
204
250
|
background: rgba(0, 214, 133, 0.3);
|
|
205
251
|
}
|
|
206
252
|
|
|
207
|
-
.titaui-dynamic-
|
|
253
|
+
.titaui-dynamic-task-progress__statistic-item--finished-active::before {
|
|
208
254
|
content: "";
|
|
209
255
|
position: absolute;
|
|
210
256
|
top: 0;
|
|
@@ -215,20 +261,20 @@
|
|
|
215
261
|
border-radius: 12px 0 0 12px;
|
|
216
262
|
}
|
|
217
263
|
|
|
218
|
-
.titaui-dynamic-
|
|
264
|
+
.titaui-dynamic-task-progress__statistic-item--processing {
|
|
219
265
|
background: rgba(40, 121, 255, 0.1);
|
|
220
266
|
}
|
|
221
267
|
|
|
222
|
-
.titaui-dynamic-
|
|
268
|
+
.titaui-dynamic-task-progress__statistic-item--processing-text {
|
|
223
269
|
color: #2879ff;
|
|
224
270
|
font-size: 16px;
|
|
225
271
|
}
|
|
226
272
|
|
|
227
|
-
.titaui-dynamic-
|
|
273
|
+
.titaui-dynamic-task-progress__statistic-item--processing-active {
|
|
228
274
|
background: rgba(40, 121, 255, 0.3);
|
|
229
275
|
}
|
|
230
276
|
|
|
231
|
-
.titaui-dynamic-
|
|
277
|
+
.titaui-dynamic-task-progress__statistic-item--processing-active::before {
|
|
232
278
|
content: "";
|
|
233
279
|
position: absolute;
|
|
234
280
|
top: 0;
|
|
@@ -239,20 +285,20 @@
|
|
|
239
285
|
border-radius: 12px 0 0 12px;
|
|
240
286
|
}
|
|
241
287
|
|
|
242
|
-
.titaui-dynamic-
|
|
288
|
+
.titaui-dynamic-task-progress__statistic-item--overdue {
|
|
243
289
|
background: rgba(240, 94, 94, 0.1);
|
|
244
290
|
}
|
|
245
291
|
|
|
246
|
-
.titaui-dynamic-
|
|
292
|
+
.titaui-dynamic-task-progress__statistic-item--overdue-text {
|
|
247
293
|
color: #f05e5e;
|
|
248
294
|
font-size: 16px;
|
|
249
295
|
}
|
|
250
296
|
|
|
251
|
-
.titaui-dynamic-
|
|
297
|
+
.titaui-dynamic-task-progress__statistic-item--overdue-active {
|
|
252
298
|
background: rgba(240, 94, 94, 0.3);
|
|
253
299
|
}
|
|
254
300
|
|
|
255
|
-
.titaui-dynamic-
|
|
301
|
+
.titaui-dynamic-task-progress__statistic-item--overdue-active::before {
|
|
256
302
|
content: "";
|
|
257
303
|
position: absolute;
|
|
258
304
|
top: 0;
|
|
@@ -43,7 +43,7 @@ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Sy
|
|
|
43
43
|
|
|
44
44
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
45
45
|
|
|
46
|
-
var prefix = 'titaui-dynamic-
|
|
46
|
+
var prefix = 'titaui-dynamic-task-progress';
|
|
47
47
|
|
|
48
48
|
var TaskProgress = function TaskProgress(_ref) {
|
|
49
49
|
var data = _ref.data,
|
|
@@ -68,6 +68,15 @@ var TaskProgress = function TaskProgress(_ref) {
|
|
|
68
68
|
activeId = _useState6[0],
|
|
69
69
|
setActiveId = _useState6[1];
|
|
70
70
|
|
|
71
|
+
var _useState7 = (0, _react.useState)(true),
|
|
72
|
+
_useState8 = _slicedToArray(_useState7, 2),
|
|
73
|
+
tableVisible = _useState8[0],
|
|
74
|
+
setTableVisible = _useState8[1];
|
|
75
|
+
|
|
76
|
+
var handleClickToHideTable = function handleClickToHideTable() {
|
|
77
|
+
setTableVisible(!tableVisible);
|
|
78
|
+
};
|
|
79
|
+
|
|
71
80
|
var handleFilterDone = function handleFilterDone() {
|
|
72
81
|
setActiveId(1);
|
|
73
82
|
};
|
|
@@ -82,14 +91,14 @@ var TaskProgress = function TaskProgress(_ref) {
|
|
|
82
91
|
|
|
83
92
|
var renderTitle = (0, _react.useMemo)(function () {
|
|
84
93
|
if (reportType === _interface.EReportType.Daily) {
|
|
85
|
-
return (0, _getLocale.getLocale)(
|
|
94
|
+
return (0, _getLocale.getLocale)('Rep_NewS_Toworkasks');
|
|
86
95
|
} else if (reportType === _interface.EReportType.Weekly) {
|
|
87
|
-
return (0, _getLocale.getLocale)(
|
|
96
|
+
return (0, _getLocale.getLocale)('Rep_NewS_Thisetasks');
|
|
88
97
|
} else if (reportType === _interface.EReportType.Month) {
|
|
89
|
-
return (0, _getLocale.getLocale)(
|
|
98
|
+
return (0, _getLocale.getLocale)('Rep_NewS_Taskormonth');
|
|
90
99
|
}
|
|
91
100
|
|
|
92
|
-
return
|
|
101
|
+
return '';
|
|
93
102
|
}, [reportType]);
|
|
94
103
|
var renderTable = (0, _react.useMemo)(function () {
|
|
95
104
|
return /*#__PURE__*/_react["default"].createElement("table", null, /*#__PURE__*/_react["default"].createElement("thead", null, /*#__PURE__*/_react["default"].createElement("tr", {
|
|
@@ -153,8 +162,13 @@ var TaskProgress = function TaskProgress(_ref) {
|
|
|
153
162
|
className: prefix
|
|
154
163
|
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
155
164
|
className: "".concat(prefix, "__title")
|
|
156
|
-
},
|
|
157
|
-
className: "".concat(prefix, "
|
|
165
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
166
|
+
className: (0, _classnames["default"])("".concat(prefix, "__title-arrow"), _defineProperty({}, "".concat(prefix, "__title-arrow--show"), !tableVisible)),
|
|
167
|
+
onClick: handleClickToHideTable
|
|
168
|
+
}, /*#__PURE__*/_react["default"].createElement("i", {
|
|
169
|
+
className: (0, _classnames["default"])('tu-icon-caret-down', "".concat(prefix, "__title-arrow-icon"), _defineProperty({}, "".concat(prefix, "__title-arrow-icon--rotate"), !tableVisible))
|
|
170
|
+
})), renderTitle), statusStatistic.done + statusStatistic.doing + statusStatistic.overDue > 0 && /*#__PURE__*/_react["default"].createElement("div", {
|
|
171
|
+
className: (0, _classnames["default"])("".concat(prefix, "__statistic"), _defineProperty({}, "".concat(prefix, "__statistic--hide"), !tableVisible))
|
|
158
172
|
}, statusStatistic.done > 0 && /*#__PURE__*/_react["default"].createElement("span", {
|
|
159
173
|
onClick: handleFilterDone,
|
|
160
174
|
className: (0, _classnames["default"])("".concat(prefix, "__statistic-item ").concat(prefix, "__statistic-item--finished"), _defineProperty({}, "".concat(prefix, "__statistic-item--finished-active"), activeId === 1))
|
|
@@ -171,7 +185,7 @@ var TaskProgress = function TaskProgress(_ref) {
|
|
|
171
185
|
}, (0, _getLocale.getLocale)('OKR_MyO_E_Overdue'), /*#__PURE__*/_react["default"].createElement("span", {
|
|
172
186
|
className: "".concat(prefix, "__statistic-item--overdue-text")
|
|
173
187
|
}, statusStatistic.overDue))), (tableData[1].length > 0 || tableData[2].length > 0 || tableData[3].length > 0) && /*#__PURE__*/_react["default"].createElement("div", {
|
|
174
|
-
className: "".concat(prefix, "__table")
|
|
188
|
+
className: (0, _classnames["default"])("".concat(prefix, "__table"), _defineProperty({}, "".concat(prefix, "__table--hide"), !tableVisible))
|
|
175
189
|
}, renderTable));
|
|
176
190
|
};
|
|
177
191
|
|
|
@@ -11,6 +11,11 @@
|
|
|
11
11
|
box-sizing: border-box;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
.titaui-dynamic-summary__evalute-card:hover .titaui-dynamic-summary__evalute-card__evalute {
|
|
15
|
+
opacity: 1;
|
|
16
|
+
transition: all 0.3s;
|
|
17
|
+
}
|
|
18
|
+
|
|
14
19
|
.titaui-dynamic-summary__evalute-card__head {
|
|
15
20
|
display: inline-flex;
|
|
16
21
|
align-items: center;
|
|
@@ -35,6 +40,12 @@
|
|
|
35
40
|
}
|
|
36
41
|
|
|
37
42
|
.titaui-dynamic-summary__evalute-card__head-rate {
|
|
43
|
+
margin-left: 8px;
|
|
44
|
+
display: inline-flex;
|
|
45
|
+
align-items: center;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.titaui-dynamic-summary__evalute-card__head-rate-text {
|
|
38
49
|
margin-left: 4px;
|
|
39
50
|
color: #F0A326;
|
|
40
51
|
}
|
|
@@ -76,6 +87,8 @@
|
|
|
76
87
|
}
|
|
77
88
|
|
|
78
89
|
.titaui-dynamic-summary__evalute-card__evalute {
|
|
90
|
+
opacity: 0;
|
|
91
|
+
transition: all 0.3s;
|
|
79
92
|
position: absolute;
|
|
80
93
|
right: 0;
|
|
81
94
|
top: 8px;
|
|
@@ -165,11 +165,13 @@ var EvaluteCard = function EvaluteCard(props) {
|
|
|
165
165
|
color: (user === null || user === void 0 ? void 0 : user.avatar.color) || ""
|
|
166
166
|
}), /*#__PURE__*/_react["default"].createElement("span", {
|
|
167
167
|
className: "".concat(preCls, "__head-name")
|
|
168
|
-
}, user === null || user === void 0 ? void 0 : user.name), (0, _getLocale.getLocale)("Rep_NewS_EvaluationOF"), type === 1 && /*#__PURE__*/_react["default"].createElement(
|
|
169
|
-
|
|
168
|
+
}, user === null || user === void 0 ? void 0 : user.name), (0, _getLocale.getLocale)("Rep_NewS_EvaluationOF"), type === 1 && /*#__PURE__*/_react["default"].createElement("span", {
|
|
169
|
+
className: "".concat(preCls, "__head-rate")
|
|
170
|
+
}, /*#__PURE__*/_react["default"].createElement(_rate["default"], {
|
|
171
|
+
value: Number(value) / 2,
|
|
170
172
|
disabled: true
|
|
171
173
|
}), /*#__PURE__*/_react["default"].createElement("span", {
|
|
172
|
-
className: "".concat(preCls, "__head-rate")
|
|
174
|
+
className: "".concat(preCls, "__head-rate-text")
|
|
173
175
|
}, "".concat(value).concat((0, _getLocale.getLocale)("Per_Set_Form_Quantifier_Points")))), type === 2 && /*#__PURE__*/_react["default"].createElement("div", {
|
|
174
176
|
className: "".concat(preCls, "__head-medal")
|
|
175
177
|
}, /*#__PURE__*/_react["default"].createElement("img", {
|
|
@@ -30,6 +30,11 @@
|
|
|
30
30
|
height: 44px;
|
|
31
31
|
position: absolute;
|
|
32
32
|
right: 0;
|
|
33
|
+
cursor: pointer;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.titaui-dynamic-new-report-item__content-mind:hover {
|
|
37
|
+
animation: dynamicQuickOperationRubberBand 1s;
|
|
33
38
|
}
|
|
34
39
|
|
|
35
40
|
.titaui-dynamic-new-report-item__upload {
|
|
@@ -99,12 +104,49 @@
|
|
|
99
104
|
|
|
100
105
|
.titaui-dynamic-new-report-item__work {
|
|
101
106
|
padding: 12px 0;
|
|
102
|
-
font-size:
|
|
107
|
+
font-size: 16px;
|
|
103
108
|
font-weight: 600;
|
|
104
109
|
color: #141c28;
|
|
105
|
-
line-height:
|
|
110
|
+
line-height: 24px;
|
|
106
111
|
}
|
|
107
112
|
|
|
108
113
|
.titaui-dynamic-new-report-item__work .tita-rich-editor {
|
|
109
114
|
min-height: auto;
|
|
110
115
|
}
|
|
116
|
+
|
|
117
|
+
@keyframes dynamicQuickOperationRubberBand {
|
|
118
|
+
0% {
|
|
119
|
+
-webkit-transform: scaleX(1);
|
|
120
|
+
transform: scaleX(1);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
30% {
|
|
124
|
+
-webkit-transform: scale3d(1.25, 0.75, 1);
|
|
125
|
+
transform: scale3d(1.25, 0.75, 1);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
40% {
|
|
129
|
+
-webkit-transform: scale3d(0.75, 1.25, 1);
|
|
130
|
+
transform: scale3d(0.75, 1.25, 1);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
50% {
|
|
134
|
+
-webkit-transform: scale3d(1.15, 0.85, 1);
|
|
135
|
+
transform: scale3d(1.15, 0.85, 1);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
65% {
|
|
139
|
+
-webkit-transform: scale3d(0.95, 1.05, 1);
|
|
140
|
+
transform: scale3d(0.95, 1.05, 1);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
75% {
|
|
144
|
+
-webkit-transform: scale3d(1.05, 0.95, 1);
|
|
145
|
+
transform: scale3d(1.05, 0.95, 1);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
to {
|
|
149
|
+
-webkit-transform: scaleX(1);
|
|
150
|
+
transform: scaleX(1);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
@@ -39,9 +39,11 @@ var _constant = require("./constant");
|
|
|
39
39
|
|
|
40
40
|
var _util = require("./util");
|
|
41
41
|
|
|
42
|
+
var _bsGlobal = require("../../../../utils/bs-global");
|
|
43
|
+
|
|
42
44
|
require("./index.css");
|
|
43
45
|
|
|
44
|
-
var _excluded = ["data"
|
|
46
|
+
var _excluded = ["data"];
|
|
45
47
|
|
|
46
48
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
47
49
|
|
|
@@ -79,11 +81,10 @@ var getEReportType = function getEReportType(type) {
|
|
|
79
81
|
};
|
|
80
82
|
|
|
81
83
|
var prefix = "titaui-dynamic-new-report-item";
|
|
84
|
+
var loginUserId = (0, _bsGlobal.getUserInfo)().Id;
|
|
82
85
|
|
|
83
86
|
var DynamicReply = function DynamicReply(_ref) {
|
|
84
87
|
var data = _ref.data,
|
|
85
|
-
_ref$showDelete = _ref.showDelete,
|
|
86
|
-
showDelete = _ref$showDelete === void 0 ? false : _ref$showDelete,
|
|
87
88
|
restProps = _objectWithoutProperties(_ref, _excluded);
|
|
88
89
|
|
|
89
90
|
var feedId = data.feedId,
|
|
@@ -102,16 +103,26 @@ var DynamicReply = function DynamicReply(_ref) {
|
|
|
102
103
|
motionValue = _useState2[0],
|
|
103
104
|
setMotionValue = _useState2[1];
|
|
104
105
|
|
|
106
|
+
var _useState3 = (0, _react.useState)(false),
|
|
107
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
108
|
+
showDelete = _useState4[0],
|
|
109
|
+
setShowDelete = _useState4[1];
|
|
110
|
+
|
|
111
|
+
var _useState5 = (0, _react.useState)(false),
|
|
112
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
113
|
+
showEdit = _useState6[0],
|
|
114
|
+
setShowEdit = _useState6[1];
|
|
115
|
+
|
|
105
116
|
var contentRichTextRef = (0, _react.useRef)();
|
|
106
117
|
var workPlanRichTextRef = (0, _react.useRef)();
|
|
107
118
|
|
|
108
119
|
var _useContext = (0, _react.useContext)(_context.SearchKeyContext),
|
|
109
120
|
searchKeyWord = _useContext.searchKeyWord;
|
|
110
121
|
|
|
111
|
-
var
|
|
112
|
-
|
|
113
|
-
currentEvalutes =
|
|
114
|
-
setCurrentEvalutes =
|
|
122
|
+
var _useState7 = (0, _react.useState)(evaluates || []),
|
|
123
|
+
_useState8 = _slicedToArray(_useState7, 2),
|
|
124
|
+
currentEvalutes = _useState8[0],
|
|
125
|
+
setCurrentEvalutes = _useState8[1];
|
|
115
126
|
|
|
116
127
|
var renderSuffix = (0, _react.useMemo)(function () {
|
|
117
128
|
var _classNames;
|
|
@@ -159,6 +170,12 @@ var DynamicReply = function DynamicReply(_ref) {
|
|
|
159
170
|
setMotionValue(motion);
|
|
160
171
|
}
|
|
161
172
|
}, [dailyContent]);
|
|
173
|
+
(0, _react.useEffect)(function () {
|
|
174
|
+
if (loginUserId === publishUser.userId) {
|
|
175
|
+
setShowDelete(true);
|
|
176
|
+
setShowEdit(true);
|
|
177
|
+
}
|
|
178
|
+
}, []);
|
|
162
179
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
163
180
|
className: prefix
|
|
164
181
|
}, /*#__PURE__*/_react["default"].createElement(_summaryHeader["default"], _extends({
|
|
@@ -168,6 +185,7 @@ var DynamicReply = function DynamicReply(_ref) {
|
|
|
168
185
|
user: publishUser,
|
|
169
186
|
suffixContent: renderSuffix,
|
|
170
187
|
showDelete: showDelete,
|
|
188
|
+
showEdit: showEdit,
|
|
171
189
|
canEvaluate: canEvaluate && !currentEvalutes,
|
|
172
190
|
setEvaluates: setCurrentEvalutes
|
|
173
191
|
})), /*#__PURE__*/_react["default"].createElement("div", {
|
|
@@ -48,7 +48,7 @@ var getTypeContent = function getTypeContent(data, initType) {
|
|
|
48
48
|
};
|
|
49
49
|
|
|
50
50
|
var isEmptyImage = function isEmptyImage(richText) {
|
|
51
|
-
if (!richText) return;
|
|
51
|
+
if (!richText) return true;
|
|
52
52
|
richText = JSON.parse(richText || '{}');
|
|
53
53
|
var _richText = richText,
|
|
54
54
|
doc = _richText.doc;
|