2024-02-14 09:17:43 +00:00
|
|
|
<script>
|
2024-03-02 20:38:51 +00:00
|
|
|
import { getContext } from 'svelte';
|
2024-02-14 09:17:43 +00:00
|
|
|
import Modal from '../common/Modal.svelte';
|
2024-03-02 08:33:20 +00:00
|
|
|
import Database from './Settings/Database.svelte';
|
2024-02-14 09:17:43 +00:00
|
|
|
|
|
|
|
import General from './Settings/General.svelte';
|
|
|
|
import Users from './Settings/Users.svelte';
|
|
|
|
|
2024-03-02 20:38:51 +00:00
|
|
|
const i18n = getContext('i18n');
|
|
|
|
|
2024-02-14 09:17:43 +00:00
|
|
|
export let show = false;
|
|
|
|
|
|
|
|
let selectedTab = 'general';
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<Modal bind:show>
|
|
|
|
<div>
|
|
|
|
<div class=" flex justify-between dark:text-gray-300 px-5 py-4">
|
2024-03-02 20:38:51 +00:00
|
|
|
<div class=" text-lg font-medium self-center">{$i18n.t('Admin Settings')}</div>
|
2024-02-14 09:17:43 +00:00
|
|
|
<button
|
|
|
|
class="self-center"
|
|
|
|
on:click={() => {
|
|
|
|
show = false;
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
viewBox="0 0 20 20"
|
|
|
|
fill="currentColor"
|
|
|
|
class="w-5 h-5"
|
|
|
|
>
|
|
|
|
<path
|
|
|
|
d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<hr class=" dark:border-gray-800" />
|
|
|
|
|
|
|
|
<div class="flex flex-col md:flex-row w-full p-4 md:space-x-4">
|
|
|
|
<div
|
|
|
|
class="tabs flex flex-row overflow-x-auto space-x-1 md:space-x-0 md:space-y-1 md:flex-col flex-1 md:flex-none md:w-40 dark:text-gray-200 text-xs text-left mb-3 md:mb-0"
|
|
|
|
>
|
|
|
|
<button
|
|
|
|
class="px-2.5 py-2.5 min-w-fit rounded-lg flex-1 md:flex-none flex text-right transition {selectedTab ===
|
|
|
|
'general'
|
|
|
|
? 'bg-gray-200 dark:bg-gray-700'
|
|
|
|
: ' hover:bg-gray-300 dark:hover:bg-gray-800'}"
|
|
|
|
on:click={() => {
|
|
|
|
selectedTab = 'general';
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<div class=" self-center mr-2">
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
viewBox="0 0 16 16"
|
|
|
|
fill="currentColor"
|
|
|
|
class="w-4 h-4"
|
|
|
|
>
|
|
|
|
<path
|
|
|
|
fill-rule="evenodd"
|
|
|
|
d="M6.955 1.45A.5.5 0 0 1 7.452 1h1.096a.5.5 0 0 1 .497.45l.17 1.699c.484.12.94.312 1.356.562l1.321-1.081a.5.5 0 0 1 .67.033l.774.775a.5.5 0 0 1 .034.67l-1.08 1.32c.25.417.44.873.561 1.357l1.699.17a.5.5 0 0 1 .45.497v1.096a.5.5 0 0 1-.45.497l-1.699.17c-.12.484-.312.94-.562 1.356l1.082 1.322a.5.5 0 0 1-.034.67l-.774.774a.5.5 0 0 1-.67.033l-1.322-1.08c-.416.25-.872.44-1.356.561l-.17 1.699a.5.5 0 0 1-.497.45H7.452a.5.5 0 0 1-.497-.45l-.17-1.699a4.973 4.973 0 0 1-1.356-.562L4.108 13.37a.5.5 0 0 1-.67-.033l-.774-.775a.5.5 0 0 1-.034-.67l1.08-1.32a4.971 4.971 0 0 1-.561-1.357l-1.699-.17A.5.5 0 0 1 1 8.548V7.452a.5.5 0 0 1 .45-.497l1.699-.17c.12-.484.312-.94.562-1.356L2.629 4.107a.5.5 0 0 1 .034-.67l.774-.774a.5.5 0 0 1 .67-.033L5.43 3.71a4.97 4.97 0 0 1 1.356-.561l.17-1.699ZM6 8c0 .538.212 1.026.558 1.385l.057.057a2 2 0 0 0 2.828-2.828l-.058-.056A2 2 0 0 0 6 8Z"
|
|
|
|
clip-rule="evenodd"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</div>
|
2024-03-02 20:38:51 +00:00
|
|
|
<div class=" self-center">{$i18n.t('General')}</div>
|
2024-02-14 09:17:43 +00:00
|
|
|
</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="px-2.5 py-2.5 min-w-fit rounded-lg flex-1 md:flex-none flex text-right transition {selectedTab ===
|
|
|
|
'users'
|
|
|
|
? 'bg-gray-200 dark:bg-gray-700'
|
|
|
|
: ' hover:bg-gray-300 dark:hover:bg-gray-800'}"
|
|
|
|
on:click={() => {
|
|
|
|
selectedTab = 'users';
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<div class=" self-center mr-2">
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
viewBox="0 0 16 16"
|
|
|
|
fill="currentColor"
|
|
|
|
class="w-4 h-4"
|
|
|
|
>
|
|
|
|
<path
|
|
|
|
d="M8 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM3.156 11.763c.16-.629.44-1.21.813-1.72a2.5 2.5 0 0 0-2.725 1.377c-.136.287.102.58.418.58h1.449c.01-.077.025-.156.045-.237ZM12.847 11.763c.02.08.036.16.046.237h1.446c.316 0 .554-.293.417-.579a2.5 2.5 0 0 0-2.722-1.378c.374.51.653 1.09.813 1.72ZM14 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM3.5 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM5 13c-.552 0-1.013-.455-.876-.99a4.002 4.002 0 0 1 7.753 0c.136.535-.324.99-.877.99H5Z"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</div>
|
2024-03-02 20:38:51 +00:00
|
|
|
<div class=" self-center">{$i18n.t('Users')}</div>
|
2024-02-14 09:17:43 +00:00
|
|
|
</button>
|
2024-03-02 08:33:20 +00:00
|
|
|
|
|
|
|
<button
|
|
|
|
class="px-2.5 py-2.5 min-w-fit rounded-lg flex-1 md:flex-none flex text-right transition {selectedTab ===
|
|
|
|
'db'
|
|
|
|
? 'bg-gray-200 dark:bg-gray-700'
|
|
|
|
: ' hover:bg-gray-300 dark:hover:bg-gray-800'}"
|
|
|
|
on:click={() => {
|
|
|
|
selectedTab = 'db';
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<div class=" self-center mr-2">
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
viewBox="0 0 16 16"
|
|
|
|
fill="currentColor"
|
|
|
|
class="w-4 h-4"
|
|
|
|
>
|
|
|
|
<path d="M8 7c3.314 0 6-1.343 6-3s-2.686-3-6-3-6 1.343-6 3 2.686 3 6 3Z" />
|
|
|
|
<path
|
|
|
|
d="M8 8.5c1.84 0 3.579-.37 4.914-1.037A6.33 6.33 0 0 0 14 6.78V8c0 1.657-2.686 3-6 3S2 9.657 2 8V6.78c.346.273.72.5 1.087.683C4.42 8.131 6.16 8.5 8 8.5Z"
|
|
|
|
/>
|
|
|
|
<path
|
|
|
|
d="M8 12.5c1.84 0 3.579-.37 4.914-1.037.366-.183.74-.41 1.086-.684V12c0 1.657-2.686 3-6 3s-6-1.343-6-3v-1.22c.346.273.72.5 1.087.683C4.42 12.131 6.16 12.5 8 12.5Z"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</div>
|
2024-03-02 20:38:51 +00:00
|
|
|
<div class=" self-center">{$i18n.t('Database')}</div>
|
2024-03-02 08:33:20 +00:00
|
|
|
</button>
|
2024-02-14 09:17:43 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex-1 md:min-h-[380px]">
|
|
|
|
{#if selectedTab === 'general'}
|
|
|
|
<General
|
|
|
|
saveHandler={() => {
|
|
|
|
show = false;
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
{:else if selectedTab === 'users'}
|
|
|
|
<Users
|
|
|
|
saveHandler={() => {
|
|
|
|
show = false;
|
|
|
|
}}
|
|
|
|
/>
|
2024-03-02 08:33:20 +00:00
|
|
|
{:else if selectedTab === 'db'}
|
|
|
|
<Database
|
|
|
|
saveHandler={() => {
|
|
|
|
show = false;
|
|
|
|
}}
|
|
|
|
/>
|
2024-02-14 09:17:43 +00:00
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Modal>
|