Wired up subtitle in newsletter template

closes https://linear.app/tryghost/issue/MOM-173

- updated email renderer to add `post.customExcerpt` data
- updated template to skip rendering subtitle when no custom excerpt is present
- updated template to use actual custom excerpt
This commit is contained in:
Kevin Ansfield 2024-06-03 17:50:46 +01:00
parent a8342e153e
commit 72a00b5fcc
4 changed files with 86 additions and 7 deletions

View File

@ -1035,6 +1035,7 @@ class EmailRenderer {
commentUrl: commentUrl.href,
authors,
publishedAt,
customExcerpt: post.get('custom_excerpt'),
feature_image: postFeatureImage,
feature_image_width: postFeatureImageWidth,
feature_image_height: postFeatureImageHeight,

View File

@ -80,10 +80,10 @@
</td>
</tr>
{{#hasFeature 'newsletterSubtitle'}}
{{#if newsletter.showSubhead}}
{{#if (and newsletter.showSubhead post.customExcerpt)}}
<tr>
<td class="post-subtitle-wrapper" style="width: 100%">
<p class="{{classes.subtitle}}">Jonathan Haidt wrote a best-selling book about teens and social media. Not everyone buys its thesis.</p>
<p class="{{classes.subtitle}}">{{post.customExcerpt}}.</p>
</td>
</tr>
{{/if}}

View File

@ -90,7 +90,7 @@ describe('registerHelpers', function () {
assert.equal(result, true);
});
it('usefeature helper returns true', function () {
it('hasFeature helper returns true', function () {
const handlebars = {
registerHelper: function (name, fn) {
this[name] = fn;
@ -115,7 +115,7 @@ describe('registerHelpers', function () {
assert.equal(result, true);
});
it('usefeature helper returns false', function () {
it('hasFeature helper returns false', function () {
const handlebars = {
registerHelper: function (name, fn) {
this[name] = fn;
@ -139,4 +139,4 @@ describe('registerHelpers', function () {
assert.equal(result, false);
});
});
});

View File

@ -939,7 +939,7 @@ describe('Email renderer', function () {
beforeEach(function () {
renderedPost = '<p>Lexical Test</p><img class="is-light-background" src="test-dark" /><img class="is-dark-background" src="test-light" />';
labsEnabled = true;
labsEnabled = true; // TODO: odd default because it means we're testing the unused email-customization template
basePost = {
lexical: '{}',
visibility: 'public',
@ -1033,7 +1033,13 @@ describe('Email renderer', function () {
}
},
labs: {
isSet: () => labsEnabled
isSet: (key) => {
if (typeof labsEnabled === 'object') {
return labsEnabled[key] || false;
}
return labsEnabled;
}
}
});
});
@ -1762,6 +1768,78 @@ describe('Email renderer', function () {
assert.equal(response.html.includes('width="248" height="248"'), true, 'Should not replace img height and width with auto from css');
assert.equal(response.html.includes('width="auto" height="auto"'), false, 'Should not replace img height and width with auto from css');
});
describe('show subtitle', function () {
beforeEach(function () {
labsEnabled = {
newsletterSubtitle: true
};
});
it('is rendered when enabled and customExcerpt is present', async function () {
const post = createModel(Object.assign({}, basePost, {custom_excerpt: 'This is a subtitle'}));
const newsletter = createModel({
show_post_title_section: true,
show_subhead: true
});
const segment = null;
const options = {};
const response = await emailRenderer.renderBody(
post,
newsletter,
segment,
options
);
await validateHtml(response.html);
assert.equal(response.html.match(/This is a subtitle/g).length, 2, 'Subtitle should appear twice (preheader and subtitle section)');
});
it('is not rendered when disabled and customExcerpt is present', async function () {
const post = createModel(Object.assign({}, basePost, {custom_excerpt: 'This is a subtitle'}));
const newsletter = createModel({
show_post_title_section: true,
show_subhead: false
});
const segment = null;
const options = {};
const response = await emailRenderer.renderBody(
post,
newsletter,
segment,
options
);
await validateHtml(response.html);
assert.equal(response.html.match(/This is a subtitle/g).length, 1, 'Subtitle should only appear once (preheader, subtitle section skipped)');
response.html.should.not.containEql('post-subtitle-wrapper');
});
it('does not render when enabled and customExcerpt is not present', async function () {
const post = createModel(Object.assign({}, basePost, {custom_excerpt: null}));
const newsletter = createModel({
show_post_title_section: true,
show_subhead: true
});
const segment = null;
const options = {};
const response = await emailRenderer.renderBody(
post,
newsletter,
segment,
options
);
await validateHtml(response.html);
response.html.should.not.containEql('post-subtitle-wrapper');
});
});
});
describe('getTemplateData', function () {