Initial commit
This commit is contained in:
606
ui/templates/home.html
Normal file
606
ui/templates/home.html
Normal file
@@ -0,0 +1,606 @@
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');
|
||||
|
||||
/* SCALE: align 100% zoom with prior 125% appearance */
|
||||
:root {
|
||||
font-size: 125%;
|
||||
--bg-0: #0c1117;
|
||||
--bg-1: #131a23;
|
||||
--panel: #151e2b;
|
||||
--panel-hi: #1a2433;
|
||||
--text: #ecf3ff;
|
||||
--muted: #96a5b7;
|
||||
--accent: #2ea3ff;
|
||||
--accent-2: #1f8cf3;
|
||||
--good: #24d06f;
|
||||
--warn: #ffd100;
|
||||
--bad: #ff4d4f;
|
||||
--radius: 0.75rem;
|
||||
--shadow: 0 0.5rem 1rem rgba(0, 0, 0, .35), inset 0 0.0625rem 0 rgba(255, 255, 255, .05);
|
||||
--sidebar-width: 3.75rem;
|
||||
--sidebar-gap: clamp(0.75rem, 1.2vh, 1rem);
|
||||
--content-max: 100rem;
|
||||
--content-pad: clamp(1rem, 1.2vw, 1.4rem);
|
||||
--section-gap: clamp(0.75rem, 1vw, 1rem);
|
||||
--card-pad: clamp(1rem, 1.1vw, 1.25rem);
|
||||
--card-pad-lg: clamp(1.1rem, 1.2vw, 1.35rem);
|
||||
--fs-page-title: clamp(1.2rem, 1vw + 0.35rem, 1.7rem);
|
||||
--fs-section-title: clamp(0.95rem, 0.9vw + 0.25rem, 1.25rem);
|
||||
--fs-label: clamp(0.85rem, 0.7vw + 0.3rem, 1.05rem);
|
||||
--fs-label-lg: clamp(0.95rem, 0.8vw + 0.32rem, 1.15rem);
|
||||
--fs-kpi: clamp(2.25rem, 2.5vw, 3.25rem);
|
||||
--fs-kpi-unit: clamp(1.25rem, 1.4vw, 1.5rem);
|
||||
--fs-body: clamp(0.8rem, 0.7vw + 0.28rem, 1rem);
|
||||
--progress-height: 0.875rem;
|
||||
--start-min-height: 9.375rem;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body,
|
||||
#oee {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow-x: hidden;
|
||||
background: var(--bg-0);
|
||||
color: var(--text);
|
||||
font-family: 'Poppins', system-ui, 'Segoe UI', 'Roboto', sans-serif;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
body > md-content,
|
||||
body > md-content > md-content,
|
||||
.nr-dashboard-template,
|
||||
.nr-dashboard-template md-content,
|
||||
.nr-dashboard-cardpanel,
|
||||
.nr-dashboard-cardpanel md-content {
|
||||
background: transparent !important;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.nr-dashboard-cardpanel,
|
||||
.nr-dashboard-cardpanel md-card,
|
||||
.nr-dashboard-cardpanel md-card-content {
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
/* LAYOUT: lock sidebar + content grid across tabs */
|
||||
#oee {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
width: var(--sidebar-width);
|
||||
background: #0b1119;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: clamp(0.625rem, 1.4vh, 0.9rem) clamp(0.5rem, 0.8vw, 0.75rem);
|
||||
}
|
||||
|
||||
.side-top {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--sidebar-gap);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.sb-btn {
|
||||
width: 2.75rem;
|
||||
height: 2.75rem;
|
||||
border-radius: 0.75rem;
|
||||
background: #0f1721;
|
||||
border: 1px solid #19222e;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
color: #8fb3d9;
|
||||
cursor: pointer;
|
||||
transition: 0.16s box-shadow, 0.16s transform, 0.16s border-color;
|
||||
}
|
||||
|
||||
.sb-btn.active {
|
||||
border-color: #2fd289;
|
||||
box-shadow: 0 0 0 0.125rem rgba(36, 208, 111, .25), 0 0.625rem 1.125rem rgba(36, 208, 111, .28);
|
||||
color: #2fd289;
|
||||
}
|
||||
|
||||
.sb-ico {
|
||||
font-size: clamp(1.1rem, 1.2vw, 1.25rem);
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.sb-foot {
|
||||
font-size: clamp(0.6rem, 0.6vw, 0.7rem);
|
||||
color: #6c7b8d;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.main {
|
||||
flex: 1;
|
||||
overflow: auto;
|
||||
padding: var(--content-pad);
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: var(--content-max);
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--section-gap);
|
||||
}
|
||||
|
||||
.card {
|
||||
background: linear-gradient(160deg, var(--panel) 0%, var(--panel-hi) 100%);
|
||||
border-radius: var(--radius);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.label {
|
||||
color: var(--text);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
font-weight: 700;
|
||||
font-size: var(--fs-label);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.kpis {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(11.25rem, 1fr));
|
||||
gap: var(--section-gap);
|
||||
}
|
||||
|
||||
.kpi {
|
||||
height: 6.25rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 0.25rem;
|
||||
padding: var(--card-pad);
|
||||
}
|
||||
|
||||
.kpi .label {
|
||||
font-size: var(--fs-label-lg);
|
||||
}
|
||||
|
||||
.kval {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
gap: 0.3rem;
|
||||
color: var(--good);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.knum {
|
||||
font-size: var(--fs-kpi);
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.kunit {
|
||||
font-size: var(--fs-kpi-unit);
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.panel {
|
||||
padding: var(--card-pad-lg);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: clamp(0.75rem, 0.9vw, 0.95rem);
|
||||
}
|
||||
|
||||
.panel-title {
|
||||
font-size: var(--fs-section-title);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
font-weight: 700;
|
||||
color: var(--text);
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.panel-strip {
|
||||
background: transparent;
|
||||
border: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.row-3 {
|
||||
display: flex;
|
||||
gap: var(--section-gap);
|
||||
}
|
||||
|
||||
.mini {
|
||||
flex: 1;
|
||||
min-height: 6.25rem;
|
||||
padding: var(--card-pad);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.4rem;
|
||||
}
|
||||
|
||||
.mini .val {
|
||||
font-size: var(--fs-body);
|
||||
color: var(--text);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.progress {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.track {
|
||||
flex: 1;
|
||||
height: var(--progress-height);
|
||||
background: #111a24;
|
||||
border-radius: 999px;
|
||||
overflow: hidden;
|
||||
box-shadow: inset 0 0.0625rem 0 rgba(255, 255, 255, .05);
|
||||
}
|
||||
|
||||
.fill {
|
||||
height: 100%;
|
||||
width: 0;
|
||||
background: var(--good);
|
||||
transition: width 0.35s ease;
|
||||
}
|
||||
|
||||
.pct {
|
||||
min-width: 3rem;
|
||||
text-align: right;
|
||||
color: var(--text);
|
||||
font-weight: 700;
|
||||
font-size: var(--fs-body);
|
||||
}
|
||||
|
||||
.bottom {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: var(--section-gap);
|
||||
}
|
||||
|
||||
.gparts,
|
||||
.status,
|
||||
.start-wrap {
|
||||
min-height: clamp(9.375rem, 18vw, 11.25rem);
|
||||
padding: var(--card-pad-lg);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.gnum {
|
||||
font-size: clamp(2.5rem, 3.2vw, 3.5rem);
|
||||
color: var(--good);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.gmeta {
|
||||
color: var(--muted);
|
||||
font-size: clamp(0.75rem, 0.9vw, 0.85rem);
|
||||
}
|
||||
|
||||
.status {
|
||||
justify-content: center;
|
||||
gap: clamp(0.75rem, 1vw, 1rem);
|
||||
}
|
||||
|
||||
.st-row {
|
||||
background: #121c28;
|
||||
border-radius: 0.625rem;
|
||||
border: 1px solid #243244;
|
||||
padding: 0.9rem 1rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.st-name {
|
||||
color: var(--text);
|
||||
font-weight: 600;
|
||||
font-size: var(--fs-body);
|
||||
}
|
||||
|
||||
.st-val {
|
||||
font-weight: 700;
|
||||
font-size: clamp(1.25rem, 1.4vw, 1.5rem);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.st-on {
|
||||
color: var(--good);
|
||||
}
|
||||
|
||||
.st-off {
|
||||
color: var(--bad);
|
||||
}
|
||||
|
||||
.start-wrap {
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.start {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: var(--start-min-height);
|
||||
border-radius: var(--radius);
|
||||
border: none;
|
||||
background: linear-gradient(180deg, #32ff7e 0%, #2fd289 100%);
|
||||
color: var(--text);
|
||||
font-weight: 700;
|
||||
font-size: clamp(1.4rem, 2vw, 2rem);
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
box-shadow: 0 0 1.25rem rgba(36, 208, 111, .5), inset 0 0.0625rem 0 rgba(255, 255, 255, .1);
|
||||
cursor: pointer;
|
||||
transition: 0.16s transform, 0.16s filter;
|
||||
}
|
||||
|
||||
.start:hover {
|
||||
transform: translateY(-0.05rem);
|
||||
filter: brightness(1.08);
|
||||
}
|
||||
|
||||
.start:active {
|
||||
transform: none;
|
||||
filter: brightness(0.96);
|
||||
}
|
||||
|
||||
@media (max-width: 68.75rem) {
|
||||
.kpis {
|
||||
grid-template-columns: repeat(2, minmax(11.25rem, 1fr));
|
||||
}
|
||||
.row-3 {
|
||||
flex-direction: column;
|
||||
}
|
||||
.bottom {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
<link rel="stylesheet" href="styles/oee-theme-override.css">
|
||||
|
||||
<div id="oee">
|
||||
<aside class="sidebar">
|
||||
<div class="side-top">
|
||||
<button class="sb-btn active" data-label="Home" ng-click="gotoTab('Home')"><span class="sb-ico">🏠</span></button>
|
||||
<button class="sb-btn" data-label="Work Orders" ng-click="gotoTab('Work Orders')"><span class="sb-ico">📋</span></button>
|
||||
<button class="sb-btn" data-label="Alerts" ng-click="gotoTab('Alerts')"><span class="sb-ico">⚠️</span></button>
|
||||
<button class="sb-btn" data-label="Graphs" ng-click="gotoTab('Graphs')"><span class="sb-ico">📊</span></button>
|
||||
<button class="sb-btn" data-label="Help" ng-click="gotoTab('Help')"><span class="sb-ico">❓</span></button>
|
||||
<button class="sb-btn" data-label="Settings" ng-click="gotoTab('Settings')"><span class="sb-ico">⚙️</span></button>
|
||||
</div>
|
||||
<div class="sb-foot">OEE V1.0</div>
|
||||
</aside>
|
||||
|
||||
<main class="main">
|
||||
<div class="container">
|
||||
<section class="kpis">
|
||||
<article class="card kpi">
|
||||
<div class="label">OEE</div>
|
||||
<div class="kval"><span id="kpi-oee-value" class="knum">0</span><span class="kunit">%</span></div>
|
||||
</article>
|
||||
<article class="card kpi">
|
||||
<div class="label">Availability</div>
|
||||
<div class="kval"><span id="kpi-availability-value" class="knum">0</span><span class="kunit">%</span></div>
|
||||
</article>
|
||||
<article class="card kpi">
|
||||
<div class="label">Performance</div>
|
||||
<div class="kval"><span id="kpi-performance-value" class="knum">0</span><span class="kunit">%</span></div>
|
||||
</article>
|
||||
<article class="card kpi">
|
||||
<div class="label">Quality</div>
|
||||
<div class="kval"><span id="kpi-quality-value" class="knum">0</span><span class="kunit">%</span></div>
|
||||
</article>
|
||||
</section>
|
||||
|
||||
<section class="card panel">
|
||||
<div class="panel-strip"><h2 class="panel-title">Current Work Order</h2></div>
|
||||
<div class="row-3">
|
||||
<div class="card mini">
|
||||
<div class="label">Work Order ID</div>
|
||||
<div id="workorder-id" class="val"> </div>
|
||||
</div>
|
||||
<div class="card mini">
|
||||
<div class="label">SKU</div>
|
||||
<div id="workorder-sku" class="val"> </div>
|
||||
</div>
|
||||
<div class="card mini">
|
||||
<div class="label">Cycle Time</div>
|
||||
<div id="workorder-cycle" class="val">0</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="progress">
|
||||
<div class="track"><div id="workorder-progress-fill" class="fill"></div></div>
|
||||
<div id="workorder-progress-percent" class="pct">0%</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="bottom">
|
||||
<article class="card gparts">
|
||||
<div class="label">Good Parts</div>
|
||||
<div id="good-parts-value" class="gnum">0</div>
|
||||
<div id="good-parts-meta" class="gmeta">out of 0</div>
|
||||
</article>
|
||||
|
||||
<article class="card status">
|
||||
<div class="st-row"><span class="st-name">Machine</span><span id="machine-state" class="st-val st-off">OFFLINE</span></div>
|
||||
<div class="st-row"><span class="st-name">Production</span><span id="production-state" class="st-val st-off">STOPPED</span></div>
|
||||
</article>
|
||||
|
||||
<article class="card start-wrap">
|
||||
<button id="start-button" type="button" class="start">START</button>
|
||||
</article>
|
||||
</section>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
(function(scope) {
|
||||
scope.gotoTab = function(tabName) {
|
||||
scope.send({ ui_control: { tab: tabName } });
|
||||
};
|
||||
|
||||
window.kpiOeePercent = window.kpiOeePercent || 0;
|
||||
window.kpiAvailabilityPercent = window.kpiAvailabilityPercent || 0;
|
||||
window.kpiPerformancePercent = window.kpiPerformancePercent || 0;
|
||||
window.kpiQualityPercent = window.kpiQualityPercent || 0;
|
||||
window.currentWorkOrderId = window.currentWorkOrderId || "";
|
||||
window.currentSku = window.currentSku || "";
|
||||
window.currentCycleTime = window.currentCycleTime || 0;
|
||||
window.currentProgressPercent = window.currentProgressPercent || 0;
|
||||
window.goodPartsCount = window.goodPartsCount || 0;
|
||||
window.goodPartsTarget = window.goodPartsTarget || 0;
|
||||
window.machineOnline = typeof window.machineOnline === "boolean" ? window.machineOnline : false;
|
||||
window.productionStarted = typeof window.productionStarted === "boolean" ? window.productionStarted : false;
|
||||
|
||||
var elements = {
|
||||
kpiOee: document.getElementById("kpi-oee-value"),
|
||||
kpiAvailability: document.getElementById("kpi-availability-value"),
|
||||
kpiPerformance: document.getElementById("kpi-performance-value"),
|
||||
kpiQuality: document.getElementById("kpi-quality-value"),
|
||||
workOrderId: document.getElementById("workorder-id"),
|
||||
workOrderSku: document.getElementById("workorder-sku"),
|
||||
workOrderCycle: document.getElementById("workorder-cycle"),
|
||||
progressFill: document.getElementById("workorder-progress-fill"),
|
||||
progressPercent: document.getElementById("workorder-progress-percent"),
|
||||
goodPartsValue: document.getElementById("good-parts-value"),
|
||||
goodPartsMeta: document.getElementById("good-parts-meta"),
|
||||
machineState: document.getElementById("machine-state"),
|
||||
productionState: document.getElementById("production-state"),
|
||||
startButton: document.getElementById("start-button")
|
||||
};
|
||||
|
||||
function setText(el, value) {
|
||||
if (el) {
|
||||
el.textContent = value;
|
||||
}
|
||||
}
|
||||
|
||||
function setNumber(el, value) {
|
||||
setText(el, String(Math.max(0, Math.round(Number(value) || 0))));
|
||||
}
|
||||
|
||||
function clampPercent(value) {
|
||||
var num = Number(value) || 0;
|
||||
return Math.max(0, Math.min(100, Math.round(num)));
|
||||
}
|
||||
|
||||
function updateState(el, isActive, onLabel, offLabel) {
|
||||
if (!el) {
|
||||
return;
|
||||
}
|
||||
el.textContent = isActive ? onLabel : offLabel;
|
||||
el.classList.remove("st-on", "st-off");
|
||||
el.classList.add(isActive ? "st-on" : "st-off");
|
||||
}
|
||||
|
||||
function renderDashboard() {
|
||||
setNumber(elements.kpiOee, window.kpiOeePercent);
|
||||
setNumber(elements.kpiAvailability, window.kpiAvailabilityPercent);
|
||||
setNumber(elements.kpiPerformance, window.kpiPerformancePercent);
|
||||
setNumber(elements.kpiQuality, window.kpiQualityPercent);
|
||||
|
||||
setText(elements.workOrderId, window.currentWorkOrderId || "");
|
||||
setText(elements.workOrderSku, window.currentSku || "");
|
||||
setText(elements.workOrderCycle, window.currentCycleTime ? String(window.currentCycleTime) : "0");
|
||||
|
||||
var progress = clampPercent(window.currentProgressPercent);
|
||||
if (elements.progressFill) {
|
||||
elements.progressFill.style.width = progress + "%";
|
||||
}
|
||||
setText(elements.progressPercent, progress + "%");
|
||||
|
||||
setText(elements.goodPartsValue, String(window.goodPartsCount || 0));
|
||||
setText(elements.goodPartsMeta, "out of " + String(window.goodPartsTarget || 0));
|
||||
|
||||
updateState(elements.machineState, !!window.machineOnline, "ONLINE", "OFFLINE");
|
||||
updateState(elements.productionState, !!window.productionStarted, "STARTED", "STOPPED");
|
||||
}
|
||||
|
||||
scope.renderDashboard = renderDashboard;
|
||||
|
||||
renderDashboard();
|
||||
|
||||
if (elements.startButton) {
|
||||
elements.startButton.addEventListener("click", function() {
|
||||
scope.send({ action: "start" });
|
||||
});
|
||||
}
|
||||
})(scope);
|
||||
|
||||
(function ensureNoMaterialTint(){
|
||||
setTimeout(() => {
|
||||
const root = document.getElementById('oee') || document.body;
|
||||
|
||||
const targets = root.querySelectorAll([
|
||||
'.md-toolbar','md-toolbar',
|
||||
'.md-subheader','md-subheader',
|
||||
'.md-toolbar-tools','.md-card-title'
|
||||
].join(','));
|
||||
|
||||
targets.forEach(el => {
|
||||
if (el && el.style) {
|
||||
el.style.background = 'transparent';
|
||||
el.style.backgroundColor = 'transparent';
|
||||
}
|
||||
if (el && el.classList) {
|
||||
el.classList.remove(
|
||||
'md-whiteframe-1dp','md-whiteframe-2dp','md-whiteframe-3dp',
|
||||
'md-whiteframe-z1','md-whiteframe-z2','md-whiteframe-z3'
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
if (!document.getElementById('oee-theme-sentinel')) {
|
||||
const style = document.createElement('style');
|
||||
style.id = 'oee-theme-sentinel';
|
||||
style.textContent = `
|
||||
#oee .md-toolbar::before, #oee .md-toolbar::after,
|
||||
#oee .md-subheader::before, #oee .md-subheader::after,
|
||||
#oee md-toolbar::before, #oee md-toolbar::after,
|
||||
#oee md-subheader::before, #oee md-subheader::after {
|
||||
display: none !important;
|
||||
content: none !important;
|
||||
}
|
||||
`;
|
||||
document.head.appendChild(style);
|
||||
}
|
||||
}, 300);
|
||||
})();
|
||||
|
||||
|
||||
// optional render trigger
|
||||
scope.$evalAsync(scope.renderDashboard);
|
||||
</script>
|
||||
Reference in New Issue
Block a user