Giter VIP home page Giter VIP logo

Comments (4)

ktarmyshov avatar ktarmyshov commented on July 20, 2024 3

Hi, Chris, below is the code. This appears only if there is a small delay (not too short and not too long) - I added a workaround for myself show modal error after 200ms delay - then it works. I suppose this might be linked to animations of disappearing - just a guess.

<script lang="ts">
	import type { ModalSettings } from '@skeletonlabs/skeleton';
	import { getModalStore } from '@skeletonlabs/skeleton';

	function delay(ms: number) {
		return new Promise((resolve) => setTimeout(resolve, ms));
	}

	const modalStore = getModalStore();

	const modal: ModalSettings = {
		type: 'confirm',
		// Data
		title: 'Please Confirm',
		body: 'Are you sure you wish to proceed?',
		// TRUE if confirm pressed, FALSE if cancel pressed
		response: async (r: boolean) => {
			// Some action is happening...
			await delay(100);
			// Error occurred
			const modalError: ModalSettings = {
				type: 'alert',
				// Data
				title: 'Error title',
				body: 'Error Body'
			};

			modalStore.trigger(modalError);
		}
	};

	function handleSubmit() {
		modalStore.trigger(modal);
	}
</script>

<form method="post" on:submit|preventDefault={handleSubmit}>
	<!-- <input type="text" /> -->
	<button>Action button</button>
</form>

from skeleton.

endigo9740 avatar endigo9740 commented on July 20, 2024

@ktarmyshov given this sounds like a very specific series of steps, would you mind creating a minimal reproduction of this? It might be helpful for troubleshooting this.

from skeleton.

Pertempto avatar Pertempto commented on July 20, 2024

I also encountered the same bug.

from skeleton.

Pertempto avatar Pertempto commented on July 20, 2024

@ktarmyshov thanks for the delay workaround! It's not ideal, but it at least acts as a temporary way to get my dialogs to show up when I need them to.

from skeleton.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.