salix/print/templates/email/client-welcome/client-welcome.js

25 lines
629 B
JavaScript
Raw Normal View History

2019-10-31 11:43:04 +00:00
const Component = require(`${appPath}/core/component`);
2019-10-29 06:46:44 +00:00
const emailHeader = new Component('email-header');
const emailFooter = new Component('email-footer');
2019-01-22 08:55:35 +00:00
module.exports = {
name: 'client-welcome',
2019-10-29 06:46:44 +00:00
async serverPrefetch() {
2020-05-22 13:20:55 +00:00
this.client = await this.fetchClient(this.recipientId);
2019-10-29 06:46:44 +00:00
},
2019-01-22 08:55:35 +00:00
methods: {
2019-10-29 06:46:44 +00:00
fetchClient(clientId) {
2020-09-28 11:54:02 +00:00
return this.findOneFromDef('client', [clientId]);
2019-01-22 08:55:35 +00:00
},
},
components: {
2019-10-29 06:46:44 +00:00
'email-header': emailHeader.build(),
'email-footer': emailFooter.build()
2019-01-22 08:55:35 +00:00
},
2019-10-31 11:43:04 +00:00
props: {
2020-05-22 13:20:55 +00:00
recipientId: {
2019-10-31 11:43:04 +00:00
required: true
}
}
2019-01-22 08:55:35 +00:00
};