@titaui/pc 1.12.99 → 1.13.2-beta.10
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/checkbox-list/index.css +31 -0
- package/lib/components/checkbox-list/index.js +68 -0
- package/lib/components/create-okr-modal/index.js +4 -1
- package/lib/components/dialog-qq-docs/index.css +105 -0
- package/lib/components/dialog-qq-docs/index.js +499 -0
- package/lib/components/dialog-qq-docs/request-apis.js +16 -0
- package/lib/components/dialog-qq-docs/utils.js +83 -0
- package/lib/components/dialog-select/index.css +9 -0
- package/lib/components/dialog-select/index.js +48 -0
- package/lib/components/dialog-upload/img/folder.svg +40 -0
- package/lib/components/dialog-upload/img/form.svg +38 -0
- package/lib/components/dialog-upload/img/mind.svg +39 -0
- package/lib/components/dialog-upload/util.js +19 -1
- package/lib/components/dialog-upload-type/assets/folder.svg +20 -0
- package/lib/components/dialog-upload-type/assets/qq-docs.svg +20 -0
- package/lib/components/dialog-upload-type/components/upload-type-item/index.css +14 -0
- package/lib/components/dialog-upload-type/components/upload-type-item/index.js +36 -0
- package/lib/components/dialog-upload-type/index.css +7 -0
- package/lib/components/dialog-upload-type/index.js +75 -0
- package/lib/components/file-list/components/single-file/index.css +29 -0
- package/lib/components/file-list/components/single-file/index.js +18 -28
- package/lib/components/file-list/index.js +2 -1
- package/lib/components/file-preview/index.css +43 -0
- package/lib/components/file-preview/index.js +68 -0
- package/lib/components/loading/assets/loading.gif +0 -0
- package/lib/components/loading/index.css +28 -0
- package/lib/components/loading/index.js +64 -0
- package/lib/components/nav/index.css +36 -0
- package/lib/components/nav/index.js +31 -0
- package/lib/components/nav-top/components/app-center/index.css +1 -1
- package/lib/components/nav-top/components/menu/index.js +15 -15
- package/lib/components/nav-top/index.css +6 -0
- package/lib/components/nav-top/index.js +157 -6
- package/lib/components/nav-top/request.apis.js +10 -2
- package/lib/components/okr-detail/detail-header/delete-confirm/delete-confirm.js +33 -29
- package/lib/components/okr-guide/constant.js +23 -0
- package/lib/components/okr-guide/img/left-img.png +0 -0
- package/lib/components/okr-guide/index.css +146 -0
- package/lib/components/okr-guide/index.js +244 -0
- package/lib/components/okr-guide/request-api.js +57 -0
- package/lib/components/rich-editor/plugins/inline/color/commond.js +3 -3
- package/lib/components/scroll-container/index.js +27 -6
- package/lib/components/search-input/index.css +2 -2
- package/lib/components/search-input/index.js +4 -0
- package/lib/components/upload/index.js +257 -455
- package/lib/components/upload/upload.js +555 -0
- package/lib/index.js +8 -0
- package/lib/utils/tools.js +11 -1
- package/package.json +1 -1
|
@@ -39,34 +39,38 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
|
39
39
|
|
|
40
40
|
var prefix = "okr-detail-delete-confirm";
|
|
41
41
|
var Radios = _form["default"].Fields.Radios;
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
},
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
},
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
}
|
|
42
|
+
|
|
43
|
+
var radios = function radios() {
|
|
44
|
+
return [{
|
|
45
|
+
label: /*#__PURE__*/_react["default"].createElement("span", {
|
|
46
|
+
className: "".concat(prefix, "__option-text")
|
|
47
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_Text_OdeletionNTask")),
|
|
48
|
+
value: 0
|
|
49
|
+
}, {
|
|
50
|
+
label: /*#__PURE__*/_react["default"].createElement("span", {
|
|
51
|
+
className: "".concat(prefix, "__option-text")
|
|
52
|
+
}, (0, _getLocale.getLocale)("OKR_MyO_Text_OdeletionTask"), /*#__PURE__*/_react["default"].createElement(_tooltip["default"], {
|
|
53
|
+
overlay: (0, _getLocale.getLocale)("Pro_detail_Tasksapproval"),
|
|
54
|
+
placement: "top",
|
|
55
|
+
zIndex: 15000
|
|
56
|
+
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
57
|
+
className: "".concat(prefix, "__icon tu-icon-wiki")
|
|
58
|
+
}))),
|
|
59
|
+
value: 1
|
|
60
|
+
}, {
|
|
61
|
+
label: /*#__PURE__*/_react["default"].createElement("span", {
|
|
62
|
+
className: "".concat(prefix, "__option-text")
|
|
63
|
+
}, (0, _getLocale.getLocale)("Pro_detail_Attheametime"), /*#__PURE__*/_react["default"].createElement(_tooltip["default"], {
|
|
64
|
+
overlay: (0, _getLocale.getLocale)("Pro_detail_Tasksapproval"),
|
|
65
|
+
placement: "top",
|
|
66
|
+
zIndex: 15000
|
|
67
|
+
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
68
|
+
className: "".concat(prefix, "__icon tu-icon-wiki")
|
|
69
|
+
}))),
|
|
70
|
+
value: 2
|
|
71
|
+
}];
|
|
72
|
+
};
|
|
73
|
+
|
|
70
74
|
var OkrDeletePop = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
71
75
|
var onCancel = _ref.onCancel,
|
|
72
76
|
onConfirm = _ref.onConfirm,
|
|
@@ -132,7 +136,7 @@ var OkrDeletePop = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
|
132
136
|
}, showApprovalCmp ? (0, _getLocale.getLocale)("OKR_MyO_Deleteoapproval") : (0, _getLocale.getLocale)("OKR_MyO_Determinedeletiono")), /*#__PURE__*/_react["default"].createElement("span", {
|
|
133
137
|
type: "content"
|
|
134
138
|
}, !showApprovalCmp && (0, _getLocale.getLocale)("OKR_MyO_Text_Odeletion"), /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement(Radios, {
|
|
135
|
-
radios: radios,
|
|
139
|
+
radios: radios(),
|
|
136
140
|
value: 0,
|
|
137
141
|
onChange: handleChangeDeleteRadios
|
|
138
142
|
}))), /*#__PURE__*/_react["default"].createElement(_dialogConfirm["default"].CancelButton, {
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.cycleList = void 0;
|
|
7
|
+
var cycleList = [{
|
|
8
|
+
id: 1,
|
|
9
|
+
name: '年度'
|
|
10
|
+
}, {
|
|
11
|
+
id: 2,
|
|
12
|
+
name: '季度'
|
|
13
|
+
}, {
|
|
14
|
+
id: 3,
|
|
15
|
+
name: '月度'
|
|
16
|
+
}, {
|
|
17
|
+
id: 4,
|
|
18
|
+
name: '半年度'
|
|
19
|
+
}, {
|
|
20
|
+
id: 5,
|
|
21
|
+
name: '双月'
|
|
22
|
+
}];
|
|
23
|
+
exports.cycleList = cycleList;
|
|
Binary file
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
.titaui-ork-guide__wrap .rc-dialog {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.titaui-ork-guide__wrap .rc-dialog-content {
|
|
7
|
+
border-radius: 0;
|
|
8
|
+
height: 100%;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.titaui-ork-guide__wrap .rc-dialog-body {
|
|
12
|
+
height: 100%;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.titaui-ork-guide__bg {
|
|
16
|
+
position: relative;
|
|
17
|
+
height: 100%;
|
|
18
|
+
box-sizing: border-box;
|
|
19
|
+
background: linear-gradient(135deg, #9FBFFF 0%, #FEF7E5 65%, #FFFFFF 100%);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.titaui-ork-guide__bg::before {
|
|
23
|
+
content: '';
|
|
24
|
+
position: absolute;
|
|
25
|
+
top: 0px;
|
|
26
|
+
right: 172px;
|
|
27
|
+
width: 283px;
|
|
28
|
+
height: 128px;
|
|
29
|
+
background: rgba(240, 94, 94, 0.2);
|
|
30
|
+
filter: blur(50px);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.titaui-ork-guide__container {
|
|
34
|
+
position: relative;
|
|
35
|
+
height: 100%;
|
|
36
|
+
overflow: hidden;
|
|
37
|
+
overflow-y: scroll;
|
|
38
|
+
padding-top: 91px;
|
|
39
|
+
padding-bottom: 104px;
|
|
40
|
+
box-sizing: border-box;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.titaui-ork-guide__container::before {
|
|
44
|
+
content: '';
|
|
45
|
+
position: absolute;
|
|
46
|
+
bottom: 72px;
|
|
47
|
+
right: -237px;
|
|
48
|
+
width: 339px;
|
|
49
|
+
height: 359px;
|
|
50
|
+
background: rgba(0, 214, 133, 0.1);
|
|
51
|
+
filter: blur(48px);
|
|
52
|
+
z-index: 0;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.titaui-ork-guide__container__top {
|
|
56
|
+
font-size: 28px;
|
|
57
|
+
font-weight: normal;
|
|
58
|
+
color: #141C28;
|
|
59
|
+
line-height: 44px;
|
|
60
|
+
letter-spacing: 1px;
|
|
61
|
+
margin-bottom: 60px;
|
|
62
|
+
text-align: center;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.titaui-ork-guide__container__card {
|
|
66
|
+
width: 874px;
|
|
67
|
+
height: 501px;
|
|
68
|
+
background: linear-gradient(270deg, #FFFFFF 0%, #FFFFFF 100%);
|
|
69
|
+
box-shadow: 0px 12px 24px 0px rgba(127, 145, 180, 0.08);
|
|
70
|
+
border-radius: 24px;
|
|
71
|
+
margin: 0 auto;
|
|
72
|
+
display: flex;
|
|
73
|
+
flex-direction: row;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.titaui-ork-guide__container__card__left {
|
|
77
|
+
width: 50%;
|
|
78
|
+
position: relative;
|
|
79
|
+
padding: 32px;
|
|
80
|
+
box-sizing: border-box;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.titaui-ork-guide__container__card__left img {
|
|
84
|
+
width: 370px;
|
|
85
|
+
height: 437px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.titaui-ork-guide__container__card__left::before {
|
|
89
|
+
position: absolute;
|
|
90
|
+
content: '';
|
|
91
|
+
right: 0;
|
|
92
|
+
width: 1px;
|
|
93
|
+
height: 501px;
|
|
94
|
+
background: linear-gradient(20deg, rgba(233, 236, 240, 0) 0%, #D1D8E1 51%, rgba(233, 236, 240, 0) 100%);
|
|
95
|
+
border-radius: 24px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.titaui-ork-guide__container__card__right {
|
|
99
|
+
width: 50%;
|
|
100
|
+
padding: 52px 52px 52px 38px;
|
|
101
|
+
box-sizing: border-box;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.titaui-ork-guide__container__card__right__title {
|
|
105
|
+
font-size: 20px;
|
|
106
|
+
color: #141C28;
|
|
107
|
+
line-height: 30px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.titaui-ork-guide__container__card__right__desc {
|
|
111
|
+
font-size: 14px;
|
|
112
|
+
font-weight: normal;
|
|
113
|
+
color: #6F7886;
|
|
114
|
+
line-height: 22px;
|
|
115
|
+
margin-top: 8px;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.titaui-ork-guide__container__card__right__checkbox {
|
|
119
|
+
padding-top: 28px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.titaui-ork-guide__container__card__right__checkbox .titaui-switch {
|
|
123
|
+
margin-bottom: 20px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.titaui-ork-guide__container__card__right__checkbox .titaui-switch-label {
|
|
127
|
+
display: inline-block;
|
|
128
|
+
width: 48px;
|
|
129
|
+
font-size: 16px;
|
|
130
|
+
font-weight: normal;
|
|
131
|
+
color: #141C28;
|
|
132
|
+
line-height: 24px;
|
|
133
|
+
margin-right: 20px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.titaui-ork-guide__container__card__right__btn {
|
|
137
|
+
text-align: center;
|
|
138
|
+
margin-top: 48px;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.titaui-ork-guide__container__card__right__btn .tita-button-primary {
|
|
142
|
+
width: 190px;
|
|
143
|
+
height: 40px;
|
|
144
|
+
background: #2879FF;
|
|
145
|
+
border-radius: 20px;
|
|
146
|
+
}
|
|
@@ -0,0 +1,244 @@
|
|
|
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 _dialog = _interopRequireDefault(require("../dialog"));
|
|
15
|
+
|
|
16
|
+
var _switch = _interopRequireDefault(require("../switch"));
|
|
17
|
+
|
|
18
|
+
var _button = _interopRequireDefault(require("../button"));
|
|
19
|
+
|
|
20
|
+
var _toast = _interopRequireDefault(require("../toast"));
|
|
21
|
+
|
|
22
|
+
var _constant = require("./constant");
|
|
23
|
+
|
|
24
|
+
var _requestApi = require("./request-api");
|
|
25
|
+
|
|
26
|
+
var _leftImg = _interopRequireDefault(require("./img/left-img.png"));
|
|
27
|
+
|
|
28
|
+
require("./index.css");
|
|
29
|
+
|
|
30
|
+
var _excluded = ["hasSetting"],
|
|
31
|
+
_excluded2 = ["isOpenCustom"];
|
|
32
|
+
|
|
33
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
34
|
+
|
|
35
|
+
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); }
|
|
36
|
+
|
|
37
|
+
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; }
|
|
38
|
+
|
|
39
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
40
|
+
|
|
41
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
42
|
+
|
|
43
|
+
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; }
|
|
44
|
+
|
|
45
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
46
|
+
|
|
47
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
48
|
+
|
|
49
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
50
|
+
|
|
51
|
+
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."); }
|
|
52
|
+
|
|
53
|
+
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); }
|
|
54
|
+
|
|
55
|
+
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; }
|
|
56
|
+
|
|
57
|
+
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; }
|
|
58
|
+
|
|
59
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
60
|
+
|
|
61
|
+
var preCls = 'titaui-ork-guide';
|
|
62
|
+
|
|
63
|
+
var OkrGuide = function OkrGuide(props) {
|
|
64
|
+
var visible = props.visible,
|
|
65
|
+
handlerOnclickCreatOkr = props.handlerOnclickCreatOkr;
|
|
66
|
+
|
|
67
|
+
var _useState = (0, _react.useState)(_constant.cycleList),
|
|
68
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
69
|
+
cycleListData = _useState2[0],
|
|
70
|
+
setCycleListData = _useState2[1];
|
|
71
|
+
|
|
72
|
+
var _useState3 = (0, _react.useState)(0),
|
|
73
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
74
|
+
isOpenCount = _useState4[0],
|
|
75
|
+
setIsOpenCount = _useState4[1];
|
|
76
|
+
|
|
77
|
+
var _useState5 = (0, _react.useState)({
|
|
78
|
+
isOpenCustom: false,
|
|
79
|
+
isOpenMonth: false,
|
|
80
|
+
isOpenQuarter: true,
|
|
81
|
+
isOpenYear: true,
|
|
82
|
+
isOpenBimonthly: false,
|
|
83
|
+
isOpenHalfYear: false
|
|
84
|
+
}),
|
|
85
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
86
|
+
setting = _useState6[0],
|
|
87
|
+
changeSetting = _useState6[1];
|
|
88
|
+
|
|
89
|
+
var getIsOpenById = {
|
|
90
|
+
1: {
|
|
91
|
+
isOpen: setting.isOpenYear
|
|
92
|
+
},
|
|
93
|
+
2: {
|
|
94
|
+
isOpen: setting.isOpenQuarter
|
|
95
|
+
},
|
|
96
|
+
3: {
|
|
97
|
+
isOpen: setting.isOpenMonth
|
|
98
|
+
},
|
|
99
|
+
4: {
|
|
100
|
+
isOpen: setting.isOpenHalfYear
|
|
101
|
+
},
|
|
102
|
+
5: {
|
|
103
|
+
isOpen: setting.isOpenBimonthly
|
|
104
|
+
}
|
|
105
|
+
};
|
|
106
|
+
(0, _react.useEffect)(function () {
|
|
107
|
+
var keys = ['isOpenMonth', 'isOpenQuarter', 'isOpenYear', 'isOpenBimonthly', 'isOpenHalfYear'];
|
|
108
|
+
var count = 0;
|
|
109
|
+
keys.forEach(function (k) {
|
|
110
|
+
if (setting[k]) count++;
|
|
111
|
+
});
|
|
112
|
+
setIsOpenCount(count);
|
|
113
|
+
}, [setting]);
|
|
114
|
+
(0, _react.useEffect)(function () {
|
|
115
|
+
(0, _requestApi.getCycleSetting)().then(function (res) {
|
|
116
|
+
var hasSetting = res.hasSetting,
|
|
117
|
+
onthers = _objectWithoutProperties(res, _excluded);
|
|
118
|
+
|
|
119
|
+
changeSetting(onthers);
|
|
120
|
+
console.log(hasSetting, 'hasSetting');
|
|
121
|
+
});
|
|
122
|
+
}, []);
|
|
123
|
+
|
|
124
|
+
var handlerOnchangeSwitch = function handlerOnchangeSwitch(e, id) {
|
|
125
|
+
var isOpen = e;
|
|
126
|
+
|
|
127
|
+
if (isOpen) {
|
|
128
|
+
if (isOpenCount > 2) {
|
|
129
|
+
_toast["default"].Warning('周期最多选择 3 项');
|
|
130
|
+
|
|
131
|
+
return;
|
|
132
|
+
}
|
|
133
|
+
} else {
|
|
134
|
+
if (isOpenCount < 2) {
|
|
135
|
+
_toast["default"].Warning('周期至少选择 1 项');
|
|
136
|
+
|
|
137
|
+
return;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
switch (id) {
|
|
142
|
+
case 1:
|
|
143
|
+
changeSetting(_objectSpread(_objectSpread({}, setting), {}, {
|
|
144
|
+
isOpenYear: isOpen
|
|
145
|
+
}));
|
|
146
|
+
break;
|
|
147
|
+
|
|
148
|
+
case 2:
|
|
149
|
+
changeSetting(_objectSpread(_objectSpread({}, setting), {}, {
|
|
150
|
+
isOpenQuarter: isOpen
|
|
151
|
+
}));
|
|
152
|
+
break;
|
|
153
|
+
|
|
154
|
+
case 3:
|
|
155
|
+
changeSetting(_objectSpread(_objectSpread({}, setting), {}, {
|
|
156
|
+
isOpenMonth: isOpen
|
|
157
|
+
}));
|
|
158
|
+
break;
|
|
159
|
+
|
|
160
|
+
case 4:
|
|
161
|
+
changeSetting(_objectSpread(_objectSpread({}, setting), {}, {
|
|
162
|
+
isOpenHalfYear: isOpen
|
|
163
|
+
}));
|
|
164
|
+
break;
|
|
165
|
+
|
|
166
|
+
case 5:
|
|
167
|
+
changeSetting(_objectSpread(_objectSpread({}, setting), {}, {
|
|
168
|
+
isOpenBimonthly: isOpen
|
|
169
|
+
}));
|
|
170
|
+
break;
|
|
171
|
+
|
|
172
|
+
default:
|
|
173
|
+
break;
|
|
174
|
+
}
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
var handleSubmit = function handleSubmit() {
|
|
178
|
+
console.log(isOpenCount, 'count');
|
|
179
|
+
|
|
180
|
+
if (isOpenCount > 3) {
|
|
181
|
+
_toast["default"].Warning('周期最多选择 3 项');
|
|
182
|
+
|
|
183
|
+
return;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
var isOpenCustom = setting.isOpenCustom,
|
|
187
|
+
others = _objectWithoutProperties(setting, _excluded2);
|
|
188
|
+
|
|
189
|
+
(0, _requestApi.addCycleSetting)(_objectSpread({}, others)).then(function () {
|
|
190
|
+
console.log('then');
|
|
191
|
+
handlerOnclickCreatOkr();
|
|
192
|
+
});
|
|
193
|
+
};
|
|
194
|
+
|
|
195
|
+
return /*#__PURE__*/_react["default"].createElement(_dialog["default"], {
|
|
196
|
+
extraClass: (0, _classnames["default"])("".concat(preCls)),
|
|
197
|
+
wrapClassName: (0, _classnames["default"])("".concat(preCls, "__wrap")),
|
|
198
|
+
visible: visible,
|
|
199
|
+
mask: false,
|
|
200
|
+
noHeadLine: true,
|
|
201
|
+
noFooterLine: true,
|
|
202
|
+
noCloseIcon: true,
|
|
203
|
+
noFooter: true,
|
|
204
|
+
zIndex: 2001
|
|
205
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
206
|
+
className: (0, _classnames["default"])("".concat(preCls, "__bg"))
|
|
207
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
208
|
+
className: (0, _classnames["default"])("".concat(preCls, "__container"))
|
|
209
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
210
|
+
className: (0, _classnames["default"])("".concat(preCls, "__container__top"))
|
|
211
|
+
}, "\u2728\u6B22\u8FCE\u4F7F\u7528 Tita OKR"), /*#__PURE__*/_react["default"].createElement("div", {
|
|
212
|
+
className: (0, _classnames["default"])("".concat(preCls, "__container__card"))
|
|
213
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
214
|
+
className: (0, _classnames["default"])("".concat(preCls, "__container__card__left"))
|
|
215
|
+
}, /*#__PURE__*/_react["default"].createElement("img", {
|
|
216
|
+
src: _leftImg["default"]
|
|
217
|
+
})), /*#__PURE__*/_react["default"].createElement("div", {
|
|
218
|
+
className: (0, _classnames["default"])("".concat(preCls, "__container__card__right"))
|
|
219
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
220
|
+
className: (0, _classnames["default"])("".concat(preCls, "__container__card__right__title"))
|
|
221
|
+
}, "\uD83D\uDC4B Hi\uFF5E \u8BF7\u5148\u8BBE\u7F6E\u4E00\u4E0B\u76EE\u6807\u5468\u671F"), /*#__PURE__*/_react["default"].createElement("div", {
|
|
222
|
+
className: (0, _classnames["default"])("".concat(preCls, "__container__card__right__desc"))
|
|
223
|
+
}, "\u4F01\u4E1A\u6B65\u8C03\u4E00\u81F4\uFF0C\u7EDF\u4E00\u884C\u52A8\u63A8\u8FDB OKR\uFF0C\u6210\u529F\u7387\u5C06\u63D0\u5347 80%"), /*#__PURE__*/_react["default"].createElement("div", {
|
|
224
|
+
className: (0, _classnames["default"])("".concat(preCls, "__container__card__right__checkbox"))
|
|
225
|
+
}, cycleListData.map(function (item) {
|
|
226
|
+
return /*#__PURE__*/_react["default"].createElement(_react.Fragment, {
|
|
227
|
+
key: item.id
|
|
228
|
+
}, /*#__PURE__*/_react["default"].createElement(_switch["default"], {
|
|
229
|
+
onChange: function onChange(e) {
|
|
230
|
+
return handlerOnchangeSwitch(e, item.id);
|
|
231
|
+
},
|
|
232
|
+
label: item.name,
|
|
233
|
+
checked: getIsOpenById[item.id].isOpen
|
|
234
|
+
}));
|
|
235
|
+
})), /*#__PURE__*/_react["default"].createElement("div", {
|
|
236
|
+
className: (0, _classnames["default"])("".concat(preCls, "__container__card__right__btn")),
|
|
237
|
+
onClick: handleSubmit
|
|
238
|
+
}, /*#__PURE__*/_react["default"].createElement(_button["default"], {
|
|
239
|
+
type: 'primary'
|
|
240
|
+
}, "\u5B8C\u6210\u8BBE\u7F6E\uFF0C\u521B\u5EFA OKR")))))));
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
var _default = OkrGuide;
|
|
244
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.getCycleSetting = exports.addWorkManageSetting = exports.addListWorkManage = exports.addCycleSetting = void 0;
|
|
7
|
+
|
|
8
|
+
var _request = _interopRequireDefault(require("../../utils/request"));
|
|
9
|
+
|
|
10
|
+
var _toast = _interopRequireDefault(require("../toast"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
+
|
|
14
|
+
;
|
|
15
|
+
var rget = _request["default"].rget,
|
|
16
|
+
rpost = _request["default"].rpost;
|
|
17
|
+
|
|
18
|
+
var addWorkManageSetting = function addWorkManageSetting(data) {
|
|
19
|
+
var url = "WorkManageSetting/Add";
|
|
20
|
+
return rpost('v1')(url, data).then(function (res) {
|
|
21
|
+
if (!!res.Code) {
|
|
22
|
+
return res.Data;
|
|
23
|
+
} else {
|
|
24
|
+
_toast["default"].Error(res.Message || '操作失败,请联系客服');
|
|
25
|
+
|
|
26
|
+
return false;
|
|
27
|
+
}
|
|
28
|
+
})["catch"](function (err) {
|
|
29
|
+
_toast["default"].Error('操作失败,请联系客服');
|
|
30
|
+
});
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports.addWorkManageSetting = addWorkManageSetting;
|
|
34
|
+
|
|
35
|
+
var addListWorkManage = function addListWorkManage(data) {
|
|
36
|
+
return rpost('v1')('WorkManageSetting/AddList', data).then(function (res) {
|
|
37
|
+
return res.Data;
|
|
38
|
+
});
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
exports.addListWorkManage = addListWorkManage;
|
|
42
|
+
|
|
43
|
+
var addCycleSetting = function addCycleSetting(data) {
|
|
44
|
+
return rpost('v1')('okr/addCycleSetting', data).then(function (res) {
|
|
45
|
+
return res.Data;
|
|
46
|
+
});
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
exports.addCycleSetting = addCycleSetting;
|
|
50
|
+
|
|
51
|
+
var getCycleSetting = function getCycleSetting() {
|
|
52
|
+
return rget('v1')('okr/cycleSetting').then(function (res) {
|
|
53
|
+
return res.Data;
|
|
54
|
+
});
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
exports.getCycleSetting = getCycleSetting;
|
|
@@ -101,14 +101,14 @@ function toggleMark(markType, attrs) {
|
|
|
101
101
|
if (has) {
|
|
102
102
|
tr.removeMark(_$from.pos, _$to.pos, markType);
|
|
103
103
|
} else {
|
|
104
|
-
var
|
|
104
|
+
var _$exec, _$exec2;
|
|
105
105
|
|
|
106
106
|
var from = _$from.pos,
|
|
107
107
|
to = _$to.pos,
|
|
108
108
|
start = _$from.nodeAfter,
|
|
109
109
|
end = _$to.nodeBefore;
|
|
110
|
-
var spaceStart = start && start.isText ? ((
|
|
111
|
-
var spaceEnd = end && end.isText ? ((
|
|
110
|
+
var spaceStart = start && start.isText ? ((_$exec = /^\s*/.exec(start.text)) === null || _$exec === void 0 ? void 0 : _$exec[0].length) || 0 : 0;
|
|
111
|
+
var spaceEnd = end && end.isText ? ((_$exec2 = /\s*$/.exec(end.text)) === null || _$exec2 === void 0 ? void 0 : _$exec2[0].length) || 0 : 0;
|
|
112
112
|
|
|
113
113
|
if (from + spaceStart < to) {
|
|
114
114
|
from += spaceStart;
|
|
@@ -23,6 +23,12 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
23
23
|
|
|
24
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
25
|
|
|
26
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
27
|
+
|
|
28
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
29
|
+
|
|
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; }
|
|
31
|
+
|
|
26
32
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
27
33
|
|
|
28
34
|
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); } }
|
|
@@ -59,15 +65,24 @@ var ScrollContainer = /*#__PURE__*/function (_PureComponent) {
|
|
|
59
65
|
|
|
60
66
|
_this = _super.call(this, props);
|
|
61
67
|
|
|
62
|
-
_this.onEndScroll = function () {
|
|
68
|
+
_this.onEndScroll = function (e) {
|
|
69
|
+
var _e$target = e.target,
|
|
70
|
+
clientHeight = _e$target.clientHeight,
|
|
71
|
+
scrollHeight = _e$target.scrollHeight,
|
|
72
|
+
scrollTop = _e$target.scrollTop;
|
|
73
|
+
if (clientHeight + scrollTop === scrollHeight) _this.props.onScrollBottom(e);
|
|
63
74
|
_this.scrolling = false;
|
|
64
75
|
|
|
65
76
|
if (!_this.pressed && _this.started) {
|
|
66
|
-
_this.processEnd();
|
|
77
|
+
_this.processEnd(e);
|
|
67
78
|
}
|
|
68
79
|
};
|
|
69
80
|
|
|
70
81
|
_this.onScroll = function (e) {
|
|
82
|
+
var _e$target2 = e.target,
|
|
83
|
+
clientHeight = _e$target2.clientHeight,
|
|
84
|
+
scrollHeight = _e$target2.scrollHeight,
|
|
85
|
+
scrollTop = _e$target2.scrollTop;
|
|
71
86
|
var container = _this.container.current; // Ignore the internal scrolls
|
|
72
87
|
|
|
73
88
|
if (container.scrollLeft !== _this.scrollLeft || container.scrollTop !== _this.scrollTop) {
|
|
@@ -75,7 +90,13 @@ var ScrollContainer = /*#__PURE__*/function (_PureComponent) {
|
|
|
75
90
|
|
|
76
91
|
_this.processScroll(e);
|
|
77
92
|
|
|
78
|
-
_this.onEndScroll(
|
|
93
|
+
_this.onEndScroll({
|
|
94
|
+
target: {
|
|
95
|
+
clientHeight: clientHeight,
|
|
96
|
+
scrollHeight: scrollHeight,
|
|
97
|
+
scrollTop: scrollTop
|
|
98
|
+
}
|
|
99
|
+
});
|
|
79
100
|
}
|
|
80
101
|
};
|
|
81
102
|
|
|
@@ -351,14 +372,14 @@ var ScrollContainer = /*#__PURE__*/function (_PureComponent) {
|
|
|
351
372
|
}
|
|
352
373
|
}, {
|
|
353
374
|
key: "processEnd",
|
|
354
|
-
value: function processEnd() {
|
|
375
|
+
value: function processEnd(e) {
|
|
355
376
|
var onEndScroll = this.props.onEndScroll;
|
|
356
377
|
var container = this.container.current;
|
|
357
378
|
|
|
358
379
|
if (container && onEndScroll) {
|
|
359
|
-
onEndScroll({
|
|
380
|
+
onEndScroll(_objectSpread(_objectSpread({}, e), {}, {
|
|
360
381
|
external: !this.internal
|
|
361
|
-
});
|
|
382
|
+
}));
|
|
362
383
|
}
|
|
363
384
|
|
|
364
385
|
this.pressed = false;
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
.search-input-box .clear-input-icon {
|
|
24
24
|
color: #c2cbd1;
|
|
25
25
|
position: absolute;
|
|
26
|
-
font-size:
|
|
26
|
+
font-size: 16px;
|
|
27
27
|
right: 32px;
|
|
28
28
|
top: 50%;
|
|
29
29
|
transform: translate(0, -50%);
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
.search-input-box > input {
|
|
42
42
|
background: #ffffff;
|
|
43
43
|
border: 1px solid #e9edf0;
|
|
44
|
-
border-radius:
|
|
44
|
+
border-radius: 999px;
|
|
45
45
|
width: 100%;
|
|
46
46
|
height: 100%;
|
|
47
47
|
padding: 0 44px 0 11px;
|
|
@@ -58,6 +58,10 @@ function _default(props) {
|
|
|
58
58
|
height: 30
|
|
59
59
|
}, props.style);
|
|
60
60
|
|
|
61
|
+
(0, _react.useEffect)(function () {
|
|
62
|
+
setValue(props.value);
|
|
63
|
+
if (!props.value) setClearIconState(false);
|
|
64
|
+
}, [props.value]);
|
|
61
65
|
var inputClassName = focus ? "search-input-focus" : "";
|
|
62
66
|
var iconClassName = focus ? "search-input-icon-focus" : "";
|
|
63
67
|
var clearIconStyle = {
|