Add Config Page

This commit is contained in:
Samuel Lorch 2023-04-02 02:03:34 +02:00
parent 5a15479c92
commit 742064e982
2 changed files with 74 additions and 0 deletions

View file

@ -9,6 +9,7 @@ import IEthernet from '~icons/bi/ethernet';
import IService from '~icons/material-symbols/home-repair-service'; import IService from '~icons/material-symbols/home-repair-service';
import ISNAT from '~icons/mdi/arrow-expand-right'; import ISNAT from '~icons/mdi/arrow-expand-right';
import IDNAT from '~icons/mdi/arrow-collapse-right'; import IDNAT from '~icons/mdi/arrow-collapse-right';
import IConfig from '~icons/grommet-icons/document-config';
enum NavState { Open, Reduced, Collapsed }; enum NavState { Open, Reduced, Collapsed };
const NavStateCount = 3; const NavStateCount = 3;
@ -21,6 +22,7 @@ const navRoutes = {
"/network/interfaces": { icon: IEthernet, caption: "Interfaces" }, "/network/interfaces": { icon: IEthernet, caption: "Interfaces" },
"/object/addresses": { icon: IAddress, caption: "Addresses" }, "/object/addresses": { icon: IAddress, caption: "Addresses" },
"/object/services": { icon: IService, caption: "Services" }, "/object/services": { icon: IService, caption: "Services" },
"/config/config": { icon: IConfig, caption: "Config" },
}; };
enum AuthState { Unauthenticated, MfaRequired, Authenticated }; enum AuthState { Unauthenticated, MfaRequired, Authenticated };

View file

@ -0,0 +1,72 @@
<script setup lang="ts">
import { apiCall } from "../../api";
let changelog = $ref([]);
let loading = $ref(false);
const columns = [
{heading: 'Path', path: 'path'},
{heading: 'Type', path: 'type'},
{heading: 'From', path: 'from'},
{heading: 'To', path: 'to'},
];
const displayData = $computed(() => {
let data: any;
data = [];
for (const change of changelog) {
data.push({
path: change.path,
type: change.type,
from: change.from,
to: change.to,
});
}
return data;
});
async function load(){
loading = true
let res = await apiCall("Config.GetPendingChangelog", {});
if (res.Error === null) {
console.debug("changelog", res.Data.Changelog);
changelog = res.Data.Changelog;
} else {
console.debug("error", res);
}
loading = false
}
async function apply(){
let res = await apiCall("Config.ApplyPendingChanges", {});
if (res.Error === null) {
console.debug("apply");
} else {
console.debug("error", res);
}
load()
}
async function discard(){
let res = await apiCall("Config.DiscardPendingChanges", {});
if (res.Error === null) {
console.debug("apply");
} else {
console.debug("error", res);
}
load()
}
onMounted(async() => {
load();
});
</script>
<template>
<TableView title="Config" :columns="columns" :loading="loading" v-model:data="displayData" :table-props="{sort:true, sortSelf: true}">
<button @click="load">Refresh</button>
<button @click="apply">Apply</button>
<button @click="discard">Discard</button>
</TableView>
</template>