bbcc235b68
- Merge theta-agent into Directory: remove the Agents page; add green/yellow/red status dots to host rows and a Metrics tab (telemetry + discovery) to the resource modal, joined to hosts by hostname, live via socket.io + 30s refresh. - Discovery Plugins New-plugin modal: slug derived from name (field removed), cron dropdown (hourly/daily/weekly/custom), configSchema-driven settings (Proxmox url/tokenId/tokenSecret) sent as a populated config. - Directory resource slug now read-only + derived from name. - Vault page restyled to match the site. - Navbar: username no longer underlined; only the active link is bold+underlined. - docs/agents.md: document the Directory status/metrics + NAT troubleshooting. Co-Authored-By: Claude <noreply@anthropic.com>
160 lines
7.3 KiB
Plaintext
Executable File
160 lines
7.3 KiB
Plaintext
Executable File
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title><%- name %> <%- title %></title>
|
|
<!-- Shared UI shell — byte-identical across sso-manager-node, proxy and
|
|
jump-host. Everything per-app comes from `ui` (utils/ui.js, exposed
|
|
via app.locals in app.js). Edit all three copies together. -->
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/svg+xml" href="<%- ui.faviconUrl %>">
|
|
<!-- CSS are placed here -->
|
|
<link rel="stylesheet" href="/static-modules/bootstrap/dist/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/static-modules/@fortawesome/fontawesome-free/css/all.min.css">
|
|
|
|
<link rel='stylesheet' href='/static/css/styles.css' />
|
|
<!-- Scripts are placed here -->
|
|
<script type="text/javascript" src="/socket.io/socket.io.js"></script>
|
|
<script type="text/javascript" src='/static-modules/jquery/dist/jquery.js'></script>
|
|
<script type="text/javascript" src="/static-modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script type="text/javascript" src="/static-modules/@fortawesome/fontawesome-free/js/all.min.js"></script>
|
|
<script type="text/javascript" src='/static-modules/mustache/mustache.min.js'></script>
|
|
<script type="text/javascript" src='/static-modules/jq-repeat/dist/js/jq-repeat.js'></script>
|
|
<script type="text/javascript" src="/static-modules/moment/moment.js"></script>
|
|
<script type="text/javascript" src="/static/lib/js/app-base.js"></script>
|
|
<script type="text/javascript" src="/static-modules/@simpleworkjs/frontend/lib/app.messages.js"></script>
|
|
<script type="text/javascript" src="/static-modules/@simpleworkjs/frontend/lib/app.modal.js"></script>
|
|
<script type="text/javascript" src="/static-modules/@simpleworkjs/frontend/lib/app.validate.js"></script>
|
|
<script type="text/javascript" src="/static/js/app.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
|
<a class="navbar-brand" href="/"><img src="<%- logo %>" height="28" class="me-2" alt=""><%- name %> <%- titleIcon %></a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent">
|
|
<ul class="navbar-nav top-nav">
|
|
<%# Items gated on a group start hidden (.group-required) and are
|
|
revealed by app-base.js for the groups the user is in. %>
|
|
<% for(const item of ui.nav){ %>
|
|
<li class="nav-item<%- item.groups.length ? ' group-required' : '' %><%- item.groups.map(group => ' group-required-' + group).join('') %>">
|
|
<a class="nav-link" href="<%- item.href %>"><i class="<%- item.icon %>"></i>
|
|
<%- item.label %>
|
|
</a>
|
|
</li>
|
|
<% } %>
|
|
</ul>
|
|
<div class="form-inline mt-2 mt-md-0">
|
|
<% if(ui.profileUrl){ %>
|
|
<a id="cl-username" class="navbar-text text-light me-3 text-decoration-none" href="<%- ui.profileUrl %>" style="display: none;">
|
|
<i class="fa-solid fa-user me-1"></i><span id="cl-username-text"></span>
|
|
</a>
|
|
<% } else { %>
|
|
<span id="cl-username" class="navbar-text text-light me-3" style="display: none;">
|
|
<i class="fa-solid fa-user me-1"></i><span id="cl-username-text"></span>
|
|
</span>
|
|
<% } %>
|
|
<a id="cl-login-button" class="btn btn-outline-danger my-2 my-sm-0" onclick="app.auth.forceLogin()" style="display: none;">
|
|
<i class="fas fa-sign-in"></i>
|
|
Login
|
|
</a>
|
|
|
|
<button id="cl-logout-button" class="btn btn-outline-danger my-2 my-sm-0" onclick="app.auth.logOut(function(){ window.location.href = '<%- ui.logoutRedirect %>'; })" style="display: none;">
|
|
<i class="fas fa-sign-out"></i>
|
|
Log Out
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<% if(ui.updateCheck){ %>
|
|
<!-- Admin-only "a newer release is available" notice (services/update_check.js).
|
|
Dismissal is per-browser-session only (sessionStorage), not persisted server-side.
|
|
Fixed-positioned below the fixed navbar (a plain in-flow div here would render
|
|
UNDER the nav, since fixed elements are taken out of document flow) -- shown/hidden
|
|
dynamically, so #spa-shell's margin-top is adjusted in JS to make room for it. -->
|
|
<div id="update-banner" class="alert alert-info alert-dismissible mb-0 rounded-0 text-center" style="display:none; position:fixed; left:0; right:0; z-index:1029;">
|
|
<span id="update-banner-text"></span>
|
|
<button type="button" class="btn-close" onclick="dismissUpdateBanner()"></button>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
// --sw-content-offset tracks the same height as #spa-shell's margin-top
|
|
// (fixed navbar, plus the update banner while it's shown), so any
|
|
// in-page sticky element (e.g. a sticky search/sort bar) can offset
|
|
// itself below both fixed elements via `top: var(--sw-content-offset)`
|
|
// instead of colliding with them at the viewport's true top:0.
|
|
function showUpdateBanner(){
|
|
let $nav = $('nav.fixed-top');
|
|
let $banner = $('#update-banner');
|
|
$banner.css('top', $nav.outerHeight() + 'px').show();
|
|
let offset = $nav.outerHeight() + $banner.outerHeight();
|
|
$('#spa-shell').css('margin-top', offset + 'px');
|
|
document.documentElement.style.setProperty('--sw-content-offset', offset + 'px');
|
|
}
|
|
|
|
function dismissUpdateBanner(){
|
|
$('#update-banner').hide();
|
|
$('#spa-shell').css('margin-top', '');
|
|
document.documentElement.style.setProperty('--sw-content-offset', $('nav.fixed-top').outerHeight() + 'px');
|
|
sessionStorage.setItem('update-banner-dismissed', '1');
|
|
}
|
|
|
|
function checkForUpdate(){
|
|
if(sessionStorage.getItem('update-banner-dismissed')) return;
|
|
app.api.get('update-check', function(error, info){
|
|
if(error || !info || !info.updateAvailable) return;
|
|
$('#update-banner-text').html(
|
|
'A newer version of <%- ui.updateLabel %> is available: <b>v' + info.latestVersion + '</b> ' +
|
|
'(running v' + info.currentVersion + ') — ' +
|
|
'<a href="' + info.releaseUrl + '" target="_blank" class="alert-link">see what changed</a>.'
|
|
);
|
|
showUpdateBanner();
|
|
});
|
|
}
|
|
</script>
|
|
<% } %>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
|
|
// Set the correct link to active in the top nav bar
|
|
$('.top-nav a').each(function(index){
|
|
let $this = $(this);
|
|
$this.removeClass('active');
|
|
if($this.attr('href').toLocaleLowerCase() === window.location.pathname.toLocaleLowerCase()){
|
|
$this.addClass('active')
|
|
}
|
|
})
|
|
|
|
// Set the correct login/logout button, and reveal the current user's
|
|
// name once we know who they are. Group-gated nav items are revealed
|
|
// by app-base.js off the same cached user/me.
|
|
app.auth.isLoggedIn(function(error, me){
|
|
if(me){
|
|
$('#cl-logout-button').show();
|
|
let username = me.uid || me.username;
|
|
if(username){
|
|
$('#cl-username-text').text(username);
|
|
$('#cl-username').css('display', '');
|
|
}
|
|
|
|
<% if(ui.updateCheck){ %>
|
|
if(me.isAdmin) checkForUpdate();
|
|
<% } %>
|
|
}else{
|
|
$('#cl-login-button').show();
|
|
}
|
|
});
|
|
|
|
});
|
|
</script>
|
|
|
|
|
|
<!-- Container -->
|
|
<div id="spa-shell" class="container-fluid">
|
|
<div class="actionMessage" style="display:none;"></div>
|