mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
* 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>
130 lines
3.6 KiB
Vue
130 lines
3.6 KiB
Vue
<template>
|
|
<form class="space-y-6" @submit.prevent="signin_wrapper">
|
|
<div>
|
|
<label
|
|
for="username"
|
|
class="block text-sm font-medium leading-6 text-zinc-300"
|
|
>{{ $t("auth.username") }}</label
|
|
>
|
|
<div class="mt-2">
|
|
<input
|
|
id="username"
|
|
v-model="username"
|
|
name="username"
|
|
type="username"
|
|
autocomplete="username"
|
|
required
|
|
class="block w-full rounded-md border-0 py-1.5 px-3 shadow-sm bg-zinc-950/20 text-zinc-300 ring-1 ring-inset 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="password"
|
|
class="block text-sm font-medium leading-6 text-zinc-300"
|
|
>{{ $t("auth.password") }}</label
|
|
>
|
|
<div class="mt-2">
|
|
<input
|
|
id="password"
|
|
v-model="password"
|
|
name="password"
|
|
type="password"
|
|
autocomplete="current-password"
|
|
required
|
|
class="block w-full rounded-md border-0 py-1.5 px-3 shadow-sm bg-zinc-950/20 text-zinc-300 ring-1 ring-inset 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 class="flex items-center justify-between">
|
|
<div class="flex items-center">
|
|
<input
|
|
id="remember-me"
|
|
v-model="rememberMe"
|
|
name="remember-me"
|
|
type="checkbox"
|
|
class="h-4 w-4 rounded bg-zinc-800 border-zinc-700 text-blue-600 focus:ring-blue-600"
|
|
/>
|
|
<label
|
|
for="remember-me"
|
|
class="ml-3 block text-sm leading-6 text-zinc-400"
|
|
>{{ $t("auth.signin.rememberMe") }}</label
|
|
>
|
|
</div>
|
|
|
|
<div class="text-sm leading-6">
|
|
<NuxtLink
|
|
to="#"
|
|
class="font-semibold text-blue-600 hover:text-blue-500"
|
|
>{{ $t("auth.signin.forgot") }}</NuxtLink
|
|
>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<LoadingButton class="w-full" :loading="loading">{{
|
|
$t("auth.signin.signin")
|
|
}}</LoadingButton>
|
|
</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>
|
|
</form>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { XCircleIcon } from "@heroicons/vue/20/solid";
|
|
import type { UserModel } from "~/prisma/client/models";
|
|
|
|
const username = ref("");
|
|
const password = ref("");
|
|
const rememberMe = ref(false);
|
|
const loading = ref(false);
|
|
|
|
const error = ref<string | undefined>();
|
|
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
const { t } = useI18n();
|
|
|
|
function signin_wrapper() {
|
|
loading.value = true;
|
|
signin()
|
|
.then(() => {
|
|
router.push(route.query.redirect?.toString() ?? "/");
|
|
})
|
|
.catch((response) => {
|
|
const message = response.statusMessage || t("errors.unknown");
|
|
error.value = message;
|
|
})
|
|
.finally(() => {
|
|
loading.value = false;
|
|
});
|
|
}
|
|
|
|
async function signin() {
|
|
await $dropFetch("/api/v1/auth/signin/simple", {
|
|
method: "POST",
|
|
body: {
|
|
username: username.value,
|
|
password: password.value,
|
|
rememberMe: rememberMe.value,
|
|
},
|
|
});
|
|
const user = useUser();
|
|
user.value = await $dropFetch<UserModel | null>("/api/v1/user");
|
|
}
|
|
</script>
|