658a6dd284
- the proxy should always be used to access other parts of Ghost, including the urlService etc - use consistent ES6 style for requires - minimise use of lodash where possible - remove circular dependency between proxy and template util - End goal here is to enforce that the only link between helpers + the rest of Ghost is the proxy
29 lines
1.3 KiB
JavaScript
29 lines
1.3 KiB
JavaScript
// # {{cancel_link}} Helper
|
|
// Usage: `{{cancel_link}}`, `{{cancel_link class="custom-cancel-class"}}`, `{{cancel_link cancelLabel="Cancel please!"}}`
|
|
//
|
|
// Should be used inside of a subscription context, e.g.: `{{#foreach @member.subscriptions}} {{cancel_link}} {{/foreach}}`
|
|
// Outputs cancel/renew links to manage subscription renewal after the subscription period ends.
|
|
//
|
|
// Defaults to class="cancel-subscription-link" errorClass="cancel-subscription-error" cancelLabel="Cancel subscription" continueLabel="Continue subscription"
|
|
|
|
const {templates, errors, i18n} = require('./proxy');
|
|
|
|
module.exports = function excerpt(options) {
|
|
let truncateOptions = (options || {}).hash || {};
|
|
|
|
if (this.id === undefined || this.cancel_at_period_end === undefined) {
|
|
throw new errors.IncorrectUsageError({message: i18n.t('warnings.helpers.cancel_link.invalidData')});
|
|
}
|
|
|
|
const data = {
|
|
id: this.id,
|
|
cancel_at_period_end: this.cancel_at_period_end,
|
|
class: truncateOptions.class || 'gh-subscription-cancel',
|
|
errorClass: truncateOptions.errorClass || 'gh-error gh-error-subscription-cancel',
|
|
cancelLabel: truncateOptions.cancelLabel || 'Cancel subscription',
|
|
continueLabel: truncateOptions.continueLabel || 'Continue subscription'
|
|
};
|
|
|
|
return templates.execute('cancel_link', data);
|
|
};
|