diff options
author | Santo Cariotti <santo@dcariotti.me> | 2022-09-25 16:16:31 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2022-09-25 16:16:31 +0200 |
commit | 179c470ff9c91f8206b9e0d53d5b6563656e28b1 (patch) | |
tree | 8a766eee58447ce13b5dc222460841e7e41fb459 /pages/settings.vue | |
parent | 6481d712dbe58b5996a33567fe314f8a513023fa (diff) |
Edit user
Diffstat (limited to 'pages/settings.vue')
-rw-r--r-- | pages/settings.vue | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/pages/settings.vue b/pages/settings.vue new file mode 100644 index 0000000..e9a02fb --- /dev/null +++ b/pages/settings.vue @@ -0,0 +1,90 @@ +<template lang="pug"> + .mx-auto.w-90p.py-6(class="sm:px-6 lg:px-8 md:max-w-7xl") + h1.text-3xl.font-bold Settings + p Change your informations + + form.mt-3(v-if="me") + .overflow-hidden.shadow(class="sm:rounded-md") + .space-y-6.bg-white.px-4.py-5(class="sm:p-6") + div + label.block.text-sm.font-medium.text-gray-700(for="name") Name + .mt-1 + input#name.mt-1.block.w-full.rounded-md.border-gray-300.border-1.px-2.py-1( + name="name" + class="focus:border-green-500 focus:ring-green-500 sm:text-sm" + placeholder="John Doe" + v-model="me.name" + ) + div + label.block.text-sm.font-medium.text-gray-700(for="username") Username + .mt-1 + input#email.mt-1.block.w-full.rounded-md.border-gray-300.border-1.px-2.py-1( + name="username" + class="focus:border-green-500 focus:ring-green-500 sm:text-sm" + placeholder="john" + v-model="me.username" + ) + div + label.block.text-sm.font-medium.text-gray-700(for="email") Email + .mt-1 + input#email.mt-1.block.w-full.rounded-md.border-gray-300.border-1.px-2.py-1( + type="email" + name="email" + class="focus:border-green-500 focus:ring-green-500 sm:text-sm" + placeholder="john@example.com" + v-model="me.email" + ) + .py-3.text-right(class="sm:px-6") + button.inline-flex.justify-center.rounded-md.border.border-transparent.bg-green-600.py-2.px-4.text-sm.font-medium.text-white.shadow-sm( + type="submit" + :class="{'hover:bg-green-700 focus:outline-none focus:ring-2 focus:ring-green-500 focus:ring-offset-2': true, 'opacity-25 cursor-default': isLoading}" + :disabled="isLoading" + :readonly="isLoading" + @click="save" + ) + <svg class="animate-spin -ml-1 mr-3 h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" v-if="isLoading"> + <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle> + <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path> + </svg> + | Save + +</template> + +<script> +import { mapGetters } from "vuex"; + +export default { + name: "SettingsView", + computed: { + ...mapGetters(["isLoading"]), + ...mapGetters("auth", ["isLogged", "me"]), + }, + data() { + return { + form: {}, + }; + }, + created() { + if (!this.isLogged) window.location.href = "/signin?ref=/settings"; + }, + methods: { + save(event) { + const f = this.me; + + if (f.username && f.email) { + this.$store.dispatch("users/editUser", f).then((response) => { + if (response.status == 200) { + this.$toast.success("User has been saved"); + setTimeout(() => { + window.location.href = "/settings"; + }, 1000); + } else { + this.$toast.error(response.data.error); + } + }); + } + event.preventDefault(); + }, + }, +}; +</script> |