Bump version, add toast
This commit is contained in:
parent
f93113ec14
commit
d09b24655a
@ -3,6 +3,8 @@
|
||||
import { apiGet } from "$lib/scripts/apiFetch";
|
||||
import { getCurrentLocation } from "$lib/scripts/getLocation";
|
||||
import { location } from "$lib/stores/location";
|
||||
import { uuid } from "$lib/stores/uuid";
|
||||
import toast from "svelte-french-toast";
|
||||
//import { NearestStationResponse } from "@owlboard/ts-types";
|
||||
export let variables = {
|
||||
title: "Near to Me",
|
||||
@ -10,6 +12,7 @@
|
||||
|
||||
function turnOnLocation() {
|
||||
location.set(true);
|
||||
toast("To disable location, go to settings")
|
||||
}
|
||||
|
||||
async function getNearestStations() {
|
||||
|
@ -1,3 +1,3 @@
|
||||
export const version: string = "2024.06.5";
|
||||
export const version: string = "2024.07.1";
|
||||
export const versionTag: string = "";
|
||||
export const showWelcome: boolean = false;
|
||||
|
@ -5,11 +5,16 @@
|
||||
import Island from "$lib/islands/island.svelte";
|
||||
import { location } from "$lib/stores/location";
|
||||
import { getCurrentLocation } from "$lib/scripts/getLocation";
|
||||
import toast from "svelte-french-toast";
|
||||
const title = "Settings";
|
||||
|
||||
$: if ($location) {
|
||||
getCurrentLocation()
|
||||
}
|
||||
|
||||
function locationToast() {
|
||||
toast("Settings updated")
|
||||
}
|
||||
</script>
|
||||
|
||||
<Header {title} />
|
||||
@ -20,7 +25,7 @@
|
||||
<p>Use your location to quickly check departure boards near you</p>
|
||||
<div class="checkbox-container">
|
||||
<label for="location_enable">Enabled</label>
|
||||
<input id="location_enable" type="checkbox" bind:checked={$location}>
|
||||
<input id="location_enable" type="checkbox" bind:checked={$location} on:click={locationToast}>
|
||||
</div>
|
||||
</Island>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user