coolify/resources/views/team/notifications.blade.php

25 lines
1.3 KiB
PHP
Raw Normal View History

2023-06-02 12:34:45 +02:00
<x-layout>
2023-09-06 14:31:38 +02:00
<x-team.navbar />
2023-08-07 15:31:42 +02:00
<h2 class="pb-4">Notifications</h2>
2023-06-02 12:34:45 +02:00
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'email' }" class="flex h-full">
<div class="flex flex-col gap-4 min-w-fit">
<a :class="activeTab === 'email' && 'text-white'"
2023-08-11 17:31:53 +02:00
@click.prevent="activeTab = 'email'; window.location.hash = 'email'" href="#">Email</a>
2023-09-06 14:31:38 +02:00
<a :class="activeTab === 'Telegram' && 'text-white'"
@click.prevent="activeTab = 'telegram'; window.location.hash = 'telegram'" href="#">Telegram</a>
2023-06-02 12:34:45 +02:00
<a :class="activeTab === 'discord' && 'text-white'"
2023-08-11 17:31:53 +02:00
@click.prevent="activeTab = 'discord'; window.location.hash = 'discord'" href="#">Discord</a>
2023-06-02 12:34:45 +02:00
</div>
<div class="w-full pl-8">
<div x-cloak x-show="activeTab === 'email'" class="h-full">
2023-09-06 14:31:38 +02:00
<livewire:notifications.email-settings />
</div>
<div x-cloak x-show="activeTab === 'telegram'" class="h-full">
2023-12-07 19:06:32 +01:00
<livewire:notifications.telegram-settings />
2023-06-02 12:34:45 +02:00
</div>
<div x-cloak x-show="activeTab === 'discord'">
2023-09-06 14:31:38 +02:00
<livewire:notifications.discord-settings />
2023-06-02 12:34:45 +02:00
</div>
</div>
</x-layout>