summaryrefslogtreecommitdiff
path: root/ui/lib/components/NotificationSettings.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'ui/lib/components/NotificationSettings.svelte')
-rw-r--r--ui/lib/components/NotificationSettings.svelte42
1 files changed, 42 insertions, 0 deletions
diff --git a/ui/lib/components/NotificationSettings.svelte b/ui/lib/components/NotificationSettings.svelte
new file mode 100644
index 0000000..c690b21
--- /dev/null
+++ b/ui/lib/components/NotificationSettings.svelte
@@ -0,0 +1,42 @@
+<script>
+ import Toggle from '$lib/components/Toggle.svelte';
+ // let { invites, createInvite = async () => {} } = $props();
+
+ async function onsubmit(event) {
+ event.preventDefault();
+ await createInvite();
+ }
+</script>
+
+<h2>Notify me when:</h2>
+
+<Toggle
+ name="channel_created"
+ text="A new channel is created"
+ onclick={async () => {}}
+/>
+<Toggle
+ name="message_arrives"
+ text="A new message arrives in a channel"
+ onclick={async () => {}}
+/>
+<Toggle
+ name="message_arrives_username"
+ text="A new message containing your username arrives in a channel"
+ onclick={async () => {}}
+/>
+<Toggle
+ name="message_arrives_keyword"
+ text="A new message containing a keyword you have configured arrives in a channel"
+ onclick={async () => {}}
+/>
+<Toggle
+ name="own_message_stitched"
+ text="A message you wrote is stitched"
+ onclick={async () => {}}
+/>
+<Toggle
+ name="flagged_message_stitched"
+ text="A message you have flagged is stitched"
+ onclick={async () => {}}
+/>