@titaui/pc 1.16.6 → 1.16.7
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/button/index.js +5 -4
- package/lib/components/change-okr-modal/Filter.js +69 -65
- package/lib/components/create-okr-modal/createCycle.js +6 -1
- package/lib/components/edit-kr-wight/EditKrWightModal.js +28 -21
- package/lib/components/okr-excel-create/components/kr-confidence/index.css +18 -0
- package/lib/components/okr-excel-create/components/kr-confidence/index.js +61 -0
- package/lib/components/okr-excel-create/components/kr-weight/index.css +10 -0
- package/lib/components/okr-excel-create/components/kr-weight/index.js +114 -0
- package/lib/components/okr-excel-create/components/okr-align/index.css +49 -0
- package/lib/components/okr-excel-create/components/okr-align/index.js +139 -0
- package/lib/components/okr-excel-create/components/okr-classify/index.css +74 -0
- package/lib/components/okr-excel-create/components/okr-classify/index.js +117 -0
- package/lib/components/okr-excel-create/components/okr-cycle/index.css +40 -0
- package/lib/components/okr-excel-create/components/okr-cycle/index.js +85 -0
- package/lib/components/okr-excel-create/components/okr-name/index.css +48 -0
- package/lib/components/okr-excel-create/components/okr-name/index.js +116 -0
- package/lib/components/okr-excel-create/components/okr-principal/index.css +17 -0
- package/lib/components/okr-excel-create/components/okr-principal/index.js +107 -0
- package/lib/components/okr-excel-create/components/okr-progress/components/kr-progress/index.css +13 -0
- package/lib/components/okr-excel-create/components/okr-progress/components/kr-progress/index.js +46 -0
- package/lib/components/okr-excel-create/components/okr-progress/components/o-progress/index.css +13 -0
- package/lib/components/okr-excel-create/components/okr-progress/components/o-progress/index.js +47 -0
- package/lib/components/okr-excel-create/components/okr-progress/components/okr-progress/index.css +196 -0
- package/lib/components/okr-excel-create/components/okr-progress/components/okr-progress/index.js +319 -0
- package/lib/components/okr-excel-create/components/okr-progress/components/okr-progress/request-api.js +20 -0
- package/lib/components/okr-excel-create/components/okr-progress/components/okr-progress/util.js +134 -0
- package/lib/components/okr-excel-create/components/okr-progress/index.css +25 -0
- package/lib/components/okr-excel-create/components/okr-progress/index.js +90 -0
- package/lib/components/okr-excel-create/components/okr-progress/interface.js +5 -0
- package/lib/components/okr-excel-create/components/okr-type/base-okr-type/confirm/buttonv2.js +108 -0
- package/lib/components/okr-excel-create/components/okr-type/base-okr-type/confirm/confirm.js +166 -0
- package/lib/components/okr-excel-create/components/okr-type/base-okr-type/index.css +20 -0
- package/lib/components/okr-excel-create/components/okr-type/base-okr-type/index.js +76 -0
- package/lib/components/okr-excel-create/components/okr-type/base-okr-type/object-type.js +275 -0
- package/lib/components/okr-excel-create/components/okr-type/index.css +30 -0
- package/lib/components/okr-excel-create/components/okr-type/index.js +196 -0
- package/lib/components/okr-excel-create/components/okr-visibility/index.css +53 -0
- package/lib/components/okr-excel-create/components/okr-visibility/index.js +236 -0
- package/lib/components/okr-excel-create/components-new/kr-confidence/index.css +17 -0
- package/lib/components/okr-excel-create/components-new/kr-confidence/index.js +75 -0
- package/lib/components/okr-excel-create/components-new/kr-weight/index.css +25 -0
- package/lib/components/okr-excel-create/components-new/kr-weight/index.js +233 -0
- package/lib/components/okr-excel-create/components-new/okr-align/index.css +52 -0
- package/lib/components/okr-excel-create/components-new/okr-align/index.js +170 -0
- package/lib/components/okr-excel-create/components-new/okr-classify/index.css +74 -0
- package/lib/components/okr-excel-create/components-new/okr-classify/index.js +126 -0
- package/lib/components/okr-excel-create/components-new/okr-cycle/index.css +48 -0
- package/lib/components/okr-excel-create/components-new/okr-cycle/index.js +80 -0
- package/lib/components/okr-excel-create/components-new/okr-name/index.css +93 -0
- package/lib/components/okr-excel-create/components-new/okr-name/index.js +222 -0
- package/lib/components/okr-excel-create/components-new/okr-principal/index.css +17 -0
- package/lib/components/okr-excel-create/components-new/okr-principal/index.js +116 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/components/kr-progress/index.css +13 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/components/kr-progress/index.js +46 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/components/o-progress/index.css +13 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/components/o-progress/index.js +47 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/components/okr-progress/index.css +196 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/components/okr-progress/index.js +319 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/components/okr-progress/request-api.js +20 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/components/okr-progress/util.js +134 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/index.css +25 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/index.js +90 -0
- package/lib/components/okr-excel-create/components-new/okr-progress/interface.js +5 -0
- package/lib/components/okr-excel-create/components-new/okr-type/base-okr-type/confirm/buttonv2.js +108 -0
- package/lib/components/okr-excel-create/components-new/okr-type/base-okr-type/confirm/confirm.js +166 -0
- package/lib/components/okr-excel-create/components-new/okr-type/base-okr-type/index.css +20 -0
- package/lib/components/okr-excel-create/components-new/okr-type/base-okr-type/index.js +76 -0
- package/lib/components/okr-excel-create/components-new/okr-type/base-okr-type/object-type.js +275 -0
- package/lib/components/okr-excel-create/components-new/okr-type/index.css +30 -0
- package/lib/components/okr-excel-create/components-new/okr-type/index.js +205 -0
- package/lib/components/okr-excel-create/components-new/okr-visibility/index.css +53 -0
- package/lib/components/okr-excel-create/components-new/okr-visibility/index.js +252 -0
- package/lib/components/okr-excel-create/constant.js +14 -0
- package/lib/components/okr-excel-create/hooks.js +314 -0
- package/lib/components/okr-excel-create/img/base-info-add.svg +19 -0
- package/lib/components/okr-excel-create/img/desire.svg +61 -0
- package/lib/components/okr-excel-create/img/promise.svg +61 -0
- package/lib/components/okr-excel-create/index-old.js +258 -0
- package/lib/components/okr-excel-create/index.css +73 -0
- package/lib/components/okr-excel-create/index.js +357 -0
- package/lib/components/okr-excel-create/mock.js +169 -0
- package/lib/components/okr-excel-create/setting.js +24 -0
- package/lib/components/okr-excel-create/type.js +5 -0
- package/lib/components/okr-excel-create/utils.js +190 -0
- package/lib/components/okr-guide/index.css +15 -17
- package/lib/components/okr-guide/index.js +3 -1
- package/lib/components/okr-review/ReviewPop/components/ReviewBody/index.js +10 -6
- package/lib/components/operation-records/OperationRecordItem.js +7 -3
- package/lib/components/popup-select/index.css +10 -0
- package/lib/components/popup-select/index.js +8 -2
- package/lib/components/table-excel-v2/index.css +93 -0
- package/lib/components/table-excel-v2/index.js +505 -0
- package/lib/components/table-excel-v2/utils.js +22 -0
- package/lib/index.js +8 -0
- package/lib/pages/new-okr-list/header/index.js +100 -14
- package/lib/pages/new-okr-list/header/operate-record.js +7 -49
- package/lib/utils/array.js +26 -0
- package/package.json +1 -1
package/lib/components/okr-excel-create/components-new/okr-progress/components/okr-progress/util.js
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.transProgress = exports.getOptions = exports.getOSetting = exports.getKrSetting = exports.getKrOptions = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _util = require("../../../../util");
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
+
|
|
14
|
+
var getOSetting = function getOSetting() {
|
|
15
|
+
return {
|
|
16
|
+
settingTitle: (0, _util.getLocale)("OKR_MyO_Pop_Upd_Setmatically"),
|
|
17
|
+
switchLabel: (0, _util.getLocale)("OKR_MyO_Pop_Upd_Setmatically"),
|
|
18
|
+
options: [{
|
|
19
|
+
label: (0, _util.getLocale)("OKR_MyO_Pop_Upd_Autup"),
|
|
20
|
+
key: 1,
|
|
21
|
+
tooltip: (0, _util.getLocale)("OKR_MyO_Pop_Upd_KRCompletion")
|
|
22
|
+
}, {
|
|
23
|
+
label: (0, _util.getLocale)("OKR_MyO_Pop_Upd_Autcom"),
|
|
24
|
+
key: 2,
|
|
25
|
+
tooltip: (0, _util.getLocale)("OKR_MyO_Pop_Upd_SubO")
|
|
26
|
+
}],
|
|
27
|
+
getRecommandText: function getRecommandText() {
|
|
28
|
+
var autoUpdate = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
|
|
29
|
+
var updateWay = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1;
|
|
30
|
+
var recommandProgressObj = arguments.length > 2 ? arguments[2] : undefined;
|
|
31
|
+
|
|
32
|
+
if (autoUpdate) {
|
|
33
|
+
if (updateWay == 1) return (0, _util.getLocale)("OKR_MyO_Pop_Upd_Automatic");
|
|
34
|
+
if (updateWay == 2) return (0, _util.getLocale)("OKR_MyO_calculationSubO");
|
|
35
|
+
} else {
|
|
36
|
+
var childOkrProgress = recommandProgressObj.childOkrProgress,
|
|
37
|
+
childkrProgress = recommandProgressObj.childkrProgress;
|
|
38
|
+
var textArr = [];
|
|
39
|
+
childkrProgress !== -1 && textArr.push("KR\u5B8C\u6210\u5EA6".concat(childkrProgress || 0, "%"));
|
|
40
|
+
childOkrProgress !== -1 && textArr.push("".concat((0, _util.getLocale)("OKR_MyO_Ew_SubobjCom")).concat(childOkrProgress || 0, "%"));
|
|
41
|
+
if (textArr.length == 0) return "";
|
|
42
|
+
return (0, _util.getLocale)("Per_Ass_Pop_title_Recommend") + textArr.join(",");
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
exports.getOSetting = getOSetting;
|
|
49
|
+
|
|
50
|
+
var getKrSetting = function getKrSetting() {
|
|
51
|
+
return {
|
|
52
|
+
settingTitle: (0, _util.getLocale)("OKR_MyO_KRCompletion"),
|
|
53
|
+
switchLabel: (0, _util.getLocale)("OKR_MyO_SetKRcompletion"),
|
|
54
|
+
options: [{
|
|
55
|
+
label: (0, _util.getLocale)("OKR_MyO_Updatetask"),
|
|
56
|
+
key: 1,
|
|
57
|
+
tooltip: (0, _util.getLocale)("OKR_MyO_AeKRcompletionde")
|
|
58
|
+
}, {
|
|
59
|
+
label: (0, _util.getLocale)("OKR_MyO_Pop_Upd_Autcom"),
|
|
60
|
+
key: 2,
|
|
61
|
+
tooltip: (0, _util.getLocale)("OKR_MyO_KRcompletionde")
|
|
62
|
+
}],
|
|
63
|
+
getRecommandText: function getRecommandText() {
|
|
64
|
+
var autoUpdate = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
|
|
65
|
+
var updateWay = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1;
|
|
66
|
+
var recommandProgressObj = arguments.length > 2 ? arguments[2] : undefined;
|
|
67
|
+
|
|
68
|
+
if (autoUpdate) {
|
|
69
|
+
if (updateWay === 1) return (0, _util.getLocale)("OKR_MyO_Automatic");
|
|
70
|
+
if (updateWay === 2) return (0, _util.getLocale)("OKR_MyO_calculationSubO");
|
|
71
|
+
return /*#__PURE__*/_react["default"].createElement("span", null);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
var childOkrProgress = recommandProgressObj.childOkrProgress,
|
|
75
|
+
childEProgress = recommandProgressObj.childEProgress;
|
|
76
|
+
var textArr = [];
|
|
77
|
+
|
|
78
|
+
if (childEProgress !== -1) {
|
|
79
|
+
textArr.push("".concat((0, _util.getLocale)("OKR_MyO_Ecompletion")).concat(childEProgress || 0).concat((0, _util.getLocale)("OKR_MyO_Pop_Upd_Percentage")));
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
if (childOkrProgress !== -1) {
|
|
83
|
+
textArr.push("".concat((0, _util.getLocale)("OKR_MyO_Ew_SubobjCom")).concat(childOkrProgress || 0).concat((0, _util.getLocale)("OKR_MyO_Pop_Upd_Percentage")));
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
if (textArr.length === 0) return "";
|
|
87
|
+
return (0, _util.getLocale)("Per_Ass_Pop_title_Recommend") + textArr.join(",");
|
|
88
|
+
}
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
exports.getKrSetting = getKrSetting;
|
|
93
|
+
|
|
94
|
+
var transProgress = function transProgress(progress) {
|
|
95
|
+
return progress === -1 ? 0 : progress;
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
exports.transProgress = transProgress;
|
|
99
|
+
|
|
100
|
+
var getKrOptions = function getKrOptions() {
|
|
101
|
+
return [{
|
|
102
|
+
id: 1,
|
|
103
|
+
color: "#2879ff",
|
|
104
|
+
text: (0, _util.getLocale)("OKR_MyO_Pop_Upd_Notrack")
|
|
105
|
+
}, {
|
|
106
|
+
id: 2,
|
|
107
|
+
color: "#F6BD16",
|
|
108
|
+
text: (0, _util.getLocale)("OKR_MyO_Pop_Upd_Atrisk")
|
|
109
|
+
}, {
|
|
110
|
+
id: 3,
|
|
111
|
+
color: "#F05E5E",
|
|
112
|
+
text: (0, _util.getLocale)("OKR_MyO_Pop_Upd_Postoned")
|
|
113
|
+
}];
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
exports.getKrOptions = getKrOptions;
|
|
117
|
+
|
|
118
|
+
var getOptions = function getOptions() {
|
|
119
|
+
return [{
|
|
120
|
+
id: 6,
|
|
121
|
+
color: "#2879ff",
|
|
122
|
+
text: (0, _util.getLocale)("OKR_MyO_Pop_Upd_Notrack")
|
|
123
|
+
}, {
|
|
124
|
+
id: 2,
|
|
125
|
+
color: "#F6BD16",
|
|
126
|
+
text: (0, _util.getLocale)("OKR_MyO_Pop_Upd_Atrisk")
|
|
127
|
+
}, {
|
|
128
|
+
id: 3,
|
|
129
|
+
color: "#F05E5E",
|
|
130
|
+
text: (0, _util.getLocale)("OKR_MyO_Pop_Upd_Postoned")
|
|
131
|
+
}];
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
exports.getOptions = getOptions;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
.tita-okr-excel-progress {
|
|
2
|
+
width: 96px;
|
|
3
|
+
height: 34px;
|
|
4
|
+
position: relative;
|
|
5
|
+
margin: 0 auto;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.tita-okr-excel-progress__bg {
|
|
9
|
+
position: absolute;
|
|
10
|
+
height: 34px;
|
|
11
|
+
top: 0;
|
|
12
|
+
z-index: 1;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.tita-okr-excel-progress__bg--normal {
|
|
16
|
+
background: rgba(40, 121, 255, 0.3);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.tita-okr-excel-progress__bg--risk {
|
|
20
|
+
background: rgba(240, 94, 94, 0.3);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.tita-okr-excel-progress__bg--delay {
|
|
24
|
+
background: rgba(240, 163, 38, 0.3);
|
|
25
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
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
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
13
|
+
|
|
14
|
+
var _oProgress = _interopRequireDefault(require("./components/o-progress"));
|
|
15
|
+
|
|
16
|
+
var _krProgress = _interopRequireDefault(require("./components/kr-progress"));
|
|
17
|
+
|
|
18
|
+
require("./index.css");
|
|
19
|
+
|
|
20
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
21
|
+
|
|
22
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
23
|
+
|
|
24
|
+
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; }
|
|
25
|
+
|
|
26
|
+
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; }
|
|
27
|
+
|
|
28
|
+
var prefix = "tita-okr-excel-progress";
|
|
29
|
+
|
|
30
|
+
var Progress = function Progress(_ref) {
|
|
31
|
+
var _classNames;
|
|
32
|
+
|
|
33
|
+
var value = _ref.value,
|
|
34
|
+
status = _ref.status,
|
|
35
|
+
editable = _ref.editable,
|
|
36
|
+
onChange = _ref.onChange,
|
|
37
|
+
_ref$type = _ref.type,
|
|
38
|
+
type = _ref$type === void 0 ? "o" : _ref$type,
|
|
39
|
+
_ref$autoUpdate = _ref.autoUpdate,
|
|
40
|
+
autoUpdate = _ref$autoUpdate === void 0 ? false : _ref$autoUpdate,
|
|
41
|
+
_ref$autoUpdateItem = _ref.autoUpdateItem,
|
|
42
|
+
autoUpdateItem = _ref$autoUpdateItem === void 0 ? 1 : _ref$autoUpdateItem,
|
|
43
|
+
_ref$riskLevel = _ref.riskLevel,
|
|
44
|
+
riskLevel = _ref$riskLevel === void 0 ? 1 : _ref$riskLevel,
|
|
45
|
+
_ref$id = _ref.id,
|
|
46
|
+
id = _ref$id === void 0 ? "" : _ref$id,
|
|
47
|
+
_ref$getPopupContaine = _ref.getPopupContainer,
|
|
48
|
+
getPopupContainer = _ref$getPopupContaine === void 0 ? function () {} : _ref$getPopupContaine;
|
|
49
|
+
var renderContent = (0, _react.useMemo)(function () {
|
|
50
|
+
switch (type) {
|
|
51
|
+
case "o":
|
|
52
|
+
return /*#__PURE__*/_react["default"].createElement(_oProgress["default"], {
|
|
53
|
+
id: id,
|
|
54
|
+
value: value,
|
|
55
|
+
editable: editable,
|
|
56
|
+
onChange: onChange,
|
|
57
|
+
autoUpdate: autoUpdate,
|
|
58
|
+
autoUpdateItem: autoUpdateItem,
|
|
59
|
+
riskLevel: riskLevel,
|
|
60
|
+
getPopupContainer: getPopupContainer
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
case "kr":
|
|
64
|
+
return /*#__PURE__*/_react["default"].createElement(_krProgress["default"], {
|
|
65
|
+
id: id,
|
|
66
|
+
value: value,
|
|
67
|
+
editable: editable,
|
|
68
|
+
onChange: onChange,
|
|
69
|
+
autoUpdate: autoUpdate,
|
|
70
|
+
autoUpdateItem: autoUpdateItem,
|
|
71
|
+
riskLevel: riskLevel,
|
|
72
|
+
getPopupContainer: getPopupContainer
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
default:
|
|
76
|
+
return "";
|
|
77
|
+
}
|
|
78
|
+
}, [value, editable, onChange, type, status, riskLevel]);
|
|
79
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
80
|
+
className: (0, _classnames["default"])(prefix)
|
|
81
|
+
}, renderContent, /*#__PURE__*/_react["default"].createElement("div", {
|
|
82
|
+
className: (0, _classnames["default"])("".concat(prefix, "__bg"), (_classNames = {}, _defineProperty(_classNames, "".concat(prefix, "__bg--normal"), status === "normal"), _defineProperty(_classNames, "".concat(prefix, "__bg--risk"), status === "risk"), _defineProperty(_classNames, "".concat(prefix, "__bg--delay"), status === "delay"), _classNames)),
|
|
83
|
+
style: {
|
|
84
|
+
width: "".concat(value > 100 ? 100 : value, "%")
|
|
85
|
+
}
|
|
86
|
+
}));
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
var _default = Progress;
|
|
90
|
+
exports["default"] = _default;
|
package/lib/components/okr-excel-create/components-new/okr-type/base-okr-type/confirm/buttonv2.js
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
"use strict";
|
|
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
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.Button = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
13
|
+
|
|
14
|
+
var _templateObject, _templateObject2;
|
|
15
|
+
|
|
16
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
17
|
+
|
|
18
|
+
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; }
|
|
19
|
+
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
21
|
+
|
|
22
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
23
|
+
|
|
24
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25
|
+
|
|
26
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
27
|
+
|
|
28
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
29
|
+
|
|
30
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
31
|
+
|
|
32
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
33
|
+
|
|
34
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
35
|
+
|
|
36
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
37
|
+
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
|
+
|
|
40
|
+
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
41
|
+
|
|
42
|
+
var primaryColor = "#2879FF";
|
|
43
|
+
var secondaryColor = "#F0F2F5";
|
|
44
|
+
var CommonStyle = (0, _styledComponents.css)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n /* margin: 0 5px 0 0; */\n font-size: 13px;\n font-family: 'Microsoft YaHei', sans-serif, 'PingFang SC';\n padding: 4px 15px;\n line-height: 24px;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n display: inline-block;\n user-select: none;\n text-align: center;\n letter-spacing: 0.5;\n &:focus {\n outline: none;\n }\n transition: all 300ms ease-in-out;\n"])));
|
|
45
|
+
|
|
46
|
+
var TitaButton = _styledComponents["default"].a.attrs(function (props) {})(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n ", ";\n color: ", ";\n background-color: ", ";\n &:hover {\n color: ", ";\n box-shadow: ", ";\n }\n &:active {\n /* \u70B9\u51FB\u6309\u94AE\u4E4B\u540E\u6709\u4E00\u4E2A\u6548\u679C \u7B80\u5355\u6539 scale \u6709\u70B9\u8089 */\n transform: scale(0.98);\n }\n &[disabled] {\n box-shadow: none;\n color: ", ";\n background: ", ";\n }\n"])), CommonStyle, function (props) {
|
|
47
|
+
return props.type === "primary" ? "#fff" : "#BFC3C7";
|
|
48
|
+
}, function (props) {
|
|
49
|
+
return props.type === "primary" ? primaryColor : secondaryColor;
|
|
50
|
+
}, function (props) {
|
|
51
|
+
return props.type === "primary" ? "#fff" : "#33383D";
|
|
52
|
+
}, function (props) {
|
|
53
|
+
return props.type === "primary" ? " 0 5px 8px 0 #C2E0FF" : "0 5px 8px 0 #E0E0E0";
|
|
54
|
+
}, function (props) {
|
|
55
|
+
return props.disabled && "#BFC3C7";
|
|
56
|
+
}, function (props) {
|
|
57
|
+
return props.disabled && "#F0F2F5";
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
// TODO: 这个组件抽出来只做位最基础的功能用,外面可以套上不同的壳子
|
|
61
|
+
var Button = /*#__PURE__*/function (_Component) {
|
|
62
|
+
_inherits(Button, _Component);
|
|
63
|
+
|
|
64
|
+
var _super = _createSuper(Button);
|
|
65
|
+
|
|
66
|
+
function Button(props) {
|
|
67
|
+
var _this;
|
|
68
|
+
|
|
69
|
+
_classCallCheck(this, Button);
|
|
70
|
+
|
|
71
|
+
_this = _super.call(this, props);
|
|
72
|
+
|
|
73
|
+
_this.handleClick = function (e) {
|
|
74
|
+
var onClick = _this.props.onClick;
|
|
75
|
+
|
|
76
|
+
if (onClick) {
|
|
77
|
+
onClick(e);
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
_this.state = {};
|
|
82
|
+
return _this;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
_createClass(Button, [{
|
|
86
|
+
key: "render",
|
|
87
|
+
value: function render() {
|
|
88
|
+
var _this$props = this.props,
|
|
89
|
+
children = _this$props.children,
|
|
90
|
+
type = _this$props.type,
|
|
91
|
+
floating = _this$props.floating,
|
|
92
|
+
disabled = _this$props.disabled,
|
|
93
|
+
style = _this$props.style;
|
|
94
|
+
return /*#__PURE__*/_react["default"].createElement(TitaButton, {
|
|
95
|
+
className: "tita-button-custom",
|
|
96
|
+
type: type,
|
|
97
|
+
floating: floating,
|
|
98
|
+
style: style,
|
|
99
|
+
disabled: disabled,
|
|
100
|
+
onMouseUp: this.handleClick
|
|
101
|
+
}, children);
|
|
102
|
+
}
|
|
103
|
+
}]);
|
|
104
|
+
|
|
105
|
+
return Button;
|
|
106
|
+
}(_react.Component);
|
|
107
|
+
|
|
108
|
+
exports.Button = Button;
|
package/lib/components/okr-excel-create/components-new/okr-type/base-okr-type/confirm/confirm.js
ADDED
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
"use strict";
|
|
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
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
13
|
+
|
|
14
|
+
var _pop = _interopRequireDefault(require("../../../../../../components-v1/pop"));
|
|
15
|
+
|
|
16
|
+
var _buttonv = require("./buttonv2");
|
|
17
|
+
|
|
18
|
+
var _getLocale = require("../../../../../../utils/getLocale");
|
|
19
|
+
|
|
20
|
+
var _templateObject, _templateObject2;
|
|
21
|
+
|
|
22
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
+
|
|
24
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
25
|
+
|
|
26
|
+
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; }
|
|
27
|
+
|
|
28
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
29
|
+
|
|
30
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
31
|
+
|
|
32
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
33
|
+
|
|
34
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
35
|
+
|
|
36
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
37
|
+
|
|
38
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
39
|
+
|
|
40
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
41
|
+
|
|
42
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
43
|
+
|
|
44
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
45
|
+
|
|
46
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
47
|
+
|
|
48
|
+
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
49
|
+
|
|
50
|
+
var ConfirmWrapper = _styledComponents["default"].div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n /* TODO padding \u53EF\u52A8\u6001\u8C03\u6574 */\n width: 300px;\n // max-height: 100px;\n border-radius: 5px;\n box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);\n padding: 15px 12px;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n background-color: #fff;\n"])));
|
|
51
|
+
|
|
52
|
+
var FooterWrapper = _styledComponents["default"].div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n margin-top: 5px;\n button {\n padding: 2px 12px;\n font-size: 12px;\n }\n"])));
|
|
53
|
+
|
|
54
|
+
var Confirm = /*#__PURE__*/function (_Component) {
|
|
55
|
+
_inherits(Confirm, _Component);
|
|
56
|
+
|
|
57
|
+
var _super = _createSuper(Confirm);
|
|
58
|
+
|
|
59
|
+
function Confirm(props, trigger, pop) {
|
|
60
|
+
var _this;
|
|
61
|
+
|
|
62
|
+
_classCallCheck(this, Confirm);
|
|
63
|
+
|
|
64
|
+
_this = _super.call(this, props);
|
|
65
|
+
_this.trigger = trigger;
|
|
66
|
+
_this.pop = pop;
|
|
67
|
+
|
|
68
|
+
_this.handleShowPop = function () {
|
|
69
|
+
// @ts-ignore
|
|
70
|
+
_this.pop.current.show(_this.trigger.current);
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
_this.handleCancel = function (e) {
|
|
74
|
+
var onCancel = _this.props.onCancel;
|
|
75
|
+
|
|
76
|
+
if (onCancel) {
|
|
77
|
+
onCancel(e);
|
|
78
|
+
|
|
79
|
+
_this.setState({
|
|
80
|
+
visible: false
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
_this.handleOk = function (e) {
|
|
86
|
+
var onOk = _this.props.onOk; // this.xxxx.getData()
|
|
87
|
+
|
|
88
|
+
if (onOk) {
|
|
89
|
+
onOk(e);
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
_this.renderFooter = function () {
|
|
94
|
+
// 默认没有按钮, 支持设置按钮, 暂时不支持 数组类型按钮组
|
|
95
|
+
var footerContent = _this.props.footerContent;
|
|
96
|
+
return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, footerContent || /*#__PURE__*/_react["default"].createElement(FooterWrapper, null, /*#__PURE__*/_react["default"].createElement("div", {
|
|
97
|
+
className: "fr",
|
|
98
|
+
style: {
|
|
99
|
+
"float": 'right'
|
|
100
|
+
}
|
|
101
|
+
}, /*#__PURE__*/_react["default"].createElement(_buttonv.Button, {
|
|
102
|
+
type: "secondary",
|
|
103
|
+
floating: true,
|
|
104
|
+
onClick: _this.handleCancel,
|
|
105
|
+
style: {
|
|
106
|
+
marginRight: 5
|
|
107
|
+
}
|
|
108
|
+
}, (0, _getLocale.getLocale)('Mod_Cancel')), /*#__PURE__*/_react["default"].createElement(_buttonv.Button, {
|
|
109
|
+
type: "primary",
|
|
110
|
+
floating: true,
|
|
111
|
+
onClick: _this.handleOk
|
|
112
|
+
}, (0, _getLocale.getLocale)('OKR_MyO_Butt_Determine')))));
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
_this.hide = function () {
|
|
116
|
+
// @ts-ignore
|
|
117
|
+
_this.pop.current.hide();
|
|
118
|
+
};
|
|
119
|
+
|
|
120
|
+
_this.state = {};
|
|
121
|
+
_this.trigger = /*#__PURE__*/_react["default"].createRef();
|
|
122
|
+
_this.pop = /*#__PURE__*/_react["default"].createRef();
|
|
123
|
+
return _this;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
_createClass(Confirm, [{
|
|
127
|
+
key: "render",
|
|
128
|
+
value: function render() {
|
|
129
|
+
var _this$props = this.props,
|
|
130
|
+
children = _this$props.children,
|
|
131
|
+
className = _this$props.className,
|
|
132
|
+
innerContent = _this$props.innerContent,
|
|
133
|
+
blurToHide = _this$props.blurToHide;
|
|
134
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
135
|
+
className: className,
|
|
136
|
+
style: {
|
|
137
|
+
width: '100%',
|
|
138
|
+
height: '100%'
|
|
139
|
+
},
|
|
140
|
+
onClick: function onClick(e) {
|
|
141
|
+
return e.stopPropagation();
|
|
142
|
+
}
|
|
143
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
144
|
+
ref: this.trigger,
|
|
145
|
+
onMouseDown: this.handleShowPop,
|
|
146
|
+
style: {
|
|
147
|
+
cursor: 'pointer',
|
|
148
|
+
width: '100%',
|
|
149
|
+
height: '100%'
|
|
150
|
+
}
|
|
151
|
+
}, innerContent), /*#__PURE__*/_react["default"].createElement(_pop["default"], {
|
|
152
|
+
ref: this.pop,
|
|
153
|
+
container: document.body,
|
|
154
|
+
align: "bottom left",
|
|
155
|
+
cover: true,
|
|
156
|
+
blurToHide: blurToHide || false
|
|
157
|
+
}, /*#__PURE__*/_react["default"].createElement(ConfirmWrapper, null, /*#__PURE__*/_react["default"].createElement("div", {
|
|
158
|
+
className: "confirm-content"
|
|
159
|
+
}, children), this.renderFooter())));
|
|
160
|
+
}
|
|
161
|
+
}]);
|
|
162
|
+
|
|
163
|
+
return Confirm;
|
|
164
|
+
}(_react.Component);
|
|
165
|
+
|
|
166
|
+
exports["default"] = Confirm;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
|
|
3
|
+
.okr-detail-okrtype__dropdown-content {
|
|
4
|
+
/* 周期选择组件 */
|
|
5
|
+
display: flex;
|
|
6
|
+
align-items: center;
|
|
7
|
+
padding-right: 28px;
|
|
8
|
+
margin-bottom: 10px;
|
|
9
|
+
transition: 300ms;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.okr-detail-okrtype__selector--has-underline {
|
|
13
|
+
border-bottom: 1px solid #e3e6ea;
|
|
14
|
+
justify-content: space-between;
|
|
15
|
+
height: 17px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.confim-radio {
|
|
19
|
+
display: flex;
|
|
20
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
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
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = _default;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _objectType = _interopRequireDefault(require("./object-type"));
|
|
13
|
+
|
|
14
|
+
var _confirm = _interopRequireDefault(require("./confirm/confirm"));
|
|
15
|
+
|
|
16
|
+
require("./index.css");
|
|
17
|
+
|
|
18
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
19
|
+
|
|
20
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
21
|
+
|
|
22
|
+
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; }
|
|
23
|
+
|
|
24
|
+
function _default(_ref) {
|
|
25
|
+
var okrId = _ref.okrId,
|
|
26
|
+
dept = _ref.dept,
|
|
27
|
+
type = _ref.type,
|
|
28
|
+
team = _ref.team,
|
|
29
|
+
renderInnerContent = _ref.renderInnerContent,
|
|
30
|
+
onTypeChange = _ref.onTypeChange;
|
|
31
|
+
var typeRef = (0, _react.useRef)();
|
|
32
|
+
var objTypeRef = (0, _react.useRef)();
|
|
33
|
+
|
|
34
|
+
function objTypeConfirm() {
|
|
35
|
+
// 把值拿出来 放到 project-time 上
|
|
36
|
+
if (!objTypeRef.current) return;
|
|
37
|
+
var data = objTypeRef.current.state;
|
|
38
|
+
var okrType = data.okrType,
|
|
39
|
+
departmentId = data.departmentId,
|
|
40
|
+
departmentName = data.departmentName,
|
|
41
|
+
groupName = data.groupName,
|
|
42
|
+
groupId = data.groupId;
|
|
43
|
+
onTypeChange({
|
|
44
|
+
okrType: okrType,
|
|
45
|
+
departmentName: departmentName,
|
|
46
|
+
departmentId: departmentId,
|
|
47
|
+
groupName: groupName,
|
|
48
|
+
groupId: groupId
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
var onCancelHanderl = function onCancelHanderl() {
|
|
53
|
+
typeRef.current && typeRef.current.hide();
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
var onOkHandler = function onOkHandler() {
|
|
57
|
+
objTypeConfirm();
|
|
58
|
+
typeRef.current && typeRef.current.hide();
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
return /*#__PURE__*/_react["default"].createElement(_confirm["default"], {
|
|
62
|
+
ref: typeRef,
|
|
63
|
+
innerContent: renderInnerContent(),
|
|
64
|
+
onCancel: onCancelHanderl,
|
|
65
|
+
onOk: onOkHandler,
|
|
66
|
+
blurToHide: true
|
|
67
|
+
}, /*#__PURE__*/_react["default"].createElement(_objectType["default"], {
|
|
68
|
+
ref: objTypeRef,
|
|
69
|
+
okrType: type.typeId,
|
|
70
|
+
okrTypeName: type.typeName,
|
|
71
|
+
departmentId: dept.departmentId,
|
|
72
|
+
departmentName: dept.departmentName,
|
|
73
|
+
groupId: team.groupId,
|
|
74
|
+
groupName: team.groupName
|
|
75
|
+
}));
|
|
76
|
+
}
|