Files
drop/pages/admin/users/auth/simple/index.vue
Husky 1ae051f066 Update Prisma to 6.11 (#133)
* chore: update prisma to 6.11

more prisma future proofing due to experimental features

* chore: update dependencies

twemoji - new unicode update
argon2 - bux fixes
vue3-carousel - improve mobile experiance
vue-tsc - more stable

* fix: incorrect prisma version in docker

Also remove default value for BUILD_DROP_VERSION, that is now handled in nuxt config

* fix: no logging in prod

* chore: optimize docker builds even more

* fix: revert adoption of prisma driverAdapters

see: https://github.com/prisma/prisma/issues/27486

* chore: optimize dockerignore some more

* Fix `pino-pretty` not being included in build (#135)

* Remove `pino` from frontend

* Fix for downloads and removing of library source (#136)

* fix: downloads and removing library source

* fix: linting

* Fix max file size of 4GB (update droplet) (#137)

* Fix manual metadata import (#138)

* chore(deps): bump vue-i18n from 10.0.7 to 10.0.8 (#140)

Bumps [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n) from 10.0.7 to 10.0.8.
- [Release notes](https://github.com/intlify/vue-i18n/releases)
- [Changelog](https://github.com/intlify/vue-i18n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/intlify/vue-i18n/commits/v10.0.8/packages/vue-i18n)

---
updated-dependencies:
- dependency-name: vue-i18n
  dependency-version: 10.0.8
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump @intlify/core from 10.0.7 to 10.0.8 (#139)

---
updated-dependencies:
- dependency-name: "@intlify/core"
  dependency-version: 10.0.8
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Small fixes (#141)

* fix: save task as Json rather than string

* fix: pull objects before creating game in database

* fix: strips relative dirs from version information

* fix: #132

* fix: lint

* fix: news object ids and small tweaks

* fix: notification styling errors

* fix: lint

* fix: build issues by regenerating lockfile

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: DecDuck <declanahofmeyr@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-25 21:28:00 +10:00

527 lines
20 KiB
Vue

<template>
<div>
<div class="mx-auto max-w-2xl lg:mx-0">
<h2
class="mt-2 text-xl font-semibold tracking-tight text-zinc-100 sm:text-3xl"
>
{{ $t("users.admin.simple.title") }}
</h2>
<p
class="mt-2 text-pretty text-sm font-medium text-zinc-400 sm:text-md/8"
>
{{ $t("users.admin.simple.description") }}
</p>
</div>
<div>
<div class="border-b border-zinc-700 py-5">
<div
class="-mt-2 flex flex-wrap items-center justify-between sm:flex-nowrap"
>
<div class="mt-2">
<h3 class="text-base font-semibold text-zinc-100">
{{ $t("users.admin.simple.invitationTitle") }}
</h3>
</div>
<div class="ml-4 mt-2 shrink-0">
<button
type="button"
class="relative inline-flex items-center rounded-md bg-blue-600 px-3 py-2 text-sm font-semibold text-white shadow-sm transition-all duration-200 hover:bg-blue-500 hover:scale-105 hover:shadow-lg hover:shadow-blue-500/25 active:scale-95 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-blue-600"
@click="() => (createModalOpen = true)"
>
{{ $t("users.admin.simple.createInvitation") }}
</button>
</div>
</div>
</div>
<ul role="list" class="divide-y divide-zinc-800">
<li
v-for="invitation in invitations"
:key="invitation.id"
class="relative flex justify-between gap-x-6 py-5"
>
<div class="flex min-w-0 gap-x-4">
<div class="min-w-0 flex-auto">
<div class="text-sm/6 font-semibold text-zinc-100">
<p>{{ invitation.inviteUrl }}</p>
</div>
<p class="mt-1 flex text-xs/5 text-gray-500">
{{
invitation.username ??
$t("users.admin.simple.noUsernameEnforced")
}}
{{ $t("common.divider") }}
{{
invitation.email ?? $t("users.admin.simple.noEmailEnforced")
}}
</p>
</div>
</div>
<div class="flex shrink-0 items-center gap-x-4">
<div class="hidden sm:flex sm:flex-col sm:items-end">
<p class="text-sm/6 text-zinc-100">
{{
invitation.isAdmin
? $t("users.admin.simple.adminInvitation")
: $t("users.admin.simple.userInvitation")
}}
</p>
<p class="mt-1 text-sm text-gray-500">
<!-- forever is relative, right? -->
<i18n-t
v-if="
new Date(invitation.expires).getTime() - Date.now() <
3.156e12 // 100 years
"
keypath="users.admin.simple.expires"
tag="span"
scope="global"
>
<template #expiry>
<RelativeTime :date="invitation.expires" />
</template>
</i18n-t>
<span v-else>
{{ $t("users.admin.simple.neverExpires") }}
</span>
</p>
</div>
<button @click="() => deleteInvitation(invitation.id)">
<TrashIcon
class="h-5 w-5 flex-none text-red-600"
aria-hidden="true"
/>
</button>
</div>
</li>
</ul>
<div v-if="invitations.length == 0" class="py-4 text-zinc-400 text-sm">
{{ $t("users.admin.simple.noInvitations") }}
</div>
</div>
<TransitionRoot as="template" :show="createModalOpen">
<Dialog class="relative z-50" @close="createModalOpen = false">
<TransitionChild
as="template"
enter="ease-out duration-300"
enter-from="opacity-0"
enter-to="opacity-100"
leave="ease-in duration-200"
leave-from="opacity-100"
leave-to="opacity-0"
>
<div
class="fixed inset-0 bg-zinc-950 bg-opacity-75 transition-opacity"
/>
</TransitionChild>
<div class="fixed inset-0 z-10 w-screen overflow-y-auto">
<div
class="flex min-h-full items-start justify-center p-4 text-center sm:items-center sm:p-0"
>
<TransitionChild
as="template"
enter="ease-out duration-300"
enter-from="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
enter-to="opacity-100 translate-y-0 sm:scale-100"
leave="ease-in duration-200"
leave-from="opacity-100 translate-y-0 sm:scale-100"
leave-to="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
>
<form
class="relative transform rounded-lg bg-zinc-900 text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-lg"
@submit.prevent="() => invite_wrapper()"
>
<div class="px-4 pb-4 pt-5 space-y-4 sm:p-6 sm:pb-4">
<div class="sm:flex sm:items-start">
<div class="mt-3 text-center sm:mt-0 sm:text-left">
<DialogTitle
as="h3"
class="text-base font-semibold text-zinc-100"
>{{ $t("users.admin.simple.inviteTitle") }}
</DialogTitle>
<div class="mt-2">
<p class="text-sm text-zinc-400">
{{ $t("users.admin.simple.inviteDescription") }}
</p>
</div>
</div>
</div>
<div class="space-y-6">
<div>
<label
for="username"
class="block text-sm font-medium leading-6 text-zinc-100"
>{{
$t("users.admin.simple.inviteUsernameLabel")
}}</label
>
<p
:class="[
validUsername ? 'text-blue-400' : 'text-red-500',
'block text-xs font-medium leading-6',
]"
>
{{ $t("users.admin.simple.inviteUsernameFormat") }}
</p>
<div class="mt-2">
<input
id="username"
v-model="username"
name="invite-username"
type="text"
autocomplete="username"
:placeholder="
$t('users.admin.simple.inviteUsernamePlaceholder')
"
class="block w-full rounded-md border-0 py-1.5 px-3 bg-zinc-800 disabled:bg-zinc-900/80 text-zinc-100 disabled:text-zinc-400 shadow-sm ring-1 ring-inset ring-zinc-700 disabled:ring-zinc-800 placeholder:text-zinc-400 focus:ring-2 focus:ring-inset focus:ring-blue-600 sm:text-sm sm:leading-6"
/>
</div>
</div>
<div>
<label
for="email"
class="block text-sm font-medium leading-6 text-zinc-100"
>{{ $t("users.admin.simple.inviteEmailLabel") }}</label
>
<p
:class="[
validEmail ? 'text-blue-400' : 'text-red-500',
'block text-xs font-medium leading-6',
]"
>
{{ $t("users.admin.simple.inviteEmailDescription") }}
</p>
<div class="mt-2">
<input
id="email"
v-model="email"
name="invite-email"
type="email"
autocomplete="email"
:placeholder="
$t('users.admin.simple.inviteEmailPlaceholder')
"
class="block w-full rounded-md border-0 py-1.5 px-3 bg-zinc-800 disabled:bg-zinc-900/80 text-zinc-100 disabled:text-zinc-400 shadow-sm ring-1 ring-inset ring-zinc-700 disabled:ring-zinc-800 placeholder:text-zinc-400 focus:ring-2 focus:ring-inset focus:ring-blue-600 sm:text-sm sm:leading-6"
/>
</div>
</div>
<div>
<SwitchGroup
as="div"
class="flex items-center justify-between"
>
<span class="flex grow flex-col">
<SwitchLabel
as="span"
class="text-sm/6 font-medium text-zinc-100"
passive
>{{
$t("users.admin.simple.inviteAdminSwitchLabel")
}}
</SwitchLabel>
<SwitchDescription
as="span"
class="text-sm text-zinc-400"
>{{
$t(
"users.admin.simple.inviteAdminSwitchDescription",
)
}}</SwitchDescription
>
</span>
<Switch
v-model="isAdmin"
:class="[
isAdmin ? 'bg-blue-600' : 'bg-zinc-800',
'relative inline-flex h-6 w-11 shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-2 focus:ring-blue-600 focus:ring-offset-2',
]"
>
<span
aria-hidden="true"
:class="[
isAdmin ? 'translate-x-5' : 'translate-x-0',
'pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out',
]"
/>
</Switch>
</SwitchGroup>
</div>
<div>
<Listbox v-model="expiryKey" as="div">
<ListboxLabel
class="block text-sm/6 font-medium text-zinc-100"
>{{
$t("users.admin.simple.inviteExpiryLabel")
}}</ListboxLabel
>
<div class="relative mt-2">
<ListboxButton
class="relative w-full cursor-default rounded-md bg-zinc-800 py-1.5 pl-3 pr-10 text-left text-zinc-100 shadow-sm ring-1 ring-inset ring-zinc-700 focus:outline-none focus:ring-2 focus:ring-blue-600 sm:text-sm/6"
>
<span class="block truncate">{{ expiryKey }}</span>
<span
class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2"
>
<ChevronUpDownIcon
class="h-5 w-5 text-gray-400"
aria-hidden="true"
/>
</span>
</ListboxButton>
<transition
leave-active-class="transition ease-in duration-100"
leave-from-class="opacity-100"
leave-to-class="opacity-0"
>
<ListboxOptions
class="absolute z-10 mt-1 max-h-60 w-full overflow-auto rounded-md bg-zinc-900 py-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm"
>
<ListboxOption
v-for="[label] in Object.entries(expiry)"
:key="label"
v-slot="{ active, selected }"
as="template"
:value="label"
>
<li
:class="[
active
? 'bg-blue-600 text-white'
: 'text-zinc-300',
'relative cursor-default select-none py-2 pl-3 pr-9',
]"
>
<span
:class="[
selected
? 'font-semibold text-zinc-100'
: 'font-normal',
'block truncate',
]"
>{{ label }}</span
>
<span
v-if="selected"
:class="[
active ? 'text-white' : 'text-blue-600',
'absolute inset-y-0 right-0 flex items-center pr-4',
]"
>
<CheckIcon
class="h-5 w-5"
aria-hidden="true"
/>
</span>
</li>
</ListboxOption>
</ListboxOptions>
</transition>
</div>
</Listbox>
</div>
</div>
<div v-if="error" class="mt-1 rounded-md bg-red-600/10 p-4">
<div class="flex">
<div class="flex-shrink-0">
<XCircleIcon
class="h-5 w-5 text-red-600"
aria-hidden="true"
/>
</div>
<div class="ml-3">
<h3 class="text-sm font-medium text-red-600">
{{ error }}
</h3>
</div>
</div>
</div>
</div>
<div
class="rounded-b-lg bg-zinc-800 px-4 py-3 sm:flex sm:gap-x-2 sm:flex-row-reverse sm:px-6"
>
<LoadingButton
:loading="loading"
type="submit"
class="w-full sm:w-fit"
:disabled="!(validUsername && validEmail)"
>
{{ $t("users.admin.simple.inviteButton") }}
</LoadingButton>
<button
ref="cancelButtonRef"
type="button"
class="mt-3 inline-flex w-full justify-center rounded-md bg-zinc-800 px-3 py-2 text-sm font-semibold text-zinc-100 shadow-sm ring-1 ring-inset ring-zinc-700 hover:bg-zinc-900 sm:mt-0 sm:w-auto"
@click="createModalOpen = false"
>
{{ $t("cancel") }}
</button>
</div>
</form>
</TransitionChild>
</div>
</div>
</Dialog>
</TransitionRoot>
</div>
</template>
<script setup lang="ts">
import {
Dialog,
DialogTitle,
TransitionChild,
TransitionRoot,
Switch,
SwitchDescription,
SwitchGroup,
SwitchLabel,
Listbox,
ListboxButton,
ListboxLabel,
ListboxOption,
ListboxOptions,
} from "@headlessui/vue";
import { CheckIcon, ChevronUpDownIcon } from "@heroicons/vue/20/solid";
import { TrashIcon, XCircleIcon } from "@heroicons/vue/24/solid";
import type { InvitationModel } from "~/prisma/client/models";
import type { SerializeObject } from "nitropack";
import type { DurationLike } from "luxon";
import { DateTime } from "luxon";
const { t } = useI18n();
definePageMeta({
layout: "admin",
});
useHead({
title: "Simple authentication",
});
const data = await $dropFetch<
Array<SerializeObject<InvitationModel & { inviteUrl: string }>>
>("/api/v1/admin/auth/invitation");
const invitations = ref(data ?? []);
// Makes username undefined if it's empty
const _username = ref<undefined | string>(undefined);
const username = computed({
get() {
return _username.value;
},
set(v) {
if (!v) return (_username.value = undefined);
_username.value = v;
},
});
const validUsername = computed(() =>
_username.value === undefined ? true : _username.value.length >= 5,
);
// Same as above
const _email = ref<undefined | string>(undefined);
const email = computed({
get() {
return _email.value;
},
set(v) {
if (!v) return (_email.value = undefined);
_email.value = v;
},
});
const mailRegex = /^\S+@\S+\.\S+$/;
const validEmail = computed(() =>
_email.value === undefined ? true : mailRegex.test(email.value as string),
);
const isAdmin = ref(false);
// Label to parameters to moment.js .add()
const expiry: Record<string, DurationLike> = {
[t("users.admin.simple.invite3Days")]: {
days: 3,
},
[t("users.admin.simple.inviteWeek")]: {
days: 7,
},
[t("users.admin.simple.inviteMonth")]: {
month: 1,
},
[t("users.admin.simple.invite6Months")]: {
months: 6,
},
[t("users.admin.simple.inviteYear")]: {
year: 1,
},
[t("users.admin.simple.inviteNever")]: {
year: 5000,
}, // Never is relative, right?
};
const expiryKey = ref<keyof typeof expiry>(Object.keys(expiry)[0]); // Cast to any because we just know it's okay
const loading = ref(false);
const error = ref<undefined | string>();
async function invite() {
const expiryDate = DateTime.now().plus(expiry[expiryKey.value]).toJSON();
const newInvitation = await $dropFetch("/api/v1/admin/auth/invitation", {
method: "POST",
body: {
username: username.value,
email: email.value,
isAdmin: isAdmin.value,
expires: expiryDate,
},
});
createModalOpen.value = false;
email.value = "";
username.value = "";
isAdmin.value = false;
expiryKey.value = Object.keys(expiry)[0]; // Same reason as above
return newInvitation;
}
function invite_wrapper() {
loading.value = true;
error.value = undefined;
invite()
.then((invitation) => {
invitations.value.push(invitation);
})
.catch((response) => {
const message = response.statusMessage || t("errors.unknown");
error.value = message;
})
.finally(() => {
loading.value = false;
});
}
async function deleteInvitation(id: string) {
await $dropFetch("/api/v1/admin/auth/invitation", {
method: "DELETE",
body: {
id: id,
},
});
const index = invitations.value.findIndex((e) => e.id === id);
invitations.value.splice(index, 1);
}
const createModalOpen = ref(false);
</script>