- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
52 lines
1.8 KiB
JavaScript
52 lines
1.8 KiB
JavaScript
'use client';
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
0 && (module.exports = {
|
|
MetadataBoundary: null,
|
|
OutletBoundary: null,
|
|
ViewportBoundary: null
|
|
});
|
|
function _export(target, all) {
|
|
for(var name in all)Object.defineProperty(target, name, {
|
|
enumerable: true,
|
|
get: all[name]
|
|
});
|
|
}
|
|
_export(exports, {
|
|
MetadataBoundary: function() {
|
|
return MetadataBoundary;
|
|
},
|
|
OutletBoundary: function() {
|
|
return OutletBoundary;
|
|
},
|
|
ViewportBoundary: function() {
|
|
return ViewportBoundary;
|
|
}
|
|
});
|
|
const _metadataconstants = require("./metadata-constants");
|
|
// We use a namespace object to allow us to recover the name of the function
|
|
// at runtime even when production bundling/minification is used.
|
|
const NameSpace = {
|
|
[_metadataconstants.METADATA_BOUNDARY_NAME]: function({ children }) {
|
|
return children;
|
|
},
|
|
[_metadataconstants.VIEWPORT_BOUNDARY_NAME]: function({ children }) {
|
|
return children;
|
|
},
|
|
[_metadataconstants.OUTLET_BOUNDARY_NAME]: function({ children }) {
|
|
return children;
|
|
}
|
|
};
|
|
const MetadataBoundary = // We use slice(0) to trick the bundler into not inlining/minifying the function
|
|
// so it retains the name inferred from the namespace object
|
|
NameSpace[_metadataconstants.METADATA_BOUNDARY_NAME.slice(0)];
|
|
const ViewportBoundary = // We use slice(0) to trick the bundler into not inlining/minifying the function
|
|
// so it retains the name inferred from the namespace object
|
|
NameSpace[_metadataconstants.VIEWPORT_BOUNDARY_NAME.slice(0)];
|
|
const OutletBoundary = // We use slice(0) to trick the bundler into not inlining/minifying the function
|
|
// so it retains the name inferred from the namespace object
|
|
NameSpace[_metadataconstants.OUTLET_BOUNDARY_NAME.slice(0)];
|
|
|
|
//# sourceMappingURL=metadata-boundary.js.map
|