add bottom padding to main,

improve error handling with request function
This commit is contained in:
Arthur Lu 2023-10-18 19:33:58 +00:00
parent 54ecfaf782
commit 4e4b63f63a
5 changed files with 31 additions and 23 deletions

View File

@ -53,7 +53,7 @@
</nav>
</header>
<main>
<section class="w3-container">
<section>
<h2>Account</h2>
<div class="w3-card w3-padding">
<h3>Account Details</h3>

View File

@ -26,7 +26,7 @@
</nav>
</header>
<main>
<section class="w3-container">
<section>
<h2 id="name"><a href="index.html">Instances</a> / %{vmname}</h2>
<form>
<fieldset class="w3-card w3-padding">

View File

@ -43,6 +43,10 @@ main, dialog {
color: var(--main-text-color);
}
main {
padding: 0 16px 16px 16px;
}
.w3-card {
background-color: var(--main-card-bg-color);
box-shadow: var(--main-card-box-shadow);

View File

@ -56,7 +56,7 @@
</nav>
</header>
<main>
<section class="w3-container">
<section>
<h2>Instances</h2>
<div class="w3-card w3-padding">
<div class="flex row nowrap" style="margin-top: 1em; justify-content: space-between;">

View File

@ -207,6 +207,7 @@ export async function requestAPI (path, method, body = null) {
}
async function request (url, content) {
try {
const response = await fetch(url, content);
const contentType = response.headers.get("Content-Type");
let data = null;
@ -221,7 +222,6 @@ async function request (url, content) {
else {
data = response;
}
if (!response.ok) {
return { status: response.status, error: data ? data.error : response.status };
}
@ -230,6 +230,10 @@ async function request (url, content) {
return data || response;
}
}
catch (error) {
return {status: 400, error: error};
}
}
export function goToPage (page, data = null) {
const params = data ? (new URLSearchParams(data)).toString() : "";