Manage modals like a boss πͺ!
No wrapper components, no extra markup, no dependencies, just modals.
β¨ Why choose this?
- NO crazy abstractions! β
- NO adding components to the dom! β
- NO dependencies! β
Just lean & mean modals, let's π go π
π Features:
- Can manage thousands of modals at once π¦
- Components dynamically added and removed from the dom π
- Pass props and get instance references.
- Backdrop overlay included π
- Keyboard shortcuts ready πΉ
npm install @mateothegreat/svelte5-modal-manager
The ModalConfig
object is used to configure a modal when calling the manager.open()
method.
It's a simple object that has the following properties available as options:
name | default | description |
---|---|---|
id |
optional | A unique identifier for the modal (auto-generated if not provided). |
classes |
optional | Additional CSS classes to apply to the modal. |
component |
required | The Svelte component to render inside the modal. |
props |
optional | Additional props to pass to the modal component. |
backdrop |
optional | Whether to display a backdrop behind the modal. |
blurrable |
optional | Whether to close the modal when clicking outside of it. |
keybindings |
optional | Array of KeyBinding objects for keyboard interactions. |
Usage example:
import { manager } from "@mateothegreat/svelte5-modal-manager";
const modal = manager.open({
id: "my-modal",
component: MyModalComponent,
props: {
name: "John Doe",
},
backdrop: true,
blurrable: true,
keybindings: [
{
key: Key.Escape,
fn: (instance) => {
console.log("Escape key pressed while this modal was open!");
console.log("inner instance object reference:", instance);
},
},
],
});
The manager.open()
method takes a ModalConfig
object as an argument (see above):
First, let's create a custom modal component that we can open using the modal manager:
my-custom-component.svelte
:
<script lang="ts">
import type { ModalProps } from "@mateothegreat/svelte5-modal-manager";
/**
* This is the reference to the modal instance that is accessible
* within this custom component.
*
* This is passed in automatically by the manager for
* all modals.
*/
let { instance }: ModalProps = $props();
</script>
<div>
<h1>I am a modal with id "{instance.config.id}"</h1>
<div>Click outside of this modal to close it!</div>
<button onclick={() => instance.close()}>close manually</button>
</div>
[!NOTE] When the modal manager instantiates your
component
, it will pass in aModalInstance
object as a prop so you can interact with the manager from within your component.
Now, to open the modal, you can do the following:
app.svelte
:
<script lang="ts">
import { manager } from "@mateothegreat/svelte5-modal-manager";
import MyCustomComponent from "./my-custom-component.svelte";
const instance =manager.open({
component: MyCustomComponent,
keybindings: [
{
key: Key.Escape,
fn: (instance) => {
console.log(instance.config.id, "Escape key pressed while this modal was open!");
console.log("inner instance object reference:", instance);
}
}
]
});
console.log("outer instance object reference:", instance);
</script>
To close a modal from within the modal component, you can call the instance.close()
method:
<script lang="ts">
import { manager } from "@mateothegreat/svelte5-modal-manager";
let { instance }: ModalProps = $props();
</script>
<button onclick={() => instance.close()}>close manually</button>
To close a modal from outside the modal component, you can call the manager.close()
method:
<script lang="ts">
import { manager } from "@mateothegreat/svelte5-modal-manager";
manager.close("my-modal");
</script>
The modal manager supports keybindings for modals.
To add a keybinding, you can pass an array of KeyBinding
objects to the keybindings
property in the ModalConfig
object.
import { Key } from "@mateothegreat/svelte5-modal-manager/keybindings";
const modal = manager.open({
component: MyModalComponent,
keybindings: [
{
key: Key.Escape,
fn: (instance) => {
console.log("Escape key pressed while this modal was open!");
console.log("inner instance object reference:", instance);
},
},
],
});
The modal manager includes a backdrop overlay by default.
To enable the backdrop, you can set the backdrop
property to true
in the ModalConfig
object:
import { manager } from "@mateothegreat/svelte5-modal-manager";
manager.open({
component: MyModalComponent,
backdrop: true,
});
The modal manager includes a blurrable feature out of the box.
[!NOTE] The blurrable feature is used to close the modal when a click event occurs outside of the modal and the target of the click event is not within the modal (i.e. not a child of the modal).
To enable the blurrable feature, you can set the blurrable
property to true
in the ModalConfig
object:
import { manager } from "@mateothegreat/svelte5-modal-manager";
manager.open({
component: MyModalComponent,
blurrable: true,
});
The modal manager is highly customizable.
One of the most common customizations is to change the classes that are applied to the root modal element.
To do this, you can pass a classes
property to the ModalConfig
object when opening the modal:
import { manager } from "@mateothegreat/svelte5-modal-manager";
manager.open({
component: MyModalComponent,
classes: "bg-red-500 text-purple-500",
});