X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=src%2Ftemplate%2Fadmin-topic-details-html.js;h=e239e72612aafe41dc901cda2d9c670d2fe9c52f;hb=b806715f9288323cce7b0ab437ee78b01d26c548;hp=1d0add005079f356545eae03db8448548af61134;hpb=41ae00113d39abada54823b7133c473b8fb758f5;p=websub-hub diff --git a/src/template/admin-topic-details-html.js b/src/template/admin-topic-details-html.js index 1d0add0..e239e72 100644 --- a/src/template/admin-topic-details-html.js +++ b/src/template/admin-topic-details-html.js @@ -1,18 +1,20 @@ 'use strict'; const th = require('./template-helper'); +const { sessionNavLinks } = require('@squeep/authentication-module'); /** * Show a topic with all of its subscribers. - * @param {Object} ctx - * @param {Object} ctx.topic - * @param {Object[]} ctx.subscriptions - * @param {Object} options - * @param {Object} options.manager - * @param {String} options.manager.pageTitle - * @returns {String} + * @param {object} ctx context + * @param {object} ctx.topic topic + * @param {object[]} ctx.subscriptions subscriptions + * @param {object} options options + * @param {object} options.manager manager options + * @param {string} options.manager.pageTitle page title + * @returns {string} html */ module.exports = (ctx, options) => { + const pagePathLevel = 2; const pageTitle = `${options.manager.pageTitle} - Topic Details`; const logoUrl = options.manager.logoUrl; const navLinks = [ @@ -27,11 +29,14 @@ module.exports = (ctx, options) => { } const htmlOptions = { + pageIdentifier: 'admin', pageTitle, logoUrl, navLinks, footerEntries, }; + th.navLinks(pagePathLevel, ctx, htmlOptions); + sessionNavLinks(pagePathLevel, ctx, htmlOptions); const content = [ `
@@ -46,7 +51,7 @@ module.exports = (ctx, options) => {
`, `

Topic Publish History — ${ctx.publishCount} updates in the last ${ctx.publishSpan} days

- + histogram of publish history
`, `

${ctx.subscriptions.length ? ctx.subscriptions.length : 'no'} subscription${(ctx.subscriptions.length === 1) ? '' : 's'}

`, @@ -62,11 +67,11 @@ module.exports = (ctx, options) => { th.renderSubscriptionRowHeader(), ` `, - ...(ctx.subscriptions && ctx.subscriptions.map(th.renderSubscriptionRow)), + ...((ctx?.subscriptions || []).map(th.renderSubscriptionRow)), `
`, ]; - return th.htmlPage(2, ctx, htmlOptions, content); + return th.htmlPage(pagePathLevel, ctx, htmlOptions, content); }; \ No newline at end of file