mirror of
https://github.com/itdoginfo/podkop.git
synced 2026-07-31 19:14:14 +03:00
99 lines
2.3 KiB
JavaScript
99 lines
2.3 KiB
JavaScript
"use strict";
|
|
"require view";
|
|
"require form";
|
|
"require baseclass";
|
|
"require network";
|
|
"require view.podkop.main as main";
|
|
|
|
// Settings content
|
|
"require view.podkop.settings as settings";
|
|
|
|
// Sections content
|
|
"require view.podkop.section as section";
|
|
|
|
// Dashboard content
|
|
"require view.podkop.dashboard as dashboard";
|
|
|
|
// Diagnostic content
|
|
"require view.podkop.diagnostic as diagnostic";
|
|
|
|
const EntryPoint = {
|
|
async render() {
|
|
main.injectGlobalStyles();
|
|
|
|
const podkopMap = new form.Map(
|
|
"podkop",
|
|
_("Podkop Settings"),
|
|
_("Configuration for Podkop service"),
|
|
);
|
|
// Enable tab views
|
|
podkopMap.tabbed = true;
|
|
|
|
// Sections tab
|
|
const sectionsSection = podkopMap.section(
|
|
form.TypedSection,
|
|
"section",
|
|
_("Sections"),
|
|
);
|
|
sectionsSection.anonymous = false;
|
|
sectionsSection.addremove = true;
|
|
sectionsSection.template = "cbi/simpleform";
|
|
|
|
// Render section content
|
|
section.createSectionContent(sectionsSection);
|
|
|
|
// Settings tab
|
|
const settingsSection = podkopMap.section(
|
|
form.TypedSection,
|
|
"settings",
|
|
_("Settings"),
|
|
);
|
|
settingsSection.anonymous = true;
|
|
settingsSection.addremove = false;
|
|
// Make it named [ config settings 'settings' ]
|
|
settingsSection.cfgsections = function () {
|
|
return ["settings"];
|
|
};
|
|
|
|
// Render settings content
|
|
settings.createSettingsContent(settingsSection);
|
|
|
|
// Diagnostic tab
|
|
const diagnosticSection = podkopMap.section(
|
|
form.TypedSection,
|
|
"diagnostic",
|
|
_("Diagnostics"),
|
|
);
|
|
diagnosticSection.anonymous = true;
|
|
diagnosticSection.addremove = false;
|
|
diagnosticSection.cfgsections = function () {
|
|
return ["diagnostic"];
|
|
};
|
|
|
|
// Render diagnostic content
|
|
diagnostic.createDiagnosticContent(diagnosticSection);
|
|
|
|
// Dashboard tab
|
|
const dashboardSection = podkopMap.section(
|
|
form.TypedSection,
|
|
"dashboard",
|
|
_("Dashboard"),
|
|
);
|
|
dashboardSection.anonymous = true;
|
|
dashboardSection.addremove = false;
|
|
dashboardSection.cfgsections = function () {
|
|
return ["dashboard"];
|
|
};
|
|
|
|
// Render dashboard content
|
|
dashboard.createDashboardContent(dashboardSection);
|
|
|
|
// Inject core service
|
|
main.coreService();
|
|
|
|
return podkopMap.render();
|
|
},
|
|
};
|
|
|
|
return view.extend(EntryPoint);
|