Commit 01cf0efe authored by Robert Knight's avatar Robert Knight

Add test page for JSTOR content banner

Add a test page at http://localhost:3000/pdf/jstor that shows the JSTOR
content banner.
parent 897dcf6d
{
"clientConfig": {
"contentPartner": "jstor"
}
}
......@@ -18,7 +18,7 @@ const TEMPLATE_PATH = `${__dirname}/templates/`;
/**
* @typedef Config
* @prop {string} clientUrl - The URL of the client's boot script
* @prop {object} clientConfig
* @prop {object} clientConfig - Additional configuration for the Hypothesis client
*/
/**
......@@ -49,20 +49,15 @@ function renderScript(context) {
function templateContext(config) {
// Just the config by itself, in contrast with `hypothesisScript`, which
// combines this config with a <script> that adds the embed script
let hypothesisConfig = fs.readFileSync(
const configTemplate = fs.readFileSync(
`${TEMPLATE_PATH}client-config.js.mustache`,
'utf-8'
);
if (config.clientConfig) {
const clientConfigScript = `<script type="application/json" class="js-hypothesis-config">${JSON.stringify(
config.clientConfig
)}</script>`;
hypothesisConfig = `
${hypothesisConfig}
${clientConfigScript}
`;
}
const hypothesisConfig = Mustache.render(configTemplate, {
exampleConfig: config.clientConfig
? JSON.stringify(config.clientConfig)
: null,
});
return {
hypothesisConfig,
......@@ -131,6 +126,7 @@ function serveDev(port, config) {
const suffix = req.params.suffix ? `?suffix=${req.params.suffix}` : '';
const fullUrl = `${req.protocol}://${req.hostname}:${port}${req.originalUrl}${suffix}`;
// Read custom client configuration for this test document.
const configPath = pdfPath.replace(/\.pdf$/, '.config.json');
const extraConfig = fs.existsSync(configPath)
? JSON.parse(fs.readFileSync(configPath))
......
......@@ -31,6 +31,11 @@
// Open the sidebar when the page loads
openSidebar: true,
{{#exampleConfig}}
// Additional configuration for the current test document
...{{{exampleConfig}}},
{{/exampleConfig}}
};
};
</script>
......@@ -64,6 +64,7 @@
visit</a></li>
<li><a href="/pdf/painting">PDF without selectable text</a></li>
<li><a href="/pdf/gatsby">The Great Gatsby</a> (A long document)</li>
<li><a href="/pdf/jstor">PDF with JSTOR banner</a></li>
</ul>
<h2>Page feature tests</h2>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment