@voplus/morpho-workspace 6.1.20 → 6.1.22
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/es/modules/notification/components/NotificationOverview/index.d.ts +2 -2
- package/es/modules/notification/components/NotificationOverview/index.js +15 -8
- package/es/modules/notification/components/NotificationOverview/index.js.map +1 -1
- package/es/modules/notification/components/NotificationOverview/state.d.ts +6 -0
- package/es/modules/notification/components/NotificationOverview/state.js +47 -0
- package/es/modules/notification/components/NotificationOverview/state.js.map +1 -0
- package/es/modules/notification/pages/NotificationListPage/index.js +24 -31
- package/es/modules/notification/pages/NotificationListPage/index.js.map +1 -1
- package/es/modules/notification/pages/NotificationListPage/state.d.ts +3 -0
- package/es/modules/notification/pages/NotificationListPage/state.js +40 -1
- package/es/modules/notification/pages/NotificationListPage/state.js.map +1 -1
- package/es/modules/tasks/components/TaskOverview/index.d.ts +4 -3
- package/es/modules/tasks/components/TaskOverview/index.js +22 -12
- package/es/modules/tasks/components/TaskOverview/index.js.map +1 -1
- package/es/modules/tasks/components/TaskOverview/state.d.ts +8 -0
- package/es/modules/tasks/components/TaskOverview/state.js +65 -0
- package/es/modules/tasks/components/TaskOverview/state.js.map +1 -0
- package/es/modules/tasks/pages/TaskListPage/index.js +26 -31
- package/es/modules/tasks/pages/TaskListPage/index.js.map +1 -1
- package/es/modules/tasks/pages/TaskListPage/state.d.ts +7 -2
- package/es/modules/tasks/pages/TaskListPage/state.js +84 -13
- package/es/modules/tasks/pages/TaskListPage/state.js.map +1 -1
- package/es/modules/work/components/WorkOverview/index.d.ts +4 -4
- package/es/modules/work/components/WorkOverview/index.js +24 -12
- package/es/modules/work/components/WorkOverview/index.js.map +1 -1
- package/es/modules/work/components/WorkOverview/state.d.ts +8 -0
- package/es/modules/work/components/WorkOverview/state.js +65 -0
- package/es/modules/work/components/WorkOverview/state.js.map +1 -0
- package/es/modules/work/pages/WorkListPage2/index.js +9 -19
- package/es/modules/work/pages/WorkListPage2/index.js.map +1 -1
- package/es/modules/work/pages/WorkListPage2/state.d.ts +7 -2
- package/es/modules/work/pages/WorkListPage2/state.js +86 -24
- package/es/modules/work/pages/WorkListPage2/state.js.map +1 -1
- package/es/modules/work/work-error/components/WorkErrorPropertiesView/index.js +6 -5
- package/es/modules/work/work-error/components/WorkErrorPropertiesView/index.js.map +1 -1
- package/es/modules/work/work-schedule/components/WorkScheduleOverview/index.d.ts +4 -2
- package/es/modules/work/work-schedule/components/WorkScheduleOverview/index.js +20 -10
- package/es/modules/work/work-schedule/components/WorkScheduleOverview/index.js.map +1 -1
- package/es/modules/work/work-schedule/components/WorkScheduleOverview/state.d.ts +8 -0
- package/es/modules/work/work-schedule/components/WorkScheduleOverview/state.js +63 -0
- package/es/modules/work/work-schedule/components/WorkScheduleOverview/state.js.map +1 -0
- package/es/modules/work/work-schedule/pages/WorkScheduleListPage/index.js +26 -23
- package/es/modules/work/work-schedule/pages/WorkScheduleListPage/index.js.map +1 -1
- package/es/modules/work/work-schedule/pages/WorkScheduleListPage/state.d.ts +7 -2
- package/es/modules/work/work-schedule/pages/WorkScheduleListPage/state.js +92 -19
- package/es/modules/work/work-schedule/pages/WorkScheduleListPage/state.js.map +1 -1
- package/es/modules/work/work-type/components/WorkTypeHeader/index.d.ts +1 -0
- package/es/modules/work/work-type/components/WorkTypeHeader/index.js +3 -2
- package/es/modules/work/work-type/components/WorkTypeHeader/index.js.map +1 -1
- package/es/modules/work/work-type/components/WorkTypePropertiesView/index.js +1 -1
- package/es/modules/work/work-type/components/WorkTypePropertiesView/index.js.map +1 -1
- package/es/modules/workspace/components/WorkspacePropertiesView/index.d.ts +1 -1
- package/es/modules/workspace/components/WorkspacePropertiesView/index.js +37 -35
- package/es/modules/workspace/components/WorkspacePropertiesView/index.js.map +1 -1
- package/es/modules/workspace/components/WorkspacePropertiesView/state.d.ts +1 -2
- package/es/modules/workspace/components/WorkspacePropertiesView/state.js +14 -10
- package/es/modules/workspace/components/WorkspacePropertiesView/state.js.map +1 -1
- package/es/modules/workspace/controls/WorkspaceMenu/index.d.ts +1 -0
- package/es/modules/workspace/controls/WorkspaceMenu/index.js +2 -2
- package/es/modules/workspace/controls/WorkspaceMenu/index.js.map +1 -1
- package/es/modules/workspace/pages/WorkspaceDefaultView/index.js +8 -7
- package/es/modules/workspace/pages/WorkspaceDefaultView/index.js.map +1 -1
- package/package.json +1 -1
- package/es/modules/notification/components/NotificationOverview/index.less +0 -24
- package/es/modules/tasks/components/TaskOverview/index.less +0 -49
- package/es/modules/work/components/WorkOverview/index.less +0 -49
- package/es/modules/work/work-schedule/components/WorkScheduleOverview/index.less +0 -58
@@ -14,6 +14,12 @@ export class State {
|
|
14
14
|
writable: true,
|
15
15
|
value: store
|
16
16
|
});
|
17
|
+
Object.defineProperty(this, "refresh", {
|
18
|
+
enumerable: true,
|
19
|
+
configurable: true,
|
20
|
+
writable: true,
|
21
|
+
value: false
|
22
|
+
});
|
17
23
|
/** Name of workspace */
|
18
24
|
Object.defineProperty(this, "name", {
|
19
25
|
enumerable: true,
|
@@ -36,13 +42,11 @@ export class State {
|
|
36
42
|
});
|
37
43
|
makeObservable(this);
|
38
44
|
}
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
});
|
45
|
-
}
|
45
|
+
// @action
|
46
|
+
// public initialMemberList(res: IDocumentAccessSettings) {
|
47
|
+
// this.members = [];
|
48
|
+
// res?.includes?.map((i) => i.role === "Member" && this.members.push(i.contact));
|
49
|
+
// }
|
46
50
|
/** edit save */
|
47
51
|
save(v, name, params) {
|
48
52
|
if ((v === null || v === void 0 ? void 0 : v.trim()) === name)
|
@@ -50,6 +54,9 @@ export class State {
|
|
50
54
|
this.store.edit(this.id, { data: params, error: "message" });
|
51
55
|
}
|
52
56
|
}
|
57
|
+
__decorate([
|
58
|
+
observable
|
59
|
+
], State.prototype, "refresh", void 0);
|
53
60
|
__decorate([
|
54
61
|
observable
|
55
62
|
], State.prototype, "name", void 0);
|
@@ -59,9 +66,6 @@ __decorate([
|
|
59
66
|
__decorate([
|
60
67
|
observable
|
61
68
|
], State.prototype, "members", void 0);
|
62
|
-
__decorate([
|
63
|
-
action
|
64
|
-
], State.prototype, "update", null);
|
65
69
|
__decorate([
|
66
70
|
action
|
67
71
|
], State.prototype, "save", null);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"state.js","sourceRoot":"","sources":["../../../../../src/modules/workspace/components/WorkspacePropertiesView/state.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,UAAU,
|
1
|
+
{"version":3,"file":"state.js","sourceRoot":"","sources":["../../../../../src/modules/workspace/components/WorkspacePropertiesView/state.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAI1D,MAAM,OAAO,KAAK;IAQjB,YAAoB,EAAU,EAAU,KAAqB;QAAjD;;;;mBAAQ,EAAE;WAAQ;QAAE;;;;mBAAQ,KAAK;WAAgB;QAP1C;;;;mBAAU,KAAK;WAAC;QACnC,wBAAwB;QACL;;;;mBAAO,EAAE;WAAC;QAC7B,2BAA2B;QACR;;;;mBAAc,KAAK;WAAC;QACpB;;;;mBAAiB,EAAE;WAAC;QAGtC,cAAc,CAAC,IAAI,CAAC,CAAC;IACtB,CAAC;IAED,UAAU;IACV,2DAA2D;IAC3D,sBAAsB;IACtB,mFAAmF;IACnF,IAAI;IAEJ,gBAAgB;IAET,IAAI,CAAC,CAAM,EAAE,IAAS,EAAE,MAA+B;QAC7D,IAAI,CAAA,CAAC,aAAD,CAAC,uBAAD,CAAC,CAAE,IAAI,EAAE,MAAK,IAAI;YAAE,OAAO;QAC/B,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;IAC9D,CAAC;CACD;AAvBmB;IAAlB,UAAU;sCAAwB;AAEhB;IAAlB,UAAU;mCAAkB;AAEV;IAAlB,UAAU;0CAA4B;AACpB;IAAlB,UAAU;sCAA4B;AAchC;IADN,MAAM;iCAIN"}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { Button } from "antd";
|
3
3
|
import { useWorkspace, useWorkspaceStore } from "../../../../data/workspace";
|
4
|
-
import {
|
4
|
+
import { faUserLock, faUserUnlock } from "@fortawesome/pro-light-svg-icons";
|
5
5
|
import { observe, useAsideContentContext } from "@voplus/morpho-ui";
|
6
6
|
import { useApplicationContext } from "@voplus/morpho-data";
|
7
7
|
import { FontAwesomeIcon as FAIcon } from "@fortawesome/react-fontawesome";
|
@@ -17,7 +17,7 @@ const WorkspaceMenu = (props) => {
|
|
17
17
|
reload: (i) => !user.info.guest && !i.p,
|
18
18
|
includes: "permissions",
|
19
19
|
});
|
20
|
-
return observe(() => (React.createElement(NodeMenu, { id: props.id, icon:
|
20
|
+
return observe(() => (React.createElement(NodeMenu, { id: props.id, icon: props.icon, menus: React.createElement(React.Fragment, null,
|
21
21
|
user.can("delete", workspace.p) && React.createElement(Delete, { action: onDelete }),
|
22
22
|
user.can("disable", workspace.p) && (React.createElement(Button, { type: "link", onClick: () => onChangeStatus("Disabled"), className: classId + "-disabled" },
|
23
23
|
React.createElement(FAIcon, { icon: faUserLock }),
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/modules/workspace/controls/WorkspaceMenu/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AAC9B,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAc,MAAM,4BAA4B,CAAC;AACzF,OAAO,EAAE,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/modules/workspace/controls/WorkspaceMenu/index.tsx"],"names":[],"mappings":"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"}
|
@@ -1,15 +1,16 @@
|
|
1
1
|
import React, { useState } from "react";
|
2
|
-
import { InlineEdit, observe } from "@voplus/morpho-ui";
|
3
|
-
import { useWorkspace, useWorkspaceStore } from "../../../../data/workspace";
|
4
|
-
import PageHeadDashboard from "@voplus/morpho-ui/es/components/layout/headers/PageHeadDashboard";
|
5
|
-
import { State } from "./state";
|
6
2
|
import { Card } from "antd";
|
3
|
+
import { State } from "./state";
|
4
|
+
import { InlineEdit, observe } from "@voplus/morpho-ui";
|
7
5
|
import { faFileAlt } from "@fortawesome/pro-regular-svg-icons";
|
6
|
+
import { faEllipsisVertical } from "@fortawesome/pro-solid-svg-icons";
|
8
7
|
import { FontAwesomeIcon as FAIcon } from "@fortawesome/react-fontawesome";
|
9
|
-
import
|
10
|
-
import
|
8
|
+
import { useWorkspace, useWorkspaceStore } from "../../../../data/workspace";
|
9
|
+
import PageHeadDashboard from "@voplus/morpho-ui/es/components/layout/headers/PageHeadDashboard";
|
11
10
|
import WorkTypePropertiesView from "../../../work/work-type/components/WorkTypePropertiesView";
|
12
11
|
import WorkspaceCompletedWorksChart from "../../controls/WorkspaceCompletedWorksChart";
|
12
|
+
import WorkTypeCardList from "../../../work/work-type/components/WorkTypeIconList";
|
13
|
+
import AsideContent from "@voplus/morpho-ui/es/components/layout/AsideContent";
|
13
14
|
import WorkspaceMenu from "../../controls/WorkspaceMenu";
|
14
15
|
import styles from "./index.less";
|
15
16
|
const WorkspaceDefaultView = (props) => {
|
@@ -23,7 +24,7 @@ const WorkspaceDefaultView = (props) => {
|
|
23
24
|
React.createElement("div", { className: "workspace-view-content" },
|
24
25
|
React.createElement(PageHeadDashboard, { avatarIcon: React.createElement(FAIcon, { icon: faFileAlt }), title: React.createElement(React.Fragment, null,
|
25
26
|
React.createElement(InlineEdit, { defaultValue: workspace.name, content: (v) => React.createElement("div", null, workspace.name), onSave: (value) => state.save(value, workspace.name, { Name: value }) }),
|
26
|
-
React.createElement(WorkspaceMenu, { id: id })), description: "Effortless Oversight of Your WorkSpaces and Services." }),
|
27
|
+
React.createElement(WorkspaceMenu, { id: id, icon: React.createElement(FAIcon, { icon: faEllipsisVertical }) })), description: "Effortless Oversight of Your WorkSpaces and Services." }),
|
27
28
|
React.createElement("div", { className: "completed-works-report" },
|
28
29
|
React.createElement(Card, null,
|
29
30
|
React.createElement(WorkspaceCompletedWorksChart, { id: id })))),
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/modules/workspace/pages/WorkspaceDefaultView/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACxC,OAAO,EAAE,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/modules/workspace/pages/WorkspaceDefaultView/index.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -1,24 +0,0 @@
|
|
1
|
-
:global {
|
2
|
-
.notification-overview {
|
3
|
-
.overview-item {
|
4
|
-
&.total {
|
5
|
-
background: #fffdea;
|
6
|
-
.icon {
|
7
|
-
color: #b2a722;
|
8
|
-
}
|
9
|
-
}
|
10
|
-
&.done {
|
11
|
-
background: #eaffee;
|
12
|
-
.icon {
|
13
|
-
color: #21b264;
|
14
|
-
}
|
15
|
-
}
|
16
|
-
&.closed {
|
17
|
-
background: #f7f7f7;
|
18
|
-
.icon {
|
19
|
-
color: #5d5d5d;
|
20
|
-
}
|
21
|
-
}
|
22
|
-
}
|
23
|
-
}
|
24
|
-
}
|
@@ -1,49 +0,0 @@
|
|
1
|
-
:global {
|
2
|
-
.task-overview {
|
3
|
-
.overview-item {
|
4
|
-
&.total {
|
5
|
-
background: #fffdea;
|
6
|
-
.icon {
|
7
|
-
color: #b2a722;
|
8
|
-
}
|
9
|
-
}
|
10
|
-
&.done {
|
11
|
-
background: #eaffee;
|
12
|
-
.icon {
|
13
|
-
color: #21b264;
|
14
|
-
}
|
15
|
-
}
|
16
|
-
&.closed {
|
17
|
-
background: #fff4f4;
|
18
|
-
.icon {
|
19
|
-
color: #b32120;
|
20
|
-
}
|
21
|
-
}
|
22
|
-
}
|
23
|
-
.due-list {
|
24
|
-
.due-item {
|
25
|
-
&.tomorrow {
|
26
|
-
background-color: #fff0e0;
|
27
|
-
border-left-color: #ff951a;
|
28
|
-
.total {
|
29
|
-
color: #ff951a;
|
30
|
-
}
|
31
|
-
}
|
32
|
-
&.week {
|
33
|
-
background-color: #fffad5;
|
34
|
-
border-left-color: #e6d504;
|
35
|
-
.total {
|
36
|
-
color: #e6d504;
|
37
|
-
}
|
38
|
-
}
|
39
|
-
&.month {
|
40
|
-
background-color: #f0faff;
|
41
|
-
border-left-color: #0688e6;
|
42
|
-
.total {
|
43
|
-
color: #0688e6;
|
44
|
-
}
|
45
|
-
}
|
46
|
-
}
|
47
|
-
}
|
48
|
-
}
|
49
|
-
}
|
@@ -1,49 +0,0 @@
|
|
1
|
-
:global {
|
2
|
-
.work-overview {
|
3
|
-
.overview-item {
|
4
|
-
&.total {
|
5
|
-
background: #fffdea;
|
6
|
-
.icon {
|
7
|
-
color: #b2a722;
|
8
|
-
}
|
9
|
-
}
|
10
|
-
&.done {
|
11
|
-
background: #eaffee;
|
12
|
-
.icon {
|
13
|
-
color: #21b264;
|
14
|
-
}
|
15
|
-
}
|
16
|
-
&.closed {
|
17
|
-
background: #fff4f4;
|
18
|
-
.icon {
|
19
|
-
color: #b32120;
|
20
|
-
}
|
21
|
-
}
|
22
|
-
}
|
23
|
-
.due-list {
|
24
|
-
.due-item {
|
25
|
-
&.tomorrow {
|
26
|
-
background-color: #fff0e0;
|
27
|
-
border-left-color: #ff951a;
|
28
|
-
.total {
|
29
|
-
color: #ff951a;
|
30
|
-
}
|
31
|
-
}
|
32
|
-
&.week {
|
33
|
-
background-color: #fffad5;
|
34
|
-
border-left-color: #e6d504;
|
35
|
-
.total {
|
36
|
-
color: #e6d504;
|
37
|
-
}
|
38
|
-
}
|
39
|
-
&.month {
|
40
|
-
background-color: #f0faff;
|
41
|
-
border-left-color: #0688e6;
|
42
|
-
.total {
|
43
|
-
color: #0688e6;
|
44
|
-
}
|
45
|
-
}
|
46
|
-
}
|
47
|
-
}
|
48
|
-
}
|
49
|
-
}
|
@@ -1,58 +0,0 @@
|
|
1
|
-
:global {
|
2
|
-
.work-schedule-overview {
|
3
|
-
.overview-item {
|
4
|
-
.icon {
|
5
|
-
font-size: 16px;
|
6
|
-
}
|
7
|
-
&.total {
|
8
|
-
background: #fffdea;
|
9
|
-
.icon {
|
10
|
-
color: #b2a722;
|
11
|
-
}
|
12
|
-
}
|
13
|
-
&.done {
|
14
|
-
background: #eaffee;
|
15
|
-
.icon {
|
16
|
-
color: #21b264;
|
17
|
-
}
|
18
|
-
}
|
19
|
-
&.closed {
|
20
|
-
background: #fff4f4;
|
21
|
-
.icon {
|
22
|
-
color: #b32120;
|
23
|
-
}
|
24
|
-
}
|
25
|
-
&.terminated {
|
26
|
-
background: #f7f7f7;
|
27
|
-
.icon {
|
28
|
-
color: #5d5d5d;
|
29
|
-
}
|
30
|
-
}
|
31
|
-
}
|
32
|
-
.due-list {
|
33
|
-
.due-item {
|
34
|
-
&.tomorrow {
|
35
|
-
background-color: #fff0e0;
|
36
|
-
border-left-color: #ff951a;
|
37
|
-
.total {
|
38
|
-
color: #ff951a;
|
39
|
-
}
|
40
|
-
}
|
41
|
-
&.week {
|
42
|
-
background-color: #fffad5;
|
43
|
-
border-left-color: #e6d504;
|
44
|
-
.total {
|
45
|
-
color: #e6d504;
|
46
|
-
}
|
47
|
-
}
|
48
|
-
&.month {
|
49
|
-
background-color: #f0faff;
|
50
|
-
border-left-color: #0688e6;
|
51
|
-
.total {
|
52
|
-
color: #0688e6;
|
53
|
-
}
|
54
|
-
}
|
55
|
-
}
|
56
|
-
}
|
57
|
-
}
|
58
|
-
}
|