Compare commits
4 Commits
0.1.6
...
feature/18
| Author | SHA1 | Date | |
|---|---|---|---|
| eb023fac5c | |||
| 26951b4f0f | |||
| e6d8861340 | |||
| 37c384aa36 |
@@ -1,17 +1,19 @@
|
|||||||
<script>
|
<script>
|
||||||
import isURL from "validator/lib/isURL";
|
import isURL from "validator/lib/isURL";
|
||||||
import isUUID from "validator/lib/isUUID";
|
import isUUID from "validator/lib/isUUID";
|
||||||
import { apikey, lang, stationinfo, api_endpoint } from "./store.js";
|
import { apikey, lang, stationinfo, api_endpoint, page } from "./store.js";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
import background from "./kaya_kids_background.jpg";
|
||||||
import { _, locale } from "svelte-i18n";
|
import { _, locale } from "svelte-i18n";
|
||||||
let token;
|
let token;
|
||||||
let api_endpoint_input = "";
|
let api_endpoint_input = "";
|
||||||
$: error = false;
|
$: error = false;
|
||||||
$: errormessage = "";
|
$: errormessage = "";
|
||||||
$: isTokenValid =
|
$: isTokenValid =
|
||||||
token?.length === 44 &&
|
token === "rst" ||
|
||||||
|
(token?.length === 44 &&
|
||||||
token.split(".")[0].length === 7 &&
|
token.split(".")[0].length === 7 &&
|
||||||
isUUID(token.split(".")[1]);
|
isUUID(token.split(".")[1]));
|
||||||
$: isEndpointValid = isURL(api_endpoint_input);
|
$: isEndpointValid = isURL(api_endpoint_input);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -66,6 +68,13 @@
|
|||||||
class="flex flex-col pt-3 md:pt-8"
|
class="flex flex-col pt-3 md:pt-8"
|
||||||
onsubmit="event.preventDefault();"
|
onsubmit="event.preventDefault();"
|
||||||
on:submit={() => {
|
on:submit={() => {
|
||||||
|
if (token === "rst") {
|
||||||
|
apikey.set("");
|
||||||
|
api_endpoint.set("");
|
||||||
|
page.set("");
|
||||||
|
token = "";
|
||||||
|
api_endpoint_input = "";
|
||||||
|
} else {
|
||||||
axios
|
axios
|
||||||
.request({
|
.request({
|
||||||
method: "GET",
|
method: "GET",
|
||||||
@@ -82,6 +91,7 @@
|
|||||||
error = true;
|
error = true;
|
||||||
errormessage = e.response.data.short;
|
errormessage = e.response.data.short;
|
||||||
});
|
});
|
||||||
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div class="flex flex-col pt-4">
|
<div class="flex flex-col pt-4">
|
||||||
@@ -117,10 +127,18 @@
|
|||||||
class="flex flex-col pt-3 md:pt-8"
|
class="flex flex-col pt-3 md:pt-8"
|
||||||
onsubmit="event.preventDefault();"
|
onsubmit="event.preventDefault();"
|
||||||
on:submit={() => {
|
on:submit={() => {
|
||||||
|
if (api_endpoint_input === "rst") {
|
||||||
|
apikey.set("");
|
||||||
|
api_endpoint.set("");
|
||||||
|
page.set("");
|
||||||
|
token = "";
|
||||||
|
api_endpoint_input = "";
|
||||||
|
} else {
|
||||||
if (api_endpoint_input.substr(-1) !== "/") {
|
if (api_endpoint_input.substr(-1) !== "/") {
|
||||||
api_endpoint_input = api_endpoint_input + "/";
|
api_endpoint_input = api_endpoint_input + "/";
|
||||||
}
|
}
|
||||||
api_endpoint.set(api_endpoint_input);
|
api_endpoint.set(api_endpoint_input);
|
||||||
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div class="flex flex-col pt-4">
|
<div class="flex flex-col pt-4">
|
||||||
@@ -239,7 +257,7 @@
|
|||||||
<img
|
<img
|
||||||
alt=""
|
alt=""
|
||||||
class="object-cover w-full h-screen hidden md:block"
|
class="object-cover w-full h-screen hidden md:block"
|
||||||
src="https://source.unsplash.com/IXUM4cJynP0"
|
src={background}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
BIN
src/kaya_kids_background.jpg
Normal file
BIN
src/kaya_kids_background.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 538 KiB |
Reference in New Issue
Block a user