@things-factory/operato-board 4.0.26 → 4.0.31
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/pages/board-list-page.js +12 -10
- package/config.development.js +12 -0
- package/config.production.js +5 -0
- package/package.json +64 -64
|
@@ -4,7 +4,17 @@ import '../board-list/group-bar'
|
|
|
4
4
|
import '../viewparts/board-info'
|
|
5
5
|
import '../viewparts/group-info'
|
|
6
6
|
|
|
7
|
-
import
|
|
7
|
+
import gql from 'graphql-tag'
|
|
8
|
+
import { css, html } from 'lit-element'
|
|
9
|
+
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
10
|
+
|
|
11
|
+
import InfiniteScrollable from '@operato/utils/mixins/infinite-scrollable.js'
|
|
12
|
+
import { UPDATE_FAVORITES } from '@things-factory/fav-base'
|
|
13
|
+
import { openOverlay } from '@things-factory/layout-base'
|
|
14
|
+
import { client, navigate, PageView, store } from '@things-factory/shell'
|
|
15
|
+
import { ScrollbarStyles } from '@things-factory/styles'
|
|
16
|
+
import { pulltorefresh, swipe } from '@things-factory/utils'
|
|
17
|
+
|
|
8
18
|
import {
|
|
9
19
|
createBoard,
|
|
10
20
|
createGroup,
|
|
@@ -16,14 +26,6 @@ import {
|
|
|
16
26
|
updateBoard,
|
|
17
27
|
updateGroup
|
|
18
28
|
} from '../graphql'
|
|
19
|
-
import { css, html } from 'lit-element'
|
|
20
|
-
import { pulltorefresh, swipe } from '@things-factory/utils'
|
|
21
|
-
|
|
22
|
-
import { ScrollbarStyles } from '@things-factory/styles'
|
|
23
|
-
import { UPDATE_FAVORITES } from '@things-factory/fav-base'
|
|
24
|
-
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
25
|
-
import gql from 'graphql-tag'
|
|
26
|
-
import { openOverlay } from '@things-factory/layout-base'
|
|
27
29
|
|
|
28
30
|
class BoardListPage extends connect(store)(InfiniteScrollable(PageView)) {
|
|
29
31
|
static get styles() {
|
|
@@ -417,7 +419,7 @@ class BoardListPage extends connect(store)(InfiniteScrollable(PageView)) {
|
|
|
417
419
|
try {
|
|
418
420
|
await client.mutate({
|
|
419
421
|
mutation: gql`
|
|
420
|
-
mutation($id: String!, $boardIds: [String!]!) {
|
|
422
|
+
mutation ($id: String!, $boardIds: [String!]!) {
|
|
421
423
|
leavePlayGroup(id: $id, boardIds: $boardIds) {
|
|
422
424
|
id
|
|
423
425
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
var licenseKey = require('./config/license').Key
|
|
2
|
+
module.exports = {
|
|
3
|
+
accessTokenCookieKey: 'access_token.board',
|
|
4
|
+
licenseKey: licenseKey,
|
|
5
|
+
storage: {
|
|
6
|
+
type: 's3',
|
|
7
|
+
accessKeyId: 'AKIAQAYF6R4N7RSOCEMD',
|
|
8
|
+
secretAccessKey: 'n14c8n42prH68oizEIrLbf50I5Edx3RZtU73jkrN',
|
|
9
|
+
bucketName: 'aidoop-r',
|
|
10
|
+
region: 'ap-northeast-2'
|
|
11
|
+
}
|
|
12
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-board",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.31",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -42,73 +42,73 @@
|
|
|
42
42
|
"docker:push:cn": "docker image push hatiolab/operato-board:latest-cn && docker image push hatiolab/operato-board:$npm_package_version-cn"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@operato/attachment": "^0.3.
|
|
46
|
-
"@operato/scene-ar": "^0.
|
|
47
|
-
"@operato/scene-chartjs": "^0.
|
|
48
|
-
"@operato/scene-clock": "^0.
|
|
49
|
-
"@operato/scene-clone": "^0.
|
|
50
|
-
"@operato/scene-compass": "^0.
|
|
51
|
-
"@operato/scene-gauge": "^0.
|
|
52
|
-
"@operato/scene-grist": "^0.
|
|
53
|
-
"@operato/scene-i18n": "^0.
|
|
54
|
-
"@operato/scene-indoor-map": "^0.
|
|
55
|
-
"@operato/scene-integration": "^0.
|
|
56
|
-
"@operato/scene-legend": "^0.
|
|
57
|
-
"@operato/scene-progressbar": "^0.
|
|
58
|
-
"@operato/scene-random": "^0.
|
|
59
|
-
"@operato/scene-switch": "^0.
|
|
60
|
-
"@operato/scene-tab": "^0.
|
|
61
|
-
"@operato/scene-table": "^0.
|
|
62
|
-
"@operato/scene-timer": "^0.
|
|
63
|
-
"@operato/scene-wheel-sorter": "^0.
|
|
64
|
-
"@things-factory/apptool-ui": "^4.0.
|
|
65
|
-
"@things-factory/attachment-ui": "^4.0.
|
|
66
|
-
"@things-factory/auth-ui": "^4.0.
|
|
67
|
-
"@things-factory/board-service": "^4.0.
|
|
68
|
-
"@things-factory/board-ui": "^4.0.
|
|
69
|
-
"@things-factory/context-ui": "^4.0.
|
|
70
|
-
"@things-factory/export-ui": "^4.0.
|
|
71
|
-
"@things-factory/fav-base": "^4.0.
|
|
72
|
-
"@things-factory/font-base": "^4.0.
|
|
73
|
-
"@things-factory/form-ui": "^4.0.
|
|
74
|
-
"@things-factory/help": "^4.0.
|
|
75
|
-
"@things-factory/i18n-ui": "^4.0.
|
|
76
|
-
"@things-factory/import-ui": "^4.0.
|
|
77
|
-
"@things-factory/integration-notification": "^4.0.
|
|
78
|
-
"@things-factory/integration-ui": "^4.0.
|
|
79
|
-
"@things-factory/layout-ui": "^4.0.
|
|
80
|
-
"@things-factory/more-ui": "^4.0.
|
|
81
|
-
"@things-factory/notification": "^4.0.
|
|
82
|
-
"@things-factory/oauth2-client": "^4.0.
|
|
83
|
-
"@things-factory/offline-ui": "^4.0.
|
|
45
|
+
"@operato/attachment": "^0.3.7",
|
|
46
|
+
"@operato/scene-ar": "^0.1.2",
|
|
47
|
+
"@operato/scene-chartjs": "^0.1.2",
|
|
48
|
+
"@operato/scene-clock": "^0.1.2",
|
|
49
|
+
"@operato/scene-clone": "^0.1.2",
|
|
50
|
+
"@operato/scene-compass": "^0.1.2",
|
|
51
|
+
"@operato/scene-gauge": "^0.1.2",
|
|
52
|
+
"@operato/scene-grist": "^0.1.2",
|
|
53
|
+
"@operato/scene-i18n": "^0.1.2",
|
|
54
|
+
"@operato/scene-indoor-map": "^0.1.2",
|
|
55
|
+
"@operato/scene-integration": "^0.1.2",
|
|
56
|
+
"@operato/scene-legend": "^0.1.2",
|
|
57
|
+
"@operato/scene-progressbar": "^0.1.2",
|
|
58
|
+
"@operato/scene-random": "^0.1.2",
|
|
59
|
+
"@operato/scene-switch": "^0.1.2",
|
|
60
|
+
"@operato/scene-tab": "^0.1.2",
|
|
61
|
+
"@operato/scene-table": "^0.1.2",
|
|
62
|
+
"@operato/scene-timer": "^0.1.2",
|
|
63
|
+
"@operato/scene-wheel-sorter": "^0.1.2",
|
|
64
|
+
"@things-factory/apptool-ui": "^4.0.31",
|
|
65
|
+
"@things-factory/attachment-ui": "^4.0.31",
|
|
66
|
+
"@things-factory/auth-ui": "^4.0.31",
|
|
67
|
+
"@things-factory/board-service": "^4.0.31",
|
|
68
|
+
"@things-factory/board-ui": "^4.0.31",
|
|
69
|
+
"@things-factory/context-ui": "^4.0.31",
|
|
70
|
+
"@things-factory/export-ui": "^4.0.31",
|
|
71
|
+
"@things-factory/fav-base": "^4.0.31",
|
|
72
|
+
"@things-factory/font-base": "^4.0.31",
|
|
73
|
+
"@things-factory/form-ui": "^4.0.31",
|
|
74
|
+
"@things-factory/help": "^4.0.31",
|
|
75
|
+
"@things-factory/i18n-ui": "^4.0.31",
|
|
76
|
+
"@things-factory/import-ui": "^4.0.31",
|
|
77
|
+
"@things-factory/integration-notification": "^4.0.31",
|
|
78
|
+
"@things-factory/integration-ui": "^4.0.31",
|
|
79
|
+
"@things-factory/layout-ui": "^4.0.31",
|
|
80
|
+
"@things-factory/more-ui": "^4.0.31",
|
|
81
|
+
"@things-factory/notification": "^4.0.31",
|
|
82
|
+
"@things-factory/oauth2-client": "^4.0.31",
|
|
83
|
+
"@things-factory/offline-ui": "^4.0.31",
|
|
84
84
|
"@things-factory/operato-license-checker": "^3.0.4",
|
|
85
|
-
"@things-factory/pdf": "^4.0.
|
|
86
|
-
"@things-factory/print-service": "^4.0.
|
|
87
|
-
"@things-factory/print-ui": "^4.0.
|
|
88
|
-
"@things-factory/resource-ui": "^4.0.
|
|
89
|
-
"@things-factory/scene-baidu-map": "^4.0.
|
|
90
|
-
"@things-factory/scene-data-transform": "^4.0.
|
|
91
|
-
"@things-factory/scene-excel": "^4.0.
|
|
92
|
-
"@things-factory/scene-firebase": "^4.0.
|
|
93
|
-
"@things-factory/scene-form": "^4.0.
|
|
94
|
-
"@things-factory/scene-google-map": "^4.0.
|
|
95
|
-
"@things-factory/scene-graphql": "^4.0.
|
|
85
|
+
"@things-factory/pdf": "^4.0.31",
|
|
86
|
+
"@things-factory/print-service": "^4.0.31",
|
|
87
|
+
"@things-factory/print-ui": "^4.0.31",
|
|
88
|
+
"@things-factory/resource-ui": "^4.0.31",
|
|
89
|
+
"@things-factory/scene-baidu-map": "^4.0.31",
|
|
90
|
+
"@things-factory/scene-data-transform": "^4.0.31",
|
|
91
|
+
"@things-factory/scene-excel": "^4.0.31",
|
|
92
|
+
"@things-factory/scene-firebase": "^4.0.31",
|
|
93
|
+
"@things-factory/scene-form": "^4.0.31",
|
|
94
|
+
"@things-factory/scene-google-map": "^4.0.31",
|
|
95
|
+
"@things-factory/scene-graphql": "^4.0.31",
|
|
96
96
|
"@things-factory/scene-half-roundrect": "^4.0.9",
|
|
97
|
-
"@things-factory/scene-label": "^4.0.
|
|
98
|
-
"@things-factory/scene-marker": "^4.0.
|
|
99
|
-
"@things-factory/scene-mqtt": "^4.0.
|
|
100
|
-
"@things-factory/scene-news-ticker": "^4.0.
|
|
101
|
-
"@things-factory/scene-restful": "^4.0.
|
|
102
|
-
"@things-factory/scene-urdf": "^4.0.
|
|
103
|
-
"@things-factory/scene-visualizer": "^4.0.
|
|
104
|
-
"@things-factory/screencast-ui": "^4.0.
|
|
105
|
-
"@things-factory/setting-ui": "^4.0.
|
|
106
|
-
"@things-factory/system-ui": "^4.0.
|
|
97
|
+
"@things-factory/scene-label": "^4.0.31",
|
|
98
|
+
"@things-factory/scene-marker": "^4.0.31",
|
|
99
|
+
"@things-factory/scene-mqtt": "^4.0.31",
|
|
100
|
+
"@things-factory/scene-news-ticker": "^4.0.31",
|
|
101
|
+
"@things-factory/scene-restful": "^4.0.31",
|
|
102
|
+
"@things-factory/scene-urdf": "^4.0.31",
|
|
103
|
+
"@things-factory/scene-visualizer": "^4.0.31",
|
|
104
|
+
"@things-factory/screencast-ui": "^4.0.31",
|
|
105
|
+
"@things-factory/setting-ui": "^4.0.31",
|
|
106
|
+
"@things-factory/system-ui": "^4.0.31"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@things-factory/board-test": "^4.0.
|
|
110
|
-
"@things-factory/builder": "^4.0.
|
|
109
|
+
"@things-factory/board-test": "^4.0.31",
|
|
110
|
+
"@things-factory/builder": "^4.0.31"
|
|
111
111
|
},
|
|
112
112
|
"resolutions": {},
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "6c021ffdeacc9d123298528f6bba91f61389f33d"
|
|
114
114
|
}
|