@titaui/pc 1.11.4-2 → 1.11.4-5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/lib/components/date-picker/BodyItem.js +3 -3
  2. package/lib/components/date-picker/CalendarHeader.js +3 -3
  3. package/lib/components/delete-confirm-pop/ConfirmPop.js +3 -3
  4. package/lib/components/dynamic/dynamic-item/dynamic-interview/index.js +2 -3
  5. package/lib/components/dynamic/dynamic-item/dynamic-interview-share/index.js +10 -3
  6. package/lib/components/dynamic/dynamic-item/index.js +2 -1
  7. package/lib/components/eReport/eReportLists/reportList.js +3 -3
  8. package/lib/components/emotions-selector/selector-pop.js +3 -3
  9. package/lib/components/ereport-list/index.js +3 -3
  10. package/lib/components/mblog/components/MblogAction.js +3 -3
  11. package/lib/components/nav-top/components/user-message/components/inform/inform-item.js +25 -19
  12. package/lib/components/nav-top/components/user-message/constant.js +1 -0
  13. package/lib/components/okr-detail/components/okr-tree/tree-node/kr-node/kr-score-editor/edit-pop.js +3 -3
  14. package/lib/components/okr-review/components/ReviewItem/index.js +3 -3
  15. package/lib/components/okr-review/components/confirm-pop/ConfirmPop.js +3 -3
  16. package/lib/components/range-selector-pop/RangeSelectorPop.js +3 -3
  17. package/lib/components/rich-editor/models/schema.js +6 -6
  18. package/lib/components/rich-editor/plugins/block/block-quote/index.js +8 -8
  19. package/lib/components/rich-editor/plugins/block/heading/index.js +8 -8
  20. package/lib/components/rich-editor/plugins/block/lists/index.js +14 -14
  21. package/lib/components/rich-editor/plugins/block/paragraph/index.js +5 -5
  22. package/lib/components/rich-editor/plugins/core/index.js +4 -4
  23. package/lib/components/rich-editor/plugins/extension/alignment/index.js +5 -5
  24. package/lib/components/rich-editor/plugins/extension/placeholder/index.js +4 -4
  25. package/lib/components/rich-editor/plugins/inline/color/index.js +11 -11
  26. package/lib/components/rich-editor/plugins/inline/delete-line/index.js +8 -8
  27. package/lib/components/rich-editor/plugins/inline/em/index.js +5 -5
  28. package/lib/components/rich-editor/plugins/inline/link/index.js +8 -8
  29. package/lib/components/rich-editor/plugins/inline/strong/index.js +8 -8
  30. package/lib/components/rich-editor/plugins/inline/under-line/index.js +8 -8
  31. package/lib/components/rich-editor/react/uiProvider.js +3 -3
  32. package/lib/components/rich-editor/ui/Popup/index.js +3 -3
  33. package/lib/components/select/Option.js +3 -3
  34. package/lib/components/task-tree/index.js +7 -12
  35. package/lib/components/tita-chart/errorBoundary/index.js +3 -3
  36. package/lib/components-v1/animate/AnimateChild.js +3 -3
  37. package/lib/components-v1/avatar/index.js +3 -3
  38. package/lib/components-v1/dropDownSelector/StatelessDropdown.js +3 -3
  39. package/lib/components-v1/progress/CircleProgress.js +3 -3
  40. package/lib/components-v1/select/Option.js +3 -3
  41. package/lib/components-v1/userSelector/UserSelectorPop.js +3 -3
  42. package/lib/components-v1/userSelector/components/MultiMode/index.js +3 -3
  43. package/lib/components-v1/userSelector/components/UserItem.js +3 -3
  44. package/package.json +5 -2
  45. package/.eslintignore +0 -3
  46. package/.eslintrc.js +0 -223
  47. package/.husky/pre-commit +0 -4
  48. package/.prettierignore +0 -31
  49. package/.prettierrc.js +0 -90
  50. package/.vscode/settings.json +0 -5
  51. package/yarn-error.log +0 -22184
@@ -47,7 +47,7 @@ var BodyItem = /*#__PURE__*/function (_Component) {
47
47
  var _super = _createSuper(BodyItem);
48
48
 
49
49
  function BodyItem() {
50
- var _this;
50
+ var _temp, _this;
51
51
 
52
52
  _classCallCheck(this, BodyItem);
53
53
 
@@ -55,7 +55,7 @@ var BodyItem = /*#__PURE__*/function (_Component) {
55
55
  args[_key] = arguments[_key];
56
56
  }
57
57
 
58
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.getClass = function () {
58
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.getClass = function () {
59
59
  var _this$props = _this.props,
60
60
  isAllowSelect = _this$props.isAllowSelect,
61
61
  date = _this$props.date,
@@ -86,7 +86,7 @@ var BodyItem = /*#__PURE__*/function (_Component) {
86
86
  if (_this.disabled) return;
87
87
 
88
88
  _this.props.onSelectDate((0, _moment["default"])(date.format("YYYY/MM/DD")));
89
- }, _assertThisInitialized(_this)));
89
+ }, _temp));
90
90
  }
91
91
 
92
92
  _createClass(BodyItem, [{
@@ -87,7 +87,7 @@ var CalendarHeader = /*#__PURE__*/function (_Component) {
87
87
  var _super = _createSuper(CalendarHeader);
88
88
 
89
89
  function CalendarHeader() {
90
- var _this;
90
+ var _temp, _this;
91
91
 
92
92
  _classCallCheck(this, CalendarHeader);
93
93
 
@@ -95,7 +95,7 @@ var CalendarHeader = /*#__PURE__*/function (_Component) {
95
95
  args[_key] = arguments[_key];
96
96
  }
97
97
 
98
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.setDate = function (func) {
98
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.setDate = function (func) {
99
99
  var date = (0, _moment["default"])(_this.props.date);
100
100
 
101
101
  for (var _len2 = arguments.length, rest = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
@@ -113,7 +113,7 @@ var CalendarHeader = /*#__PURE__*/function (_Component) {
113
113
  }
114
114
 
115
115
  return years;
116
- }, _assertThisInitialized(_this)));
116
+ }, _temp));
117
117
  }
118
118
 
119
119
  _createClass(CalendarHeader, [{
@@ -49,7 +49,7 @@ var ConfirmPop = /*#__PURE__*/function (_PureComponent) {
49
49
  var _super = _createSuper(ConfirmPop);
50
50
 
51
51
  function ConfirmPop() {
52
- var _this;
52
+ var _temp, _this;
53
53
 
54
54
  _classCallCheck(this, ConfirmPop);
55
55
 
@@ -57,13 +57,13 @@ var ConfirmPop = /*#__PURE__*/function (_PureComponent) {
57
57
  args[_key] = arguments[_key];
58
58
  }
59
59
 
60
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.handleShowPop = function () {
60
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.handleShowPop = function () {
61
61
  // @ts-ignore
62
62
  _this.refs.pop.show(_this.refs.trigger);
63
63
  }, _this.handleHide = function () {
64
64
  // @ts-ignore
65
65
  _this.refs.pop.hide();
66
- }, _assertThisInitialized(_this)));
66
+ }, _temp));
67
67
  }
68
68
 
69
69
  _createClass(ConfirmPop, [{
@@ -28,8 +28,7 @@ var preCls = "titaui-dynamic-interview";
28
28
  function DynamicInterview(_ref) {
29
29
  var data = _ref.data,
30
30
  onDeleteFeed = _ref.onDeleteFeed;
31
- var principalUser = data.principalUser,
32
- publishUser = data.publishUser;
31
+ var publishUser = data.publishUser;
33
32
  var renderDesc = (0, _react.useMemo)(function () {
34
33
  return /*#__PURE__*/_react["default"].createElement("span", {
35
34
  className: "".concat(preCls, "__operate-desc")
@@ -41,7 +40,7 @@ function DynamicInterview(_ref) {
41
40
  data: data,
42
41
  onDeleteFeed: onDeleteFeed,
43
42
  desc: renderDesc,
44
- user: principalUser || publishUser
43
+ user: publishUser
45
44
  }), /*#__PURE__*/_react["default"].createElement(_interviewContent["default"], {
46
45
  data: data
47
46
  }));
@@ -17,6 +17,8 @@ var _interviewContent = _interopRequireDefault(require("./interview-content"));
17
17
 
18
18
  require("./index.css");
19
19
 
20
+ var _openData = require("../../../../utils/open-data");
21
+
20
22
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
21
23
 
22
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); }
@@ -27,10 +29,13 @@ var preCls = "titaui-dynamic-interview-share";
27
29
 
28
30
  function DynamicInterviewShare(_ref) {
29
31
  var data = _ref.data,
30
- onDeleteFeed = _ref.onDeleteFeed;
32
+ onDeleteFeed = _ref.onDeleteFeed,
33
+ _ref$hasDynamicOperea = _ref.hasDynamicOpereateAuth,
34
+ hasDynamicOpereateAuth = _ref$hasDynamicOperea === void 0 ? false : _ref$hasDynamicOperea;
31
35
  var publishUser = data.publishUser,
32
36
  content = data.content,
33
37
  shareFeedSource = data.shareFeedSource;
38
+ var isPublisher = data.publishUser.userId === window.BSGlobal.loginUserInfo.Id;
34
39
  var renderDesc = (0, _react.useMemo)(function () {
35
40
  return /*#__PURE__*/_react["default"].createElement("span", {
36
41
  className: "".concat(preCls, "__operate-desc")
@@ -42,10 +47,12 @@ function DynamicInterviewShare(_ref) {
42
47
  data: data,
43
48
  onDeleteFeed: onDeleteFeed,
44
49
  desc: renderDesc,
45
- user: publishUser
50
+ user: publishUser,
51
+ showDelete: hasDynamicOpereateAuth || isPublisher,
52
+ showTopping: hasDynamicOpereateAuth
46
53
  }), /*#__PURE__*/_react["default"].createElement("div", {
47
54
  className: "".concat(preCls, "__text")
48
- }, content), /*#__PURE__*/_react["default"].createElement(_interviewContent["default"], {
55
+ }, (0, _openData.parseTag)(content)), /*#__PURE__*/_react["default"].createElement(_interviewContent["default"], {
49
56
  data: shareFeedSource
50
57
  }));
51
58
  }
@@ -307,7 +307,8 @@ var DynamicItem = function DynamicItem(_ref) {
307
307
  if (data.shareType === _constant.EShareType.InterviewShare) {
308
308
  return /*#__PURE__*/_react["default"].createElement(_dynamicInterviewShare["default"], {
309
309
  data: data,
310
- onDeleteFeed: onDeleteFeed
310
+ onDeleteFeed: onDeleteFeed,
311
+ hasDynamicOpereateAuth: hasDynamicOpereateAuth
311
312
  });
312
313
  }
313
314
 
@@ -55,7 +55,7 @@ var EReportList = /*#__PURE__*/function (_React$Component) {
55
55
  var _super = _createSuper(EReportList);
56
56
 
57
57
  function EReportList() {
58
- var _this;
58
+ var _temp, _this;
59
59
 
60
60
  _classCallCheck(this, EReportList);
61
61
 
@@ -63,7 +63,7 @@ var EReportList = /*#__PURE__*/function (_React$Component) {
63
63
  args[_key] = arguments[_key];
64
64
  }
65
65
 
66
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.state = {
66
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.state = {
67
67
  selectedPeriodValue: "",
68
68
  showDatePick: false,
69
69
  eReportWeekList: [],
@@ -176,7 +176,7 @@ var EReportList = /*#__PURE__*/function (_React$Component) {
176
176
  return _this.handlerEReportShareSubmit(submitStatus);
177
177
  }
178
178
  })));
179
- }, _assertThisInitialized(_this)));
179
+ }, _temp));
180
180
  }
181
181
 
182
182
  _createClass(EReportList, [{
@@ -47,7 +47,7 @@ var EmotionsSelectorPop = /*#__PURE__*/function (_PureComponent) {
47
47
  var _super = _createSuper(EmotionsSelectorPop);
48
48
 
49
49
  function EmotionsSelectorPop() {
50
- var _this;
50
+ var _temp, _this;
51
51
 
52
52
  _classCallCheck(this, EmotionsSelectorPop);
53
53
 
@@ -55,7 +55,7 @@ var EmotionsSelectorPop = /*#__PURE__*/function (_PureComponent) {
55
55
  args[_key] = arguments[_key];
56
56
  }
57
57
 
58
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.handleShowPop = function () {
58
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.handleShowPop = function () {
59
59
  setTimeout(function () {
60
60
  // @ts-ignore
61
61
  _this.refs.pop.show(_this.refs.trigger);
@@ -63,7 +63,7 @@ var EmotionsSelectorPop = /*#__PURE__*/function (_PureComponent) {
63
63
  }, _this.handleHide = function () {
64
64
  // @ts-ignore
65
65
  _this.refs.pop.hide();
66
- }, _assertThisInitialized(_this)));
66
+ }, _temp));
67
67
  }
68
68
 
69
69
  _createClass(EmotionsSelectorPop, [{
@@ -57,7 +57,7 @@ var EReportList = /*#__PURE__*/function (_React$Component) {
57
57
  var _super = _createSuper(EReportList);
58
58
 
59
59
  function EReportList() {
60
- var _this;
60
+ var _temp, _this;
61
61
 
62
62
  _classCallCheck(this, EReportList);
63
63
 
@@ -65,7 +65,7 @@ var EReportList = /*#__PURE__*/function (_React$Component) {
65
65
  args[_key] = arguments[_key];
66
66
  }
67
67
 
68
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.state = {
68
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.state = {
69
69
  selectedPeriodValue: "",
70
70
  showDatePick: false,
71
71
  eReportWeekList: [],
@@ -178,7 +178,7 @@ var EReportList = /*#__PURE__*/function (_React$Component) {
178
178
  return _this.handlerEReportShareSubmit(submitStatus);
179
179
  }
180
180
  })));
181
- }, _assertThisInitialized(_this)));
181
+ }, _temp));
182
182
  }
183
183
 
184
184
  _createClass(EReportList, [{
@@ -83,7 +83,7 @@ var MblogAction = /*#__PURE__*/function (_PureComponent) {
83
83
  var _super = _createSuper(MblogAction);
84
84
 
85
85
  function MblogAction() {
86
- var _this;
86
+ var _temp, _this;
87
87
 
88
88
  _classCallCheck(this, MblogAction);
89
89
 
@@ -91,7 +91,7 @@ var MblogAction = /*#__PURE__*/function (_PureComponent) {
91
91
  args[_key] = arguments[_key];
92
92
  }
93
93
 
94
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.state = {
94
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.state = {
95
95
  isSendSms: false,
96
96
  // 是否短信通知
97
97
  isShowConfirmPop: false
@@ -121,7 +121,7 @@ var MblogAction = /*#__PURE__*/function (_PureComponent) {
121
121
  isSendSms: false
122
122
  });
123
123
  }
124
- }, _assertThisInitialized(_this)));
124
+ }, _temp));
125
125
  }
126
126
 
127
127
  _createClass(MblogAction, [{
@@ -35,7 +35,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
35
35
 
36
36
  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; }
37
37
 
38
- var preCls = "titaui-user-message-msg-inform";
38
+ var preCls = 'titaui-user-message-msg-inform';
39
39
 
40
40
  function Inform(props) {
41
41
  var item = props.item,
@@ -47,10 +47,11 @@ function Inform(props) {
47
47
  onItemClick && onItemClick(false);
48
48
  var objType = item.objType,
49
49
  objId = item.objId,
50
- messageType = item.messageType;
50
+ messageType = item.messageType,
51
+ user = item.user;
51
52
 
52
53
  if (objType === _constant.EObjType.Kr) {
53
- _drawerManager["default"].open("krDetail", {
54
+ _drawerManager["default"].open('krDetail', {
54
55
  krId: objId
55
56
  });
56
57
 
@@ -58,7 +59,7 @@ function Inform(props) {
58
59
  }
59
60
 
60
61
  if (objType === _constant.EObjType.O) {
61
- _drawerManager["default"].open("okrDetail", {
62
+ _drawerManager["default"].open('okrDetail', {
62
63
  okrId: objId
63
64
  });
64
65
 
@@ -72,20 +73,25 @@ function Inform(props) {
72
73
 
73
74
  if (objType === _constant.EObjType.Task) {
74
75
  // @ts-ignore
75
- window.Talent.app.vent.trigger("global-pull-screen", objId, "task");
76
+ window.Talent.app.vent.trigger('global-pull-screen', objId, 'task');
76
77
  return;
77
78
  }
78
79
 
79
80
  if (objType === _constant.EObjType.Remind) {
80
81
  // @ts-ignore
81
- window.Talent.app.vent.trigger("global-daily-detail-pull-screen", objId);
82
+ window.Talent.app.vent.trigger('global-daily-detail-pull-screen', objId);
83
+ return;
84
+ }
85
+
86
+ if (objType === _constant.EObjType.Interview) {
87
+ (0, _tools.openPage)("".concat(_constant.apiServer, "/u/").concat(_constant.userId, "/Home#/interview?reactRouterName=detail&hideNavTop=true&recordId=").concat(objId, "&toUserId=").concat(user === null || user === void 0 ? void 0 : user.userId));
82
88
  return;
83
89
  }
84
90
 
85
91
  if (messageType == 135) {
86
92
  var redisKey = item.content.match(/redisKey=(\S*?)"/)[1]; // @ts-ignore
87
93
 
88
- Talent.app.vent.trigger("open-weekly-report-modal", redisKey);
94
+ Talent.app.vent.trigger('open-weekly-report-modal', redisKey);
89
95
  return;
90
96
  } // 处理合并的消息
91
97
 
@@ -111,13 +117,13 @@ function Inform(props) {
111
117
  if (objType === 0) {
112
118
  var str = item.content.match(/\/\/.*?[\"|\']/gi);
113
119
  if (!str) return;
114
- str = str.join("");
120
+ str = str.join('');
115
121
 
116
122
  var _url = str.slice(0, str.length - 1);
117
123
 
118
124
  if (_url) {
119
- if (item.content.indexOf("点击此处下载") !== -1) {
120
- window.open(_url, "_self");
125
+ if (item.content.indexOf('点击此处下载') !== -1) {
126
+ window.open(_url, '_self');
121
127
  }
122
128
 
123
129
  (0, _tools.openPage)(_url);
@@ -147,7 +153,7 @@ function Inform(props) {
147
153
  var _str = item.content.match(/\/\/.*?[\"|\']/gi);
148
154
 
149
155
  if (!_str) return;
150
- _str = _str.join("");
156
+ _str = _str.join('');
151
157
 
152
158
  var _url3 = _str.slice(0, _str.length - 1);
153
159
 
@@ -159,7 +165,7 @@ function Inform(props) {
159
165
  var _str2 = item.content.match(/https:.*?[\"|\']/gi);
160
166
 
161
167
  if (!_str2) return;
162
- _str2 = _str2.join("");
168
+ _str2 = _str2.join('');
163
169
 
164
170
  var _url4 = _str2.slice(0, _str2.length - 1);
165
171
 
@@ -178,7 +184,7 @@ function Inform(props) {
178
184
  }
179
185
 
180
186
  var reg = /href='.*?(?=')/g;
181
- var url = "";
187
+ var url = '';
182
188
  item.content.replace(reg, function ($0) {
183
189
  url = $0.slice(6);
184
190
  });
@@ -189,22 +195,22 @@ function Inform(props) {
189
195
  }
190
196
  }
191
197
 
192
- var notificationType = "e-report"; // E-周报提醒消息合并
198
+ var notificationType = 'e-report'; // E-周报提醒消息合并
193
199
 
194
200
  var content = domRef.current.textContent;
195
201
 
196
- if (messageType == "83") {
202
+ if (messageType == '83') {
197
203
  // 项目,目标进展提醒消息合并
198
- notificationType = "project-objective";
204
+ notificationType = 'project-objective';
199
205
  } else if (Number(messageType) > 93 && Number(messageType) <= 100) {
200
206
  // OKR 仪表盘消息提醒
201
- notificationType = "okr-dashBoard";
207
+ notificationType = 'okr-dashBoard';
202
208
  } else if (messageType == 131 || messageType == 136) {
203
- notificationType = "performance";
209
+ notificationType = 'performance';
204
210
  content = item.content;
205
211
  }
206
212
 
207
- _drawerManager["default"].open("NotificationMergeDetail", {
213
+ _drawerManager["default"].open('NotificationMergeDetail', {
208
214
  config: {
209
215
  content: content,
210
216
  messageId: item.messageId,
@@ -50,4 +50,5 @@ exports.EObjType = EObjType;
50
50
  EObjType[EObjType["MileStone"] = 27] = "MileStone";
51
51
  EObjType[EObjType["KanBan"] = 66] = "KanBan";
52
52
  EObjType[EObjType["Remind"] = 8] = "Remind";
53
+ EObjType[EObjType["Interview"] = 81] = "Interview";
53
54
  })(EObjType || (exports.EObjType = EObjType = {}));
@@ -81,7 +81,7 @@ var EditPop = /*#__PURE__*/function (_PureComponent) {
81
81
  var _super = _createSuper(EditPop);
82
82
 
83
83
  function EditPop() {
84
- var _this;
84
+ var _temp, _this;
85
85
 
86
86
  _classCallCheck(this, EditPop);
87
87
 
@@ -89,7 +89,7 @@ var EditPop = /*#__PURE__*/function (_PureComponent) {
89
89
  args[_key] = arguments[_key];
90
90
  }
91
91
 
92
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.state = {
92
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.state = {
93
93
  value: _this.props.value,
94
94
  showError: false,
95
95
  errMsg: "",
@@ -152,7 +152,7 @@ var EditPop = /*#__PURE__*/function (_PureComponent) {
152
152
  errMsg: (0, _i18nFrontTranslate.inputWordTrans)(value.length, maxLength),
153
153
  disable: !!(maxLength && value.length > maxLength && disable)
154
154
  });
155
- }, _assertThisInitialized(_this)));
155
+ }, _temp));
156
156
  }
157
157
 
158
158
  _createClass(EditPop, [{
@@ -45,7 +45,7 @@ var ReviewItem = /*#__PURE__*/function (_PureComponent) {
45
45
  var _super = _createSuper(ReviewItem);
46
46
 
47
47
  function ReviewItem() {
48
- var _this;
48
+ var _temp, _this;
49
49
 
50
50
  _classCallCheck(this, ReviewItem);
51
51
 
@@ -53,14 +53,14 @@ var ReviewItem = /*#__PURE__*/function (_PureComponent) {
53
53
  args[_key] = arguments[_key];
54
54
  }
55
55
 
56
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this._handlerLinkToReviewDetail = function () {
56
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this._handlerLinkToReviewDetail = function () {
57
57
  var _this$props = _this.props,
58
58
  feedId = _this$props.feedId,
59
59
  reviewItemData = _this$props.reviewItemData,
60
60
  krIndex = _this$props.krIndex,
61
61
  editAble = _this$props.editAble;
62
62
  window.open("".concat(location.pathname, "#okr/reviewDetail?okrId=8077&back=").concat(location.hash, "&replayId=").concat(reviewItemData.replayId, "&feedId=").concat(feedId, "&krIndex=").concat(krIndex, "&editAble=").concat(editAble));
63
- }, _assertThisInitialized(_this)));
63
+ }, _temp));
64
64
  }
65
65
 
66
66
  _createClass(ReviewItem, [{
@@ -49,7 +49,7 @@ var ConfirmPop = /*#__PURE__*/function (_PureComponent) {
49
49
  var _super = _createSuper(ConfirmPop);
50
50
 
51
51
  function ConfirmPop() {
52
- var _this;
52
+ var _temp, _this;
53
53
 
54
54
  _classCallCheck(this, ConfirmPop);
55
55
 
@@ -57,13 +57,13 @@ var ConfirmPop = /*#__PURE__*/function (_PureComponent) {
57
57
  args[_key] = arguments[_key];
58
58
  }
59
59
 
60
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.handleShowPop = function () {
60
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.handleShowPop = function () {
61
61
  // @ts-ignore
62
62
  _this.refs.pop.show(_this.refs.trigger);
63
63
  }, _this.handleHide = function () {
64
64
  // @ts-ignore
65
65
  _this.refs.pop.hide();
66
- }, _assertThisInitialized(_this)));
66
+ }, _temp));
67
67
  }
68
68
 
69
69
  _createClass(ConfirmPop, [{
@@ -45,7 +45,7 @@ var RangeSelectorPop = /*#__PURE__*/function (_PureComponent) {
45
45
  var _super = _createSuper(RangeSelectorPop);
46
46
 
47
47
  function RangeSelectorPop() {
48
- var _this;
48
+ var _temp, _this;
49
49
 
50
50
  _classCallCheck(this, RangeSelectorPop);
51
51
 
@@ -53,7 +53,7 @@ var RangeSelectorPop = /*#__PURE__*/function (_PureComponent) {
53
53
  args[_key] = arguments[_key];
54
54
  }
55
55
 
56
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.handleShowPop = function () {
56
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.handleShowPop = function () {
57
57
  var isDisabled = _this.props.isDisabled;
58
58
  if (isDisabled) return; // @ts-ignore
59
59
 
@@ -61,7 +61,7 @@ var RangeSelectorPop = /*#__PURE__*/function (_PureComponent) {
61
61
  }, _this.handleHide = function () {
62
62
  // @ts-ignore
63
63
  _this.refs.pop.hide();
64
- }, _assertThisInitialized(_this)));
64
+ }, _temp));
65
65
  }
66
66
 
67
67
  _createClass(RangeSelectorPop, [{
@@ -46,7 +46,7 @@ var BlockSchema = /*#__PURE__*/function (_BaseSchema) {
46
46
  var _super = _createSuper(BlockSchema);
47
47
 
48
48
  function BlockSchema() {
49
- var _this;
49
+ var _temp, _this;
50
50
 
51
51
  _classCallCheck(this, BlockSchema);
52
52
 
@@ -54,7 +54,7 @@ var BlockSchema = /*#__PURE__*/function (_BaseSchema) {
54
54
  args[_key] = arguments[_key];
55
55
  }
56
56
 
57
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.group = 'block', _this.content = 'inline*', _this.inline = false, _this.defining = true, _this.draggable = false, _this.selectable = false, _assertThisInitialized(_this)));
57
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.group = 'block', _this.content = 'inline*', _this.inline = false, _this.defining = true, _this.draggable = false, _this.selectable = false, _temp));
58
58
  }
59
59
 
60
60
  _createClass(BlockSchema, [{
@@ -75,7 +75,7 @@ var InlineSchema = /*#__PURE__*/function (_BaseSchema2) {
75
75
  var _super2 = _createSuper(InlineSchema);
76
76
 
77
77
  function InlineSchema() {
78
- var _this2;
78
+ var _temp2, _this2;
79
79
 
80
80
  _classCallCheck(this, InlineSchema);
81
81
 
@@ -83,7 +83,7 @@ var InlineSchema = /*#__PURE__*/function (_BaseSchema2) {
83
83
  args[_key2] = arguments[_key2];
84
84
  }
85
85
 
86
- return _possibleConstructorReturn(_this2, (_this2 = _super2.call.apply(_super2, [this].concat(args)), _this2.group = 'inline', _this2.inclusive = true, _assertThisInitialized(_this2)));
86
+ return _possibleConstructorReturn(_this2, (_temp2 = _this2 = _super2.call.apply(_super2, [this].concat(args)), _this2.group = 'inline', _this2.inclusive = true, _temp2));
87
87
  }
88
88
 
89
89
  _createClass(InlineSchema, [{
@@ -104,7 +104,7 @@ var AtomSchema = /*#__PURE__*/function (_BaseSchema3) {
104
104
  var _super3 = _createSuper(AtomSchema);
105
105
 
106
106
  function AtomSchema() {
107
- var _this3;
107
+ var _temp3, _this3;
108
108
 
109
109
  _classCallCheck(this, AtomSchema);
110
110
 
@@ -112,7 +112,7 @@ var AtomSchema = /*#__PURE__*/function (_BaseSchema3) {
112
112
  args[_key3] = arguments[_key3];
113
113
  }
114
114
 
115
- return _possibleConstructorReturn(_this3, (_this3 = _super3.call.apply(_super3, [this].concat(args)), _this3.isLeaf = true, _this3.draggable = true, _assertThisInitialized(_this3)));
115
+ return _possibleConstructorReturn(_this3, (_temp3 = _this3 = _super3.call.apply(_super3, [this].concat(args)), _this3.isLeaf = true, _this3.draggable = true, _temp3));
116
116
  }
117
117
 
118
118
  return _createClass(AtomSchema);
@@ -49,7 +49,7 @@ var BlockquoteSchema = /*#__PURE__*/function (_BlockSchema) {
49
49
  var _super = _createSuper(BlockquoteSchema);
50
50
 
51
51
  function BlockquoteSchema() {
52
- var _this;
52
+ var _temp, _this;
53
53
 
54
54
  _classCallCheck(this, BlockquoteSchema);
55
55
 
@@ -57,9 +57,9 @@ var BlockquoteSchema = /*#__PURE__*/function (_BlockSchema) {
57
57
  args[_key] = arguments[_key];
58
58
  }
59
59
 
60
- return _possibleConstructorReturn(_this, (_this = _super.call.apply(_super, [this].concat(args)), _this.name = PLUGIN_NAME, _this.content = "block+", _this.parseDOM = [{
60
+ return _possibleConstructorReturn(_this, (_temp = _this = _super.call.apply(_super, [this].concat(args)), _this.name = PLUGIN_NAME, _this.content = "block+", _this.parseDOM = [{
61
61
  tag: "blockquote"
62
- }], _assertThisInitialized(_this)));
62
+ }], _temp));
63
63
  }
64
64
 
65
65
  _createClass(BlockquoteSchema, [{
@@ -80,7 +80,7 @@ var BlockquoteController = /*#__PURE__*/function (_BaseController) {
80
80
  var _super2 = _createSuper(BlockquoteController);
81
81
 
82
82
  function BlockquoteController() {
83
- var _this2;
83
+ var _temp2, _this2;
84
84
 
85
85
  _classCallCheck(this, BlockquoteController);
86
86
 
@@ -88,7 +88,7 @@ var BlockquoteController = /*#__PURE__*/function (_BaseController) {
88
88
  args[_key2] = arguments[_key2];
89
89
  }
90
90
 
91
- return _possibleConstructorReturn(_this2, (_this2 = _super2.call.apply(_super2, [this].concat(args)), _this2.toolbar = {
91
+ return _possibleConstructorReturn(_this2, (_temp2 = _this2 = _super2.call.apply(_super2, [this].concat(args)), _this2.toolbar = {
92
92
  title: (0, _getLocale.getLocale)('Tasks_Tab_MyS_Quote'),
93
93
  icon: 'tu-icon-text-quotel',
94
94
  handler: function handler(editor) {
@@ -97,7 +97,7 @@ var BlockquoteController = /*#__PURE__*/function (_BaseController) {
97
97
  active: function active(state) {
98
98
  return (0, _util.isBlockActive)(state, PLUGIN_NAME);
99
99
  }
100
- }, _assertThisInitialized(_this2)));
100
+ }, _temp2));
101
101
  }
102
102
 
103
103
  return _createClass(BlockquoteController);
@@ -111,7 +111,7 @@ var BlockquotePlugin = /*#__PURE__*/function (_BasePlugin) {
111
111
  var _super3 = _createSuper(BlockquotePlugin);
112
112
 
113
113
  function BlockquotePlugin() {
114
- var _this3;
114
+ var _temp3, _this3;
115
115
 
116
116
  _classCallCheck(this, BlockquotePlugin);
117
117
 
@@ -119,7 +119,7 @@ var BlockquotePlugin = /*#__PURE__*/function (_BasePlugin) {
119
119
  args[_key3] = arguments[_key3];
120
120
  }
121
121
 
122
- return _possibleConstructorReturn(_this3, (_this3 = _super3.call.apply(_super3, [this].concat(args)), _this3.name = PLUGIN_NAME, _this3.schema = BlockquoteSchema, _this3.controller = BlockquoteController, _assertThisInitialized(_this3)));
122
+ return _possibleConstructorReturn(_this3, (_temp3 = _this3 = _super3.call.apply(_super3, [this].concat(args)), _this3.name = PLUGIN_NAME, _this3.schema = BlockquoteSchema, _this3.controller = BlockquoteController, _temp3));
123
123
  }
124
124
 
125
125
  return _createClass(BlockquotePlugin);