@valtimo/plugin 10.0.1 → 10.1.0

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 (26) hide show
  1. package/esm2020/lib/plugins/notificaties-api/assets/notificaties-api-plugin-logo.mjs +18 -0
  2. package/esm2020/lib/plugins/notificaties-api/components/notificaties-api-configuration/notificaties-api-configuration.component.mjs +80 -0
  3. package/esm2020/lib/plugins/notificaties-api/models/config.mjs +17 -0
  4. package/esm2020/lib/plugins/notificaties-api/models/index.mjs +17 -0
  5. package/esm2020/lib/plugins/notificaties-api/notificaties-api-plugin-module.mjs +52 -0
  6. package/esm2020/lib/plugins/notificaties-api/notificaties-api-plugin.specification.mjs +53 -0
  7. package/esm2020/public-api.mjs +5 -1
  8. package/fesm2015/valtimo-plugin.mjs +188 -1
  9. package/fesm2015/valtimo-plugin.mjs.map +1 -1
  10. package/fesm2020/valtimo-plugin.mjs +186 -1
  11. package/fesm2020/valtimo-plugin.mjs.map +1 -1
  12. package/lib/plugins/notificaties-api/assets/notificaties-api-plugin-logo.d.ts +3 -0
  13. package/lib/plugins/notificaties-api/assets/notificaties-api-plugin-logo.d.ts.map +1 -0
  14. package/lib/plugins/notificaties-api/components/notificaties-api-configuration/notificaties-api-configuration.component.d.ts +30 -0
  15. package/lib/plugins/notificaties-api/components/notificaties-api-configuration/notificaties-api-configuration.component.d.ts.map +1 -0
  16. package/lib/plugins/notificaties-api/models/config.d.ts +6 -0
  17. package/lib/plugins/notificaties-api/models/config.d.ts.map +1 -0
  18. package/lib/plugins/notificaties-api/models/index.d.ts +2 -0
  19. package/lib/plugins/notificaties-api/models/index.d.ts.map +1 -0
  20. package/lib/plugins/notificaties-api/notificaties-api-plugin-module.d.ts +11 -0
  21. package/lib/plugins/notificaties-api/notificaties-api-plugin-module.d.ts.map +1 -0
  22. package/lib/plugins/notificaties-api/notificaties-api-plugin.specification.d.ts +4 -0
  23. package/lib/plugins/notificaties-api/notificaties-api-plugin.specification.d.ts.map +1 -0
  24. package/package.json +1 -1
  25. package/public-api.d.ts +3 -0
  26. package/public-api.d.ts.map +1 -1
@@ -2664,6 +2664,191 @@ const catalogiApiPluginSpecification = {
2664
2664
  },
2665
2665
  };
2666
2666
 
2667
+ /*
2668
+ * Copyright 2015-2020 Ritense BV, the Netherlands.
2669
+ *
2670
+ * Licensed under EUPL, Version 1.2 (the "License");
2671
+ * you may not use this file except in compliance with the License.
2672
+ * You may obtain a copy of the License at
2673
+ *
2674
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
2675
+ *
2676
+ * Unless required by applicable law or agreed to in writing, software
2677
+ * distributed under the License is distributed on an "AS IS" basis,
2678
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2679
+ * See the License for the specific language governing permissions and
2680
+ * limitations under the License.
2681
+ */
2682
+ class NotificatiesApiConfigurationComponent {
2683
+ constructor(pluginManagementService, translateService, pluginTranslationService) {
2684
+ this.pluginManagementService = pluginManagementService;
2685
+ this.translateService = translateService;
2686
+ this.pluginTranslationService = pluginTranslationService;
2687
+ this.valid = new EventEmitter();
2688
+ this.configuration = new EventEmitter();
2689
+ this.formValue$ = new BehaviorSubject(null);
2690
+ this.valid$ = new BehaviorSubject(false);
2691
+ }
2692
+ ngOnInit() {
2693
+ this.openSaveSubscription();
2694
+ }
2695
+ ngOnDestroy() {
2696
+ this.saveSubscription?.unsubscribe();
2697
+ }
2698
+ formValueChange(formValue) {
2699
+ this.formValue$.next(formValue);
2700
+ this.handleValid(formValue);
2701
+ }
2702
+ handleValid(formValue) {
2703
+ const valid = !!(formValue.configurationTitle &&
2704
+ formValue.url);
2705
+ this.valid$.next(valid);
2706
+ this.valid.emit(valid);
2707
+ }
2708
+ openSaveSubscription() {
2709
+ this.saveSubscription = this.save$?.subscribe(save => {
2710
+ combineLatest([this.formValue$, this.valid$])
2711
+ .pipe(take(1))
2712
+ .subscribe(([formValue, valid]) => {
2713
+ if (valid) {
2714
+ this.configuration.emit(formValue);
2715
+ }
2716
+ });
2717
+ });
2718
+ }
2719
+ }
2720
+ NotificatiesApiConfigurationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NotificatiesApiConfigurationComponent, deps: [{ token: PluginManagementService }, { token: i2.TranslateService }, { token: PluginTranslationService }], target: i0.ɵɵFactoryTarget.Component });
2721
+ NotificatiesApiConfigurationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: NotificatiesApiConfigurationComponent, selector: "valtimo-notificaties-api-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n <v-input\n name=\"url\"\n [title]=\"'url' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.url\"\n [required]=\"true\"\n [tooltip]=\"'urlTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n</v-form>\n", styles: [""], dependencies: [{ kind: "directive", type: i3$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i4$1.FormComponent, selector: "v-form", inputs: ["className"], outputs: ["valueChange"] }, { kind: "component", type: i4$1.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox", "smallLabel", "clear$"], outputs: ["valueChange"] }, { kind: "pipe", type: i3$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] });
2722
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NotificatiesApiConfigurationComponent, decorators: [{
2723
+ type: Component,
2724
+ args: [{ selector: 'valtimo-notificaties-api-configuration', template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n <v-input\n name=\"url\"\n [title]=\"'url' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.url\"\n [required]=\"true\"\n [tooltip]=\"'urlTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n</v-form>\n" }]
2725
+ }], ctorParameters: function () { return [{ type: PluginManagementService }, { type: i2.TranslateService }, { type: PluginTranslationService }]; }, propDecorators: { save$: [{
2726
+ type: Input
2727
+ }], disabled$: [{
2728
+ type: Input
2729
+ }], pluginId: [{
2730
+ type: Input
2731
+ }], prefillConfiguration$: [{
2732
+ type: Input
2733
+ }], valid: [{
2734
+ type: Output
2735
+ }], configuration: [{
2736
+ type: Output
2737
+ }] } });
2738
+
2739
+ /*
2740
+ * Copyright 2015-2020 Ritense BV, the Netherlands.
2741
+ *
2742
+ * Licensed under EUPL, Version 1.2 (the "License");
2743
+ * you may not use this file except in compliance with the License.
2744
+ * You may obtain a copy of the License at
2745
+ *
2746
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
2747
+ *
2748
+ * Unless required by applicable law or agreed to in writing, software
2749
+ * distributed under the License is distributed on an "AS IS" basis,
2750
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2751
+ * See the License for the specific language governing permissions and
2752
+ * limitations under the License.
2753
+ */
2754
+ class NotificatiesApiPluginModule {
2755
+ }
2756
+ NotificatiesApiPluginModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NotificatiesApiPluginModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2757
+ NotificatiesApiPluginModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: NotificatiesApiPluginModule, declarations: [NotificatiesApiConfigurationComponent], imports: [CommonModule,
2758
+ PluginTranslatePipeModule,
2759
+ FormModule,
2760
+ InputModule,
2761
+ SelectModule,
2762
+ ParagraphModule], exports: [NotificatiesApiConfigurationComponent] });
2763
+ NotificatiesApiPluginModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NotificatiesApiPluginModule, imports: [CommonModule,
2764
+ PluginTranslatePipeModule,
2765
+ FormModule,
2766
+ InputModule,
2767
+ SelectModule,
2768
+ ParagraphModule] });
2769
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: NotificatiesApiPluginModule, decorators: [{
2770
+ type: NgModule,
2771
+ args: [{
2772
+ declarations: [NotificatiesApiConfigurationComponent],
2773
+ imports: [
2774
+ CommonModule,
2775
+ PluginTranslatePipeModule,
2776
+ FormModule,
2777
+ InputModule,
2778
+ SelectModule,
2779
+ ParagraphModule,
2780
+ ],
2781
+ exports: [NotificatiesApiConfigurationComponent],
2782
+ }]
2783
+ }] });
2784
+
2785
+ /*
2786
+ * Copyright 2015-2020 Ritense BV, the Netherlands.
2787
+ *
2788
+ * Licensed under EUPL, Version 1.2 (the "License");
2789
+ * you may not use this file except in compliance with the License.
2790
+ * You may obtain a copy of the License at
2791
+ *
2792
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
2793
+ *
2794
+ * Unless required by applicable law or agreed to in writing, software
2795
+ * distributed under the License is distributed on an "AS IS" basis,
2796
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2797
+ * See the License for the specific language governing permissions and
2798
+ * limitations under the License.
2799
+ */
2800
+ const NOTIFICATIES_API_PLUGIN_LOGO_BASE64 = 'data:image/png;base64,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';
2801
+
2802
+ /*
2803
+ * Copyright 2015-2020 Ritense BV, the Netherlands.
2804
+ *
2805
+ * Licensed under EUPL, Version 1.2 (the "License");
2806
+ * you may not use this file except in compliance with the License.
2807
+ * You may obtain a copy of the License at
2808
+ *
2809
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
2810
+ *
2811
+ * Unless required by applicable law or agreed to in writing, software
2812
+ * distributed under the License is distributed on an "AS IS" basis,
2813
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2814
+ * See the License for the specific language governing permissions and
2815
+ * limitations under the License.
2816
+ */
2817
+ const notificatiesApiPluginSpecification = {
2818
+ pluginId: 'notificatiesapi',
2819
+ pluginConfigurationComponent: NotificatiesApiConfigurationComponent,
2820
+ pluginLogoBase64: NOTIFICATIES_API_PLUGIN_LOGO_BASE64,
2821
+ pluginTranslations: {
2822
+ nl: {
2823
+ title: 'Notificaties API',
2824
+ url: 'Notificaties API URL',
2825
+ urlTooltip: 'Een URL naar de REST API van Notificaties',
2826
+ description: 'Een API om een notificatierouteringscomponent te benaderen.',
2827
+ configurationTitle: 'Configuratienaam',
2828
+ configurationTitleTooltip: 'De naam van de huidige plugin-configuratie. Onder deze naam kan de configuratie in de rest van de applicatie teruggevonden worden.',
2829
+ authenticationPluginConfiguration: 'Configuratie authenticatie-plug-in',
2830
+ },
2831
+ en: {
2832
+ title: 'Notificaties API',
2833
+ url: 'Notificaties API URL',
2834
+ urlTooltip: 'A URL to the REST API of Notificaties',
2835
+ description: 'An API to access a notification routing component.',
2836
+ configurationTitle: 'Configuration name',
2837
+ configurationTitleTooltip: 'The name of the current plugin configuration. Under this name, the configuration can be found in the rest of the application.',
2838
+ authenticationPluginConfiguration: 'Authentication plugin configuration',
2839
+ },
2840
+ de: {
2841
+ title: 'Notificaties API',
2842
+ url: 'Notificaties API URL',
2843
+ urlTooltip: 'Die URL zur REST API von Notificaties',
2844
+ description: 'Eine API für den Zugriff auf eine Komponente für das Benachrichtigungsrouting.',
2845
+ configurationTitle: 'Konfigurationsname',
2846
+ configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
2847
+ authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
2848
+ },
2849
+ },
2850
+ };
2851
+
2667
2852
  /*
2668
2853
  * Copyright 2015-2020 Ritense BV, the Netherlands.
2669
2854
  *
@@ -2684,5 +2869,5 @@ const catalogiApiPluginSpecification = {
2684
2869
  * Generated bundle index. Do not edit.
2685
2870
  */
2686
2871
 
2687
- export { CatalogiApiConfigurationComponent, CatalogiApiPluginModule, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, GenerateDocumentConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StoreTempDocumentConfigurationComponent, StoreUploadedDocumentConfigurationComponent, ZakenApiConfigurationComponent, ZakenApiPluginModule, catalogiApiPluginSpecification, documentenApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openZaakPluginSpecification, smartDocumentsPluginSpecification, zakenApiPluginSpecification };
2872
+ export { CatalogiApiConfigurationComponent, CatalogiApiPluginModule, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, GenerateDocumentConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, NotificatiesApiConfigurationComponent, NotificatiesApiPluginModule, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StoreTempDocumentConfigurationComponent, StoreUploadedDocumentConfigurationComponent, ZakenApiConfigurationComponent, ZakenApiPluginModule, catalogiApiPluginSpecification, documentenApiPluginSpecification, notificatiesApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openZaakPluginSpecification, smartDocumentsPluginSpecification, zakenApiPluginSpecification };
2688
2873
  //# sourceMappingURL=valtimo-plugin.mjs.map