mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-30 14:14:17 +00:00
* fix several lint warnings, add missing types, cleanup * fix EnumChangefreq issue * better utilization of EnumChangefreq type * update test snapshot
32 lines
840 B
TypeScript
32 lines
840 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import * as eta from 'eta';
|
|
import redirectPageTemplate from './templates/redirectPage.template.html';
|
|
import {memoize} from 'lodash';
|
|
|
|
type CreateRedirectPageOptions = {
|
|
toUrl: string;
|
|
};
|
|
|
|
const getCompiledRedirectPageTemplate = memoize(() => {
|
|
return eta.compile(redirectPageTemplate.trim());
|
|
});
|
|
|
|
function renderRedirectPageTemplate(data: Record<string, unknown>) {
|
|
const compiled = getCompiledRedirectPageTemplate();
|
|
return compiled(data, eta.defaultConfig);
|
|
}
|
|
|
|
export default function createRedirectPageContent({
|
|
toUrl,
|
|
}: CreateRedirectPageOptions): string {
|
|
return renderRedirectPageTemplate({
|
|
toUrl: encodeURI(toUrl),
|
|
});
|
|
}
|