6,136 questions
0
votes
1
answer
26
views
Stripe Payment Button Not Triggering on Mobile
I’m working on a SvelteKit project with Supabase and Stripe. On my pricing page, I’ve got buttons for users to pay and upgrade their plans. Everything works great on desktop when I click the button, ...
1
vote
1
answer
33
views
Nice way to load data in-time with Svelte
In Svelte, we have a very nice and beautiful way to load some data in time and render it using @const:
<script>
let a = false;
</script>
<button on:click={() => a = !a}>&...
1
vote
0
answers
20
views
Using GORM models in frontend of Wails app
I'm building a desktop app with Wails which writes to a local SQLite database.
I have the following model in my Go backend:
type FilmGroup struct {
gorm.Model
Films []FilmRoll
...
0
votes
0
answers
24
views
SvelteKit + Capacitor: Images and Audio Not Loading in iOS Simulator
I'm working on a SvelteKit project with Capacitor to build a mobile app. The app should display images and play audio files. Everything works fine in the browser, but when I run the app in the iOS ...
0
votes
1
answer
22
views
Svelte:window component onload not triggering
In Svelte5, why is the onload event not triggering the function foo() in src/routers/+layout.svelte?
<script>
const foo = () => console.log('foo triggered')
</script>
<svelte:...
0
votes
2
answers
69
views
+250
How can I programatically authenticate a user in Auth.js?
I have a Django application with authenticated (logged-in) users.
UPDATE: using the built-in django authentication.
I have another (Svelte) application using Auth.js (https://authjs.dev) for ...
1
vote
0
answers
56
views
Unit test when there is style on the component
I'm checking out Svelte 5 and I have this simple component
<script lang="ts">
let {
name
}: {
name: string;
} = $props();
</script>
<h1>
...
0
votes
0
answers
30
views
How to make sveltekit SPA app manage routes with golang backend when entering urls in browser
With having backend built in golang, frontend built in sveltekit as an SPA, how to make sveltekit frontend manage routes make in sveltekit, while having golang handle routes for api?
For example: i ...
0
votes
1
answer
81
views
How to use a global $derived in Svelte 5?
I'm trying to create a global state with Svelte 5 and runes:
// store.svelte.ts
export const person = ({
name: '',
});
export const mrName = $derived('Mr. ' + person.name); // <-- problem!
I ...
0
votes
1
answer
31
views
How to data bind with pageData?
If I bind directly to data, like:
type Props = {
data: PageData;
};
let { data }: Props = $props();
<input bind:value={data.product.name} />
I get the following warning:
[svelte] ...
0
votes
1
answer
96
views
How to use Dynamic Components in Svelte 5 with Runes?
I have the following code:
<script lang="ts">
import type { SpaceAmenities } from "$src/spaces.d";
import {
Computer,
Plug,
Printer,
Box,
Droplet,
...
0
votes
0
answers
19
views
Applying style variable with TailwindCSS in Svelte 5
I am having confusion while applying style variable with TailwindCSS in Svelte 5.
This works:
<script lang="ts">
interface Props {
rows: number;
columns: number;
...
0
votes
1
answer
40
views
Error when importing svelte.ts into a .svelte file
I'm working on an Svelte application and trying to setup a rune "state" storage in its own separate file so it can be reused, but when trying to import on a .svelte component, I get a ...
0
votes
2
answers
60
views
Svelte5/SvelteKit2 - $page.data vs let data: LayoutData = $props() in page.svelte?
It appears to me, that the data set by the return of an outer (for example the global) layout.server.ts file is accessible in two ways by it's children and nested components:
// outer layout.server.ts
...
0
votes
1
answer
35
views
Dynamically access local data elsewhere on the server with sveltekit
On the server that my website runs off of, I have a JSON file located in /srv that updates every day with new data that I would like sveltekit to read every time the page is loaded.
//import latestVid ...