summaryrefslogtreecommitdiff
path: root/components/VTable.vue
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2022-10-17 08:50:25 +0200
committerSanto Cariotti <santo@dcariotti.me>2022-10-17 08:50:25 +0200
commit7ab985549280ea7fa91cf5f73d2d31bcb3c07fb4 (patch)
tree2a27241b967ca67ad319be8201cf8d87787e8e27 /components/VTable.vue
parent8d1112146beff49d19eb025f4fa7c36353aa7872 (diff)
admin: edit user
Diffstat (limited to 'components/VTable.vue')
-rw-r--r--components/VTable.vue9
1 files changed, 6 insertions, 3 deletions
diff --git a/components/VTable.vue b/components/VTable.vue
index 225c3f9..ced1016 100644
--- a/components/VTable.vue
+++ b/components/VTable.vue
@@ -51,8 +51,8 @@
a(:href="path + field.id" target="_blank")
svg(xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6")
path(stroke-linecap="round" stroke-linejoin="round" d="M13.19 8.688a4.5 4.5 0 011.242 7.244l-4.5 4.5a4.5 4.5 0 01-6.364-6.364l1.757-1.757m13.35-.622l1.757-1.757a4.5 4.5 0 00-6.364-6.364l-4.5 4.5a4.5 4.5 0 001.242 7.244")
- .mr-1
- svg(xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6 cursor-pointer")
+ .mr-1(v-if="editrow")
+ svg(xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6 cursor-pointer" @click="handleEdit(field.id)")
path(stroke-linecap="round" stroke-linejoin="round" d="M16.862 4.487l1.687-1.688a1.875 1.875 0 112.652 2.652L6.832 19.82a4.5 4.5 0 01-1.897 1.13l-2.685.8.8-2.685a4.5 4.5 0 011.13-1.897L16.863 4.487zm0 0L19.5 7.125")
div(v-if="deleterow")
svg(xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6 text-red-500 cursor-pointer" @click="handleDelete(field.id)")
@@ -64,7 +64,7 @@
import UserAvatar from "@/components/UserAvatar.vue";
export default {
- props: ["keys", "fields", "path", "deleterow"],
+ props: ["keys", "fields", "path", "deleterow", "editrow"],
components: {
"user-avatar": UserAvatar,
},
@@ -78,6 +78,9 @@ export default {
handleDelete(id) {
this.deleterow(id);
},
+ handleEdit(id) {
+ this.editrow(id);
+ },
deleteAvatar(id) {
this.$store.dispatch("users/deleteAvatar", id).then((response) => {
if (response.status == 200) {