@things-factory/operato-dataset 6.1.76 → 6.1.77
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/client/menu.ts +27 -27
- package/package.json +8 -8
package/client/menu.ts
CHANGED
|
@@ -7,81 +7,81 @@ startSubscribeActivitySummary()
|
|
|
7
7
|
export function getMenuTemplate(owner: boolean = false, dataSets: any[]) {
|
|
8
8
|
return [
|
|
9
9
|
{
|
|
10
|
-
name: '
|
|
10
|
+
name: i18next.t('title.my workspace'),
|
|
11
11
|
type: 'group'
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
name: '
|
|
14
|
+
name: i18next.t('title.todo list'),
|
|
15
15
|
icon: 'format_list_bulleted',
|
|
16
16
|
path: 'todo-list',
|
|
17
17
|
badge: () => asyncReplace(generateActivitySummary('numberOfToDos')),
|
|
18
18
|
active: ({ path }) => /^activity\//.test(path)
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
|
-
name: '
|
|
21
|
+
name: i18next.t('title.approval pending list'),
|
|
22
22
|
icon: 'approval',
|
|
23
23
|
path: 'approval-pending-list',
|
|
24
24
|
badge: () => asyncReplace(generateActivitySummary('numberOfApprovalPendings')),
|
|
25
25
|
active: ({ path }) => /^approval\//.test(path)
|
|
26
26
|
},
|
|
27
27
|
// {
|
|
28
|
-
// name: '
|
|
28
|
+
// name: i18next.t('title.draft list'),
|
|
29
29
|
// icon: 'drive_file_rename_outline',
|
|
30
30
|
// path: 'draft-list',
|
|
31
31
|
// badge: () => asyncReplace(generateActivitySummary('numberOfDrafts'))
|
|
32
32
|
// },
|
|
33
33
|
{
|
|
34
|
-
name: '
|
|
34
|
+
name: i18next.t('title.done list calendar'),
|
|
35
35
|
icon: 'calendar_month',
|
|
36
36
|
path: 'done-list-calendar',
|
|
37
37
|
description: '업무와 관련된 수행 또는 결재 이력을 캘린더에서 조회할 수 있습니다.',
|
|
38
38
|
menus: [
|
|
39
39
|
{
|
|
40
|
-
name: '
|
|
40
|
+
name: i18next.t('title.done list'),
|
|
41
41
|
icon: 'history',
|
|
42
42
|
path: 'done-list'
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
|
-
name: '
|
|
45
|
+
name: i18next.t('title.approval done list'),
|
|
46
46
|
icon: 'history',
|
|
47
47
|
path: 'approval-done-list'
|
|
48
48
|
}
|
|
49
49
|
]
|
|
50
50
|
},
|
|
51
51
|
owner && {
|
|
52
|
-
name: 'DATASET
|
|
52
|
+
name: 'DATASET',
|
|
53
53
|
type: 'group'
|
|
54
54
|
},
|
|
55
55
|
owner && {
|
|
56
|
-
name: '
|
|
56
|
+
name: i18next.t('title.data-set list'),
|
|
57
57
|
icon: 'display_settings',
|
|
58
58
|
path: 'data-set-list'
|
|
59
59
|
},
|
|
60
60
|
owner && {
|
|
61
|
-
name: '
|
|
61
|
+
name: i18next.t('title.data-key-set list'),
|
|
62
62
|
icon: 'display_settings',
|
|
63
63
|
path: 'data-key-set-list'
|
|
64
64
|
},
|
|
65
65
|
owner && {
|
|
66
|
-
name: '
|
|
66
|
+
name: i18next.t('title.data-sensor list'),
|
|
67
67
|
icon: 'sensors',
|
|
68
68
|
path: 'data-sensor-list'
|
|
69
69
|
},
|
|
70
70
|
{
|
|
71
|
-
name: 'DATA
|
|
71
|
+
name: 'DATA ENTRY',
|
|
72
72
|
type: 'group'
|
|
73
73
|
},
|
|
74
74
|
{
|
|
75
75
|
icon: 'post_add',
|
|
76
|
-
name: '
|
|
76
|
+
name: i18next.t('title.data-entry list'),
|
|
77
77
|
path: 'data-entry-list'
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
|
-
name: 'DATA
|
|
80
|
+
name: 'DATA REPORT',
|
|
81
81
|
type: 'group'
|
|
82
82
|
},
|
|
83
83
|
owner && {
|
|
84
|
-
name: '
|
|
84
|
+
name: i18next.t('title.data-report list'),
|
|
85
85
|
icon: 'checklist',
|
|
86
86
|
path: 'data-sample-list',
|
|
87
87
|
menus:
|
|
@@ -94,12 +94,12 @@ export function getMenuTemplate(owner: boolean = false, dataSets: any[]) {
|
|
|
94
94
|
}) || []
|
|
95
95
|
},
|
|
96
96
|
owner && {
|
|
97
|
-
name: '
|
|
97
|
+
name: i18next.t('title.data-ooc list'),
|
|
98
98
|
icon: 'playlist_remove',
|
|
99
99
|
path: 'data-ooc-list'
|
|
100
100
|
},
|
|
101
101
|
owner && {
|
|
102
|
-
name: '
|
|
102
|
+
name: i18next.t('title.data-summary list'),
|
|
103
103
|
icon: 'checklist',
|
|
104
104
|
path: 'data-summary-list',
|
|
105
105
|
menus:
|
|
@@ -115,41 +115,41 @@ export function getMenuTemplate(owner: boolean = false, dataSets: any[]) {
|
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
icon: 'newspaper',
|
|
118
|
-
name: '
|
|
118
|
+
name: i18next.t('title.data-report-view'),
|
|
119
119
|
path: 'data-report-list'
|
|
120
120
|
},
|
|
121
121
|
owner && {
|
|
122
122
|
icon: 'archive',
|
|
123
|
-
name: '
|
|
123
|
+
name: i18next.t('title.data-archive list'),
|
|
124
124
|
path: 'data-archive-list'
|
|
125
125
|
},
|
|
126
126
|
owner && {
|
|
127
|
-
name: 'organization',
|
|
127
|
+
name: i18next.t('title.organization'),
|
|
128
128
|
type: 'group'
|
|
129
129
|
},
|
|
130
130
|
owner && {
|
|
131
|
-
name: '
|
|
131
|
+
name: i18next.t('title.organization'),
|
|
132
132
|
icon: 'account_tree',
|
|
133
|
-
description: '
|
|
133
|
+
description: '조직 구성과 결재선 관리를 위한 메뉴 구성입니다.',
|
|
134
134
|
menus: [
|
|
135
135
|
{
|
|
136
|
-
name: '
|
|
136
|
+
name: i18next.t('title.contact list'),
|
|
137
137
|
path: 'contact-list'
|
|
138
138
|
},
|
|
139
139
|
{
|
|
140
|
-
name: '
|
|
140
|
+
name: i18next.t('title.employee list'),
|
|
141
141
|
path: 'employee-list'
|
|
142
142
|
},
|
|
143
143
|
{
|
|
144
|
-
name: '
|
|
144
|
+
name: i18next.t('title.department list'),
|
|
145
145
|
path: 'department-list'
|
|
146
146
|
},
|
|
147
147
|
{
|
|
148
|
-
name: '
|
|
148
|
+
name: i18next.t('title.my approval line templates'),
|
|
149
149
|
path: 'my-approval-line-templates-page'
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
|
-
name: '
|
|
152
|
+
name: i18next.t('title.common approval line templates'),
|
|
153
153
|
path: 'common-approval-line-templates-page'
|
|
154
154
|
}
|
|
155
155
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-dataset",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.77",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -64,10 +64,10 @@
|
|
|
64
64
|
"@things-factory/auth-ui": "^6.1.76",
|
|
65
65
|
"@things-factory/board-service": "^6.1.76",
|
|
66
66
|
"@things-factory/board-ui": "^6.1.72",
|
|
67
|
-
"@things-factory/ccp": "^6.1.
|
|
67
|
+
"@things-factory/ccp": "^6.1.77",
|
|
68
68
|
"@things-factory/context-ui": "^6.1.73",
|
|
69
69
|
"@things-factory/dashboard": "^6.1.76",
|
|
70
|
-
"@things-factory/dataset": "^6.1.
|
|
70
|
+
"@things-factory/dataset": "^6.1.77",
|
|
71
71
|
"@things-factory/export-ui": "^6.1.73",
|
|
72
72
|
"@things-factory/help": "^6.1.66",
|
|
73
73
|
"@things-factory/i18n-base": "^6.1.66",
|
|
@@ -77,20 +77,20 @@
|
|
|
77
77
|
"@things-factory/lite-menu": "^6.1.76",
|
|
78
78
|
"@things-factory/more-base": "^6.1.66",
|
|
79
79
|
"@things-factory/more-ui": "^6.1.68",
|
|
80
|
-
"@things-factory/notification": "^6.1.
|
|
80
|
+
"@things-factory/notification": "^6.1.77",
|
|
81
81
|
"@things-factory/oauth2-client": "^6.1.76",
|
|
82
|
-
"@things-factory/organization": "^6.1.
|
|
83
|
-
"@things-factory/qc": "^6.1.
|
|
82
|
+
"@things-factory/organization": "^6.1.77",
|
|
83
|
+
"@things-factory/qc": "^6.1.77",
|
|
84
84
|
"@things-factory/resource-ui": "^6.1.76",
|
|
85
85
|
"@things-factory/setting-base": "^6.1.76",
|
|
86
86
|
"@things-factory/setting-ui": "^6.1.76",
|
|
87
87
|
"@things-factory/shell": "^6.1.66",
|
|
88
88
|
"@things-factory/system-ui": "^6.1.66",
|
|
89
89
|
"@things-factory/work-shift": "^6.1.76",
|
|
90
|
-
"@things-factory/worklist": "^6.1.
|
|
90
|
+
"@things-factory/worklist": "^6.1.77"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
93
|
"@things-factory/builder": "^6.1.66"
|
|
94
94
|
},
|
|
95
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "9f86d66344bad632c73ff4ad192797ef0dd395fc"
|
|
96
96
|
}
|