remove hard-coded navLinks entirely, let other modules populate them
authorJustin Wind <justin.wind+git@gmail.com>
Thu, 21 Mar 2024 00:19:23 +0000 (17:19 -0700)
committerJustin Wind <justin.wind+git@gmail.com>
Thu, 21 Mar 2024 00:19:23 +0000 (17:19 -0700)
README.md
lib/template-helper.js

index 32f26735ed6ed6e276ff6850b4ee73a3dd9bb508..888bd544321116c86bff3f8a0b38db7716f84fa9 100644 (file)
--- a/README.md
+++ b/README.md
@@ -19,18 +19,6 @@ Specific to Squeep Framework Applications, this module has strong opinions and m
 
 ### Context
 
-The context is referenced for authenticated user information, as well as messaging.
-
-- `ctx.session.authenticatedIdentifier`
-- `ctx.session.authenticatedProfile`
-
-If either of these are present, navigation links are added to the page header allowing the user to manage their account or log out.  
-The links will point relatively to `/admin/settings` and `/admin/logout`, respectively.
-
-- `ctx.url`
-
-If present, added as a query parameter (`r`, for redirect) to the logout link.
-
 - `ctx.errors`
 - `ctx.notifications`
 
index e48cdb4fc5e59e17e5179b35a0339f357ba657be..7f7021ae010f2a58be394f17e23ea4120a4570d7 100644 (file)
@@ -358,12 +358,9 @@ ${UL(ctx.notifications, 1)}
 
 
 /**
- * Render all parts of an HTML page. Adds user logout nav link automatically.
+ * Render all parts of an HTML page.
  * @param {Number} pagePathLevel - relative path-distance to base
  * @param {Object} ctx
- * @param {Object=} ctx.session
- * @param {String=} ctx.session.authenticatedIdentifier
- * @param {String=} ctx.session.authenticatedProfile
  * @param {String[]=} ctx.errors
  * @param {String[]=} ctx.notifications
  * @param {Object} options
@@ -382,22 +379,6 @@ ${UL(ctx.notifications, 1)}
  * @returns {String}
  */
 function htmlPage(pagePathLevel, ctx, options, main = []) {
-  const user = ctx?.session?.authenticatedProfile || ctx?.session?.authenticatedIdentifier;
-  if (user) {
-    if (!options.navLinks) {
-      options.navLinks = [];
-    }
-    const logoutRedirect = ctx?.url ? `?r=${encodeURIComponent(ctx.url)}` : '';
-    const adminPath = (pagePathLevel > 0) ? `${'../'.repeat(pagePathLevel - 1)}` : 'admin/';
-    options.navLinks.push({
-      text: 'Account',
-      href: `${adminPath}settings`,
-    }, {
-      text: `Logout (${user})`,
-      href: `${adminPath}logout${logoutRedirect}`,
-    });
-  }
-
   return [
     '<!DOCTYPE html>',
     '<html lang="en">',