beyond
Version:
The Full Stack Universal Typescript Framework
58 lines (47 loc) • 1.39 kB
JavaScript
const {ipc} = global.utils;
const DynamicProcessor = global.utils.DynamicProcessor();
module.exports = class extends DynamicProcessor {
get dp() {
return 'application.deployment';
}
get errors() {
return this.
}
get valid() {
return !this.
}
get distributions() {
return this.
}
get build() {
return this.
}
constructor(application, config) {
super();
this.
this.
super.setup(new Map([['config', {child: config}]]));
}
_process() {
const config = this.children.get('config').child;
if (!config.valid) {
this.
this.
return;
}
const value = config.value ? config.value : {};
this.
this.
}
_notify() {
ipc.notify('data-notification', {
type: 'record/update',
table: 'applications-deployments',
id: this.
});
}
}