@things-factory/pdf 7.0.36 → 7.0.37

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/client/pages/pdf-release/pdf-release-importer.ts +90 -0
  2. package/client/pages/pdf-release/pdf-release-list-page.ts +398 -0
  3. package/client/route.ts +5 -1
  4. package/dist-client/pages/pdf-release/pdf-release-importer.d.ts +23 -0
  5. package/dist-client/pages/pdf-release/pdf-release-importer.js +93 -0
  6. package/dist-client/pages/pdf-release/pdf-release-importer.js.map +1 -0
  7. package/dist-client/pages/pdf-release/pdf-release-list-page.d.ts +66 -0
  8. package/dist-client/pages/pdf-release/pdf-release-list-page.js +370 -0
  9. package/dist-client/pages/pdf-release/pdf-release-list-page.js.map +1 -0
  10. package/dist-client/route.d.ts +1 -1
  11. package/dist-client/route.js +3 -0
  12. package/dist-client/route.js.map +1 -1
  13. package/dist-client/tsconfig.tsbuildinfo +1 -1
  14. package/dist-server/controller/pdf-service.d.ts +4 -0
  15. package/dist-server/controller/pdf-service.js +34 -0
  16. package/dist-server/controller/pdf-service.js.map +1 -0
  17. package/dist-server/routers/pdf-private-router.js +51 -4
  18. package/dist-server/routers/pdf-private-router.js.map +1 -1
  19. package/dist-server/service/index.d.ts +3 -2
  20. package/dist-server/service/index.js +8 -0
  21. package/dist-server/service/index.js.map +1 -1
  22. package/dist-server/service/pdf-generate/pdf-generate-resolver.d.ts +6 -0
  23. package/dist-server/service/pdf-generate/pdf-generate-resolver.js +88 -0
  24. package/dist-server/service/pdf-generate/pdf-generate-resolver.js.map +1 -0
  25. package/dist-server/service/pdf-release/index.d.ts +6 -0
  26. package/dist-server/service/pdf-release/index.js +10 -0
  27. package/dist-server/service/pdf-release/index.js.map +1 -0
  28. package/dist-server/service/pdf-release/pdf-release-mutation.d.ts +10 -0
  29. package/dist-server/service/pdf-release/pdf-release-mutation.js +127 -0
  30. package/dist-server/service/pdf-release/pdf-release-mutation.js.map +1 -0
  31. package/dist-server/service/pdf-release/pdf-release-query.d.ts +11 -0
  32. package/dist-server/service/pdf-release/pdf-release-query.js +79 -0
  33. package/dist-server/service/pdf-release/pdf-release-query.js.map +1 -0
  34. package/dist-server/service/pdf-release/pdf-release-type.d.ts +20 -0
  35. package/dist-server/service/pdf-release/pdf-release-type.js +77 -0
  36. package/dist-server/service/pdf-release/pdf-release-type.js.map +1 -0
  37. package/dist-server/service/pdf-release/pdf-release.d.ts +27 -0
  38. package/dist-server/service/pdf-release/pdf-release.js +117 -0
  39. package/dist-server/service/pdf-release/pdf-release.js.map +1 -0
  40. package/dist-server/tsconfig.tsbuildinfo +1 -1
  41. package/helps/pdf/pdf-release.md +160 -0
  42. package/package.json +5 -3
  43. package/server/controller/pdf-service.ts +35 -0
  44. package/server/routers/pdf-private-router.ts +65 -4
  45. package/server/service/index.ts +12 -0
  46. package/server/service/pdf-generate/pdf-generate-resolver.ts +81 -0
  47. package/server/service/pdf-release/index.ts +7 -0
  48. package/server/service/pdf-release/pdf-release-mutation.ts +138 -0
  49. package/server/service/pdf-release/pdf-release-query.ts +51 -0
  50. package/server/service/pdf-release/pdf-release-type.ts +55 -0
  51. package/server/service/pdf-release/pdf-release.ts +103 -0
@@ -0,0 +1,90 @@
1
+ import '@material/web/icon/icon.js'
2
+ import '@operato/data-grist'
3
+
4
+ import gql from 'graphql-tag'
5
+ import { css, html, LitElement } from 'lit'
6
+ import { property } from 'lit/decorators.js'
7
+
8
+ import { client } from '@operato/graphql'
9
+ import { i18next } from '@operato/i18n'
10
+ import { isMobileDevice } from '@operato/utils'
11
+ import { ButtonContainerStyles } from '@operato/styles'
12
+
13
+ export class PdfReleaseImporter extends LitElement {
14
+ static styles = [
15
+ ButtonContainerStyles,
16
+ css`
17
+ :host {
18
+ display: flex;
19
+ flex-direction: column;
20
+
21
+ background-color: #fff;
22
+ }
23
+
24
+ ox-grist {
25
+ flex: 1;
26
+ }
27
+ `
28
+ ]
29
+
30
+ @property({ type: Array }) pdfReleases: any[] = []
31
+ @property({ type: Object }) columns = {
32
+ list: { fields: ['name', 'description'] },
33
+ pagination: { infinite: true },
34
+ columns: [
35
+ {
36
+ type: 'string',
37
+ name: 'name',
38
+ header: i18next.t('field.name'),
39
+ width: 150
40
+ },
41
+ {
42
+ type: 'string',
43
+ name: 'description',
44
+ header: i18next.t('field.description'),
45
+ width: 200
46
+ },
47
+ {
48
+ type: 'checkbox',
49
+ name: 'active',
50
+ header: i18next.t('field.active'),
51
+ width: 60
52
+ }
53
+ ]
54
+ }
55
+
56
+
57
+ render() {
58
+ return html`
59
+ <ox-grist
60
+ .mode=${isMobileDevice() ? 'LIST' : 'GRID'}
61
+ .config=${this.columns}
62
+ .data=${
63
+ {
64
+ records: this.pdfReleases
65
+ }
66
+ }
67
+ ></ox-grist>
68
+
69
+ <div class="button-container">
70
+ <button @click="${this.save.bind(this)}"><md-icon>save</md-icon>${i18next.t('button.save')}</button>
71
+ </div>
72
+ `
73
+ }
74
+
75
+ async save() {
76
+ const response = await client.mutate({
77
+ mutation: gql`
78
+ mutation importPdfReleases($pdfReleases: [PdfReleasePatch!]!) {
79
+ importPdfReleases(pdfReleases: $pdfReleases)
80
+ }
81
+ `,
82
+ variables: { pdfReleases: this.pdfReleases }
83
+ })
84
+
85
+ if (response.errors?.length) return
86
+
87
+ this.dispatchEvent(new CustomEvent('imported'))
88
+ }
89
+ }
90
+
@@ -0,0 +1,398 @@
1
+ import '@material/web/icon/icon.js'
2
+ import '@material/web/button/elevated-button.js'
3
+ import '@operato/data-grist/ox-grist.js'
4
+ import '@operato/data-grist/ox-filters-form.js'
5
+ import '@operato/data-grist/ox-record-creator.js'
6
+
7
+ import { CommonButtonStyles, CommonHeaderStyles, CommonGristStyles, ScrollbarStyles } from '@operato/styles'
8
+ import { PageView, store } from '@operato/shell'
9
+ import { css, html } from 'lit'
10
+ import { customElement, property, query } from 'lit/decorators.js'
11
+ import { ScopedElementsMixin } from '@open-wc/scoped-elements'
12
+ import { ColumnConfig, DataGrist, FetchOption } from '@operato/data-grist'
13
+ import { client } from '@operato/graphql'
14
+ import { i18next, localize } from '@operato/i18n'
15
+ import { notify, openPopup } from '@operato/layout'
16
+ import { OxPopup, OxPrompt } from '@operato/popup'
17
+ import { isMobileDevice } from '@operato/utils'
18
+
19
+ import { connect } from 'pwa-helpers/connect-mixin'
20
+ import gql from 'graphql-tag'
21
+
22
+ import { PdfReleaseImporter } from './pdf-release-importer'
23
+
24
+ @customElement('pdf-release-list-page')
25
+ export class PdfReleaseListPage extends connect(store)(localize(i18next)(ScopedElementsMixin(PageView))) {
26
+
27
+ static styles = [
28
+ ScrollbarStyles,
29
+ CommonGristStyles,
30
+ CommonHeaderStyles,
31
+ css`
32
+ :host {
33
+ display: flex;
34
+
35
+ width: 100%;
36
+
37
+ --grid-record-emphasized-background-color: #8B0000;
38
+ --grid-record-emphasized-color: #FF6B6B;
39
+ }
40
+
41
+ ox-grist {
42
+ overflow-y: auto;
43
+ flex: 1;
44
+ }
45
+
46
+ ox-filters-form {
47
+ flex: 1;
48
+ }
49
+ `
50
+ ]
51
+
52
+ static get scopedElements() {
53
+ return {
54
+ 'pdf-release-importer': PdfReleaseImporter
55
+ }
56
+ }
57
+
58
+ @property({ type: Object }) gristConfig: any
59
+ @property({ type: String }) mode: 'CARD' | 'GRID' | 'LIST' = isMobileDevice() ? 'CARD' : 'GRID'
60
+
61
+ @query('ox-grist') private grist!: DataGrist
62
+
63
+ get context() {
64
+ return {
65
+ title: i18next.t('title.pdf-release list'),
66
+ search: {
67
+ handler: (search: string) => {
68
+ this.grist.searchText = search
69
+ },
70
+ value: this.grist.searchText
71
+ },
72
+ filter: {
73
+ handler: () => {
74
+ this.grist.toggleHeadroom()
75
+ }
76
+ },
77
+ help: 'pdf/pdf-release',
78
+ actions: [
79
+ {
80
+ title: i18next.t('button.save'),
81
+ action: this._updatePdfRelease.bind(this),
82
+ ...CommonButtonStyles.save
83
+ },
84
+ {
85
+ title: i18next.t('button.delete'),
86
+ action: this._deletePdfRelease.bind(this),
87
+ ...CommonButtonStyles.delete
88
+ }
89
+ ],
90
+ exportable: {
91
+ name: i18next.t('title.pdf-release list'),
92
+ data: this.exportHandler.bind(this)
93
+ },
94
+ importable: {
95
+ handler: this.importHandler.bind(this)
96
+ }
97
+ }
98
+ }
99
+
100
+ render() {
101
+ const mode = this.mode || (isMobileDevice() ? 'CARD' : 'GRID')
102
+
103
+ return html`
104
+ <ox-grist
105
+ .mode=${mode}
106
+ .config=${this.gristConfig}
107
+ .fetchHandler=${this.fetchHandler.bind(this)}
108
+ >
109
+ <div slot="headroom" class="header">
110
+ <div class="filters">
111
+ <ox-filters-form autofocus without-search></ox-filters-form>
112
+
113
+ <div id="modes">
114
+ <md-icon @click=${() => (this.mode = 'GRID')} ?active=${mode == 'GRID'}>grid_on</md-icon>
115
+ <md-icon @click=${() => (this.mode = 'LIST')} ?active=${mode == 'LIST'}>format_list_bulleted</md-icon>
116
+ <md-icon @click=${() => (this.mode = 'CARD')} ?active=${mode == 'CARD'}>apps</md-icon>
117
+ </div>
118
+
119
+ <ox-record-creator id="add" .callback=${this.creationCallback.bind(this)}>
120
+ <button>
121
+ <md-icon>add</md-icon>
122
+ </button>
123
+ </ox-record-creator>
124
+
125
+ </div>
126
+ </div>
127
+ </ox-grist>
128
+ `
129
+ }
130
+
131
+ async pageInitialized(lifecycle: any) {
132
+ this.gristConfig = {
133
+ list: {
134
+ fields: ['name', 'description'],
135
+ details: ['active', 'updatedAt']
136
+ },
137
+ columns: [
138
+ { type: 'gutter', gutterName: 'sequence' },
139
+ { type: 'gutter', gutterName: 'row-selector', multiple: true },
140
+ {
141
+ type: 'string',
142
+ name: 'name',
143
+ header: i18next.t('field.name'),
144
+ record: {
145
+ editable: true
146
+ },
147
+ filter: 'search',
148
+ sortable: true,
149
+ width: 150
150
+ },
151
+ {
152
+ type: 'string',
153
+ name: 'description',
154
+ header: i18next.t('field.description'),
155
+ record: {
156
+ editable: true
157
+ },
158
+ filter: 'search',
159
+ width: 200
160
+ },
161
+ {
162
+ type: 'checkbox',
163
+ name: 'active',
164
+ label: true,
165
+ header: i18next.t('field.active'),
166
+ record: {
167
+ editable: true
168
+ },
169
+ filter: true,
170
+ sortable: true,
171
+ width: 60
172
+ },
173
+ {
174
+ type: 'resource-object',
175
+ name: 'updater',
176
+ header: i18next.t('field.updater'),
177
+ record: {
178
+ editable: false
179
+ },
180
+ sortable: true,
181
+ width: 120
182
+ },
183
+ {
184
+ type: 'datetime',
185
+ name: 'updatedAt',
186
+ header: i18next.t('field.updated_at'),
187
+ record: {
188
+ editable: false
189
+ },
190
+ sortable: true,
191
+ width: 180
192
+ }
193
+ ],
194
+ rows: {
195
+ appendable: false,
196
+ selectable: {
197
+ multiple: true
198
+ }
199
+ },
200
+ sorters: [
201
+ {
202
+ name: 'name'
203
+ }
204
+ ]
205
+ }
206
+ }
207
+
208
+ async pageUpdated(changes: any, lifecycle: any) {
209
+ if (this.active) {
210
+ // do something here when this page just became as active
211
+ }
212
+ }
213
+
214
+ async fetchHandler({ page = 1, limit = 100, sortings = [], filters = [] }: FetchOption) {
215
+ const response = await client.query({
216
+ query: gql`
217
+ query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {
218
+ responses: pdfReleases(filters: $filters, pagination: $pagination, sortings: $sortings) {
219
+ items {
220
+ id
221
+ name
222
+ description
223
+ active
224
+ updater {
225
+ id
226
+ name
227
+ }
228
+ updatedAt
229
+ }
230
+ total
231
+ }
232
+ }
233
+ `,
234
+ variables: {
235
+ filters,
236
+ pagination: { page, limit },
237
+ sortings
238
+ }
239
+ })
240
+
241
+ return {
242
+ total: response.data.responses.total || 0,
243
+ records: response.data.responses.items || []
244
+ }
245
+ }
246
+
247
+ async _deletePdfRelease() {
248
+ if (
249
+ await OxPrompt.open({
250
+ title: i18next.t('text.are_you_sure'),
251
+ text: i18next.t('text.sure_to_x', { x: i18next.t('text.delete') }),
252
+ confirmButton: { text: i18next.t('button.confirm') },
253
+ cancelButton: { text: i18next.t('button.cancel') }
254
+ })
255
+ ) {
256
+ const ids = this.grist.selected.map(record => record.id)
257
+ if (ids && ids.length > 0) {
258
+ const response = await client.mutate({
259
+ mutation: gql`
260
+ mutation ($ids: [String!]!) {
261
+ deletePdfReleases(ids: $ids)
262
+ }
263
+ `,
264
+ variables: {
265
+ ids
266
+ }
267
+ })
268
+
269
+ if (!response.errors) {
270
+ this.grist.fetch()
271
+ notify({
272
+ message: i18next.t('text.info_x_successfully', { x: i18next.t('text.delete') })
273
+ })
274
+ }
275
+ }
276
+ }
277
+ }
278
+
279
+ async _updatePdfRelease() {
280
+ let patches = this.grist.dirtyRecords
281
+ if (patches && patches.length) {
282
+ patches = patches.map(patch => {
283
+ let patchField: any = patch.id ? { id: patch.id } : {}
284
+ const dirtyFields = patch.__dirtyfields__
285
+ for (let key in dirtyFields) {
286
+ patchField[key] = dirtyFields[key].after
287
+ }
288
+ patchField.cuFlag = patch.__dirty__
289
+
290
+ return patchField
291
+ })
292
+
293
+ const response = await client.mutate({
294
+ mutation: gql`
295
+ mutation ($patches: [PdfReleasePatch!]!) {
296
+ updateMultiplePdfRelease(patches: $patches) {
297
+ name
298
+ }
299
+ }
300
+ `,
301
+ variables: {
302
+ patches
303
+ }
304
+ })
305
+
306
+ if (!response.errors) {
307
+ this.grist.fetch()
308
+ }
309
+ }
310
+ }
311
+
312
+ async creationCallback(pdfRelease) {
313
+ try {
314
+ const response = await client.query({
315
+ query: gql`
316
+ mutation ($pdfRelease: NewPdfRelease!) {
317
+ createPdfRelease(pdfRelease: $pdfRelease) {
318
+ id
319
+ }
320
+ }
321
+ `,
322
+ variables: {
323
+ pdfRelease
324
+ },
325
+ context: {
326
+ hasUpload: true
327
+ }
328
+ })
329
+
330
+ if (!response.errors) {
331
+ this.grist.fetch()
332
+ document.dispatchEvent(
333
+ new CustomEvent('notify', {
334
+ detail: {
335
+ message: i18next.t('text.data_created_successfully')
336
+ }
337
+ })
338
+ )
339
+ }
340
+
341
+ return true
342
+ } catch (ex) {
343
+ console.error(ex)
344
+ document.dispatchEvent(
345
+ new CustomEvent('notify', {
346
+ detail: {
347
+ type: 'error',
348
+ message: i18next.t('text.error')
349
+ }
350
+ })
351
+ )
352
+ return false
353
+ }
354
+ }
355
+
356
+ async exportHandler() {
357
+ const exportTargets = this.grist.selected.length ? this.grist.selected : this.grist.dirtyData.records
358
+ const targetFieldSet = new Set([
359
+ 'id',
360
+ 'name',
361
+ 'description',
362
+ 'active'
363
+ ])
364
+
365
+ return exportTargets.map(pdfRelease => {
366
+ let tempObj = {}
367
+ for (const field of targetFieldSet) {
368
+ tempObj[field] = pdfRelease[field]
369
+ }
370
+
371
+ return tempObj
372
+ })
373
+ }
374
+
375
+ async importHandler(records) {
376
+ const popup = openPopup(
377
+ html`
378
+ <pdf-release-importer
379
+ .pdfReleases=${records}
380
+ @imported=${() => {
381
+ history.back()
382
+ this.grist.fetch()
383
+ }}
384
+ ></pdf-release-importer>
385
+ `,
386
+ {
387
+ backdrop: true,
388
+ size: 'large',
389
+ title: i18next.t('title.import pdf-release')
390
+ }
391
+ )
392
+
393
+ popup.onclosed = () => {
394
+ this.grist.fetch()
395
+ }
396
+ }
397
+ }
398
+
package/client/route.ts CHANGED
@@ -3,5 +3,9 @@ export default function route(page: string) {
3
3
  case 'pdf-template-list-page':
4
4
  import('./pages/pdf-template/pdf-template-list-page')
5
5
  return page
6
+
7
+ case 'pdf-release-list':
8
+ import('./pages/pdf-release/pdf-release-list-page')
9
+ return page
10
+ }
6
11
  }
7
- }
@@ -0,0 +1,23 @@
1
+ import '@material/web/icon/icon.js';
2
+ import '@operato/data-grist';
3
+ import { LitElement } from 'lit';
4
+ export declare class PdfReleaseImporter extends LitElement {
5
+ static styles: import("lit").CSSResult[];
6
+ pdfReleases: any[];
7
+ columns: {
8
+ list: {
9
+ fields: string[];
10
+ };
11
+ pagination: {
12
+ infinite: boolean;
13
+ };
14
+ columns: {
15
+ type: string;
16
+ name: string;
17
+ header: string;
18
+ width: number;
19
+ }[];
20
+ };
21
+ render(): import("lit-html").TemplateResult<1>;
22
+ save(): Promise<void>;
23
+ }
@@ -0,0 +1,93 @@
1
+ import { __decorate, __metadata } from "tslib";
2
+ import '@material/web/icon/icon.js';
3
+ import '@operato/data-grist';
4
+ import gql from 'graphql-tag';
5
+ import { css, html, LitElement } from 'lit';
6
+ import { property } from 'lit/decorators.js';
7
+ import { client } from '@operato/graphql';
8
+ import { i18next } from '@operato/i18n';
9
+ import { isMobileDevice } from '@operato/utils';
10
+ import { ButtonContainerStyles } from '@operato/styles';
11
+ export class PdfReleaseImporter extends LitElement {
12
+ constructor() {
13
+ super(...arguments);
14
+ this.pdfReleases = [];
15
+ this.columns = {
16
+ list: { fields: ['name', 'description'] },
17
+ pagination: { infinite: true },
18
+ columns: [
19
+ {
20
+ type: 'string',
21
+ name: 'name',
22
+ header: i18next.t('field.name'),
23
+ width: 150
24
+ },
25
+ {
26
+ type: 'string',
27
+ name: 'description',
28
+ header: i18next.t('field.description'),
29
+ width: 200
30
+ },
31
+ {
32
+ type: 'checkbox',
33
+ name: 'active',
34
+ header: i18next.t('field.active'),
35
+ width: 60
36
+ }
37
+ ]
38
+ };
39
+ }
40
+ render() {
41
+ return html `
42
+ <ox-grist
43
+ .mode=${isMobileDevice() ? 'LIST' : 'GRID'}
44
+ .config=${this.columns}
45
+ .data=${{
46
+ records: this.pdfReleases
47
+ }}
48
+ ></ox-grist>
49
+
50
+ <div class="button-container">
51
+ <button @click="${this.save.bind(this)}"><md-icon>save</md-icon>${i18next.t('button.save')}</button>
52
+ </div>
53
+ `;
54
+ }
55
+ async save() {
56
+ var _a;
57
+ const response = await client.mutate({
58
+ mutation: gql `
59
+ mutation importPdfReleases($pdfReleases: [PdfReleasePatch!]!) {
60
+ importPdfReleases(pdfReleases: $pdfReleases)
61
+ }
62
+ `,
63
+ variables: { pdfReleases: this.pdfReleases }
64
+ });
65
+ if ((_a = response.errors) === null || _a === void 0 ? void 0 : _a.length)
66
+ return;
67
+ this.dispatchEvent(new CustomEvent('imported'));
68
+ }
69
+ }
70
+ PdfReleaseImporter.styles = [
71
+ ButtonContainerStyles,
72
+ css `
73
+ :host {
74
+ display: flex;
75
+ flex-direction: column;
76
+
77
+ background-color: #fff;
78
+ }
79
+
80
+ ox-grist {
81
+ flex: 1;
82
+ }
83
+ `
84
+ ];
85
+ __decorate([
86
+ property({ type: Array }),
87
+ __metadata("design:type", Array)
88
+ ], PdfReleaseImporter.prototype, "pdfReleases", void 0);
89
+ __decorate([
90
+ property({ type: Object }),
91
+ __metadata("design:type", Object)
92
+ ], PdfReleaseImporter.prototype, "columns", void 0);
93
+ //# sourceMappingURL=pdf-release-importer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pdf-release-importer.js","sourceRoot":"","sources":["../../../client/pages/pdf-release/pdf-release-importer.ts"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AACnC,OAAO,qBAAqB,CAAA;AAE5B,OAAO,GAAG,MAAM,aAAa,CAAA;AAC7B,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,KAAK,CAAA;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAE5C,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AACvC,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAC/C,OAAO,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAA;AAEvD,MAAM,OAAO,kBAAmB,SAAQ,UAAU;IAAlD;;QAiB6B,gBAAW,GAAU,EAAE,CAAA;QACtB,YAAO,GAAG;YACpC,IAAI,EAAE,EAAE,MAAM,EAAE,CAAC,MAAM,EAAE,aAAa,CAAC,EAAE;YACzC,UAAU,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;YAC9B,OAAO,EAAE;gBACP;oBACE,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,MAAM;oBACZ,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,YAAY,CAAC;oBAC/B,KAAK,EAAE,GAAG;iBACX;gBACD;oBACE,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,aAAa;oBACnB,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,mBAAmB,CAAC;oBACtC,KAAK,EAAE,GAAG;iBACX;gBACD;oBACE,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,QAAQ;oBACd,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,cAAc,CAAC;oBACjC,KAAK,EAAE,EAAE;iBACV;aACF;SACF,CAAA;IAmCH,CAAC;IAhCC,MAAM;QACJ,OAAO,IAAI,CAAA;;gBAEC,cAAc,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM;kBAChC,IAAI,CAAC,OAAO;gBAEpB;YACE,OAAO,EAAE,IAAI,CAAC,WAAW;SAE7B;;;;0BAIkB,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,4BAA4B,OAAO,CAAC,CAAC,CAAC,aAAa,CAAC;;KAE7F,CAAA;IACH,CAAC;IAED,KAAK,CAAC,IAAI;;QACR,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC;YACnC,QAAQ,EAAE,GAAG,CAAA;;;;OAIZ;YACD,SAAS,EAAE,EAAE,WAAW,EAAE,IAAI,CAAC,WAAW,EAAE;SAC7C,CAAC,CAAA;QAEF,IAAI,MAAA,QAAQ,CAAC,MAAM,0CAAE,MAAM;YAAE,OAAM;QAEnC,IAAI,CAAC,aAAa,CAAC,IAAI,WAAW,CAAC,UAAU,CAAC,CAAC,CAAA;IACjD,CAAC;;AA1EM,yBAAM,GAAG;IACd,qBAAqB;IACrB,GAAG,CAAA;;;;;;;;;;;KAWF;CACF,AAdY,CAcZ;AAE0B;IAA1B,QAAQ,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;;uDAAwB;AACtB;IAA3B,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;mDAuB1B","sourcesContent":["import '@material/web/icon/icon.js'\nimport '@operato/data-grist'\n\nimport gql from 'graphql-tag'\nimport { css, html, LitElement } from 'lit'\nimport { property } from 'lit/decorators.js'\n\nimport { client } from '@operato/graphql'\nimport { i18next } from '@operato/i18n'\nimport { isMobileDevice } from '@operato/utils'\nimport { ButtonContainerStyles } from '@operato/styles'\n\nexport class PdfReleaseImporter extends LitElement {\n static styles = [\n ButtonContainerStyles,\n css`\n :host {\n display: flex;\n flex-direction: column;\n\n background-color: #fff;\n }\n\n ox-grist {\n flex: 1;\n }\n `\n ]\n\n @property({ type: Array }) pdfReleases: any[] = []\n @property({ type: Object }) columns = {\n list: { fields: ['name', 'description'] },\n pagination: { infinite: true },\n columns: [\n {\n type: 'string',\n name: 'name',\n header: i18next.t('field.name'),\n width: 150\n },\n {\n type: 'string',\n name: 'description',\n header: i18next.t('field.description'),\n width: 200\n },\n {\n type: 'checkbox',\n name: 'active',\n header: i18next.t('field.active'),\n width: 60\n }\n ]\n }\n\n\n render() {\n return html`\n <ox-grist\n .mode=${isMobileDevice() ? 'LIST' : 'GRID'}\n .config=${this.columns}\n .data=${\n { \n records: this.pdfReleases \n }\n }\n ></ox-grist>\n\n <div class=\"button-container\">\n <button @click=\"${this.save.bind(this)}\"><md-icon>save</md-icon>${i18next.t('button.save')}</button>\n </div>\n `\n }\n\n async save() {\n const response = await client.mutate({\n mutation: gql`\n mutation importPdfReleases($pdfReleases: [PdfReleasePatch!]!) {\n importPdfReleases(pdfReleases: $pdfReleases)\n }\n `,\n variables: { pdfReleases: this.pdfReleases }\n })\n\n if (response.errors?.length) return\n\n this.dispatchEvent(new CustomEvent('imported'))\n }\n}\n\n"]}
@@ -0,0 +1,66 @@
1
+ import '@material/web/icon/icon.js';
2
+ import '@material/web/button/elevated-button.js';
3
+ import '@operato/data-grist/ox-grist.js';
4
+ import '@operato/data-grist/ox-filters-form.js';
5
+ import '@operato/data-grist/ox-record-creator.js';
6
+ import { PageView } from '@operato/shell';
7
+ import { FetchOption } from '@operato/data-grist';
8
+ import { PdfReleaseImporter } from './pdf-release-importer';
9
+ declare const PdfReleaseListPage_base: (new (...args: any[]) => {
10
+ _storeUnsubscribe: import("redux").Unsubscribe;
11
+ connectedCallback(): void;
12
+ disconnectedCallback(): void;
13
+ stateChanged(_state: unknown): void;
14
+ readonly isConnected: boolean;
15
+ }) & (new (...args: any[]) => import("lit").LitElement) & typeof PageView & import("@open-wc/dedupe-mixin").Constructor<import("@open-wc/scoped-elements/types/src/types").ScopedElementsHost>;
16
+ export declare class PdfReleaseListPage extends PdfReleaseListPage_base {
17
+ static styles: import("lit").CSSResult[];
18
+ static get scopedElements(): {
19
+ 'pdf-release-importer': typeof PdfReleaseImporter;
20
+ };
21
+ gristConfig: any;
22
+ mode: 'CARD' | 'GRID' | 'LIST';
23
+ private grist;
24
+ get context(): {
25
+ title: string;
26
+ search: {
27
+ handler: (search: string) => void;
28
+ value: string;
29
+ };
30
+ filter: {
31
+ handler: () => void;
32
+ };
33
+ help: string;
34
+ actions: {
35
+ icon: string;
36
+ emphasis: {
37
+ raised: boolean;
38
+ outlined: boolean;
39
+ dense: boolean;
40
+ danger: boolean;
41
+ };
42
+ title: string;
43
+ action: () => Promise<void>;
44
+ }[];
45
+ exportable: {
46
+ name: string;
47
+ data: () => Promise<{}[]>;
48
+ };
49
+ importable: {
50
+ handler: (records: any) => Promise<void>;
51
+ };
52
+ };
53
+ render(): import("lit-html").TemplateResult<1>;
54
+ pageInitialized(lifecycle: any): Promise<void>;
55
+ pageUpdated(changes: any, lifecycle: any): Promise<void>;
56
+ fetchHandler({ page, limit, sortings, filters }: FetchOption): Promise<{
57
+ total: any;
58
+ records: any;
59
+ }>;
60
+ _deletePdfRelease(): Promise<void>;
61
+ _updatePdfRelease(): Promise<void>;
62
+ creationCallback(pdfRelease: any): Promise<boolean>;
63
+ exportHandler(): Promise<{}[]>;
64
+ importHandler(records: any): Promise<void>;
65
+ }
66
+ export {};