Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add replaceAllMetaTags function to replace-meta-tag util #2644

Merged
merged 1 commit into from
Feb 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions app/utils/replace-meta-tag.js
Original file line number Diff line number Diff line change
@@ -21,3 +21,24 @@ export default function replaceMetaTag(text, idAttrName, idAttrValue, newContent
`<meta ${idAttrName}=$1$2$1 content=$3${newContent}$3$5`,
);
}

/**
* Overwrites required meta tags in the input text with newer ones, by sequentially
* calling `replaceMetaTag` and passing it meta tags from a predefined list.
* @param {string} text Input text to search for meta tags.
* @param {string} pageTitle Page title to use
* @param {string} pageDescription Page description to use
* @param {string} pageImageUrl Page image url to use
* @returns {string} Resulting text with meta tags content overwritten.
*/
export function replaceAllMetaTags(text, pageTitle, pageDescription, pageImageUrl) {
return [
['name', 'description', pageDescription], // <meta name="description" content="...">
['property', 'og:title', pageTitle],
['property', 'og:description', pageDescription],
['property', 'og:image', pageImageUrl],
['name', 'twitter:title', pageTitle],
['name', 'twitter:description', pageDescription],
['name', 'twitter:image', pageImageUrl],
].reduce((text, args) => replaceMetaTag(text, ...args), text);
}
16 changes: 3 additions & 13 deletions middleware.js
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
*/

import { next } from '@vercel/edge';
import replaceMetaTag from './app/utils/replace-meta-tag';
import { replaceAllMetaTags } from './app/utils/replace-meta-tag';

export const config = {
// Limit the middleware to run only for user profile and concept routes
@@ -130,18 +130,8 @@ export default async function middleware(request) {
// Read contents of `/dist/_empty.html`
const indexFileText = await fetch(indexFileURL).then((res) => res.text());

// Overwrite content of required meta tags with user-profile specific ones,
// by sequentially calling `replaceMetaTag` against `indexFileText`,
// and passing it arguments from the following list:
const responseText = [
['name', 'description', pageDescription], // <meta name="description" content="...">
['property', 'og:title', pageTitle],
['property', 'og:description', pageDescription],
['property', 'og:image', pageImageUrl],
['name', 'twitter:title', pageTitle],
['name', 'twitter:description', pageDescription],
['name', 'twitter:image', pageImageUrl],
].reduce((text, args) => replaceMetaTag(text, ...args), indexFileText);
// Overwrite content of required meta tags with newer ones
const responseText = replaceAllMetaTags(indexFileText, pageTitle, pageDescription, pageImageUrl);

// Serve the result as HTML
return new Response(responseText, { headers: { 'Content-Type': 'text/html' } });
22 changes: 16 additions & 6 deletions tests/unit/utils/replace-meta-tag-test.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
import replaceMetaTag from 'codecrafters-frontend/utils/replace-meta-tag';
import replaceMetaTag, { replaceAllMetaTags } from 'codecrafters-frontend/utils/replace-meta-tag';
import { module, test } from 'qunit';

module('Unit | Utility | replace-meta-tag', function () {
test('it exists and is a function', function (assert) {
assert.ok(replaceMetaTag, 'it exists');
assert.ok(replaceMetaTag instanceof Function, 'it is an instance of Function');
});

test('it overwrites content of specified meta tags in passed text', function (assert) {
assert.strictEqual(
replaceMetaTag('<meta property="og:image" content="old image">', 'property', 'og:image', 'new image'),
@@ -55,4 +50,19 @@ module('Unit | Utility | replace-meta-tag', function () {
'content around replaced tags is preserved',
);
});

module('replaceAllMetaTags', function () {
test('it overwrites content of all specified meta tags in passed text', function (assert) {
assert.strictEqual(
replaceAllMetaTags(
'<meta property="og:image" content="old image"><meta property="og:title" content="old title"><meta property="og:description" content="old description"><meta name="twitter:image" content="old twitter image">',
'new title',
'new description',
'new image url',
),
'<meta property="og:image" content="new image url"><meta property="og:title" content="new title"><meta property="og:description" content="new description"><meta name="twitter:image" content="new image url">',
'all old content is replaced with new content',
);
});
});
});