Post & Comment Editors

This commit is contained in:
2024-03-07 22:41:00 +08:00
parent f9438b4d89
commit 3300e46e88
16 changed files with 335 additions and 153 deletions

View File

@@ -12,9 +12,7 @@
<v-menu v-if="!props.readonly" location="bottom center">
<template v-slot:activator="{ props: binding }">
<v-chip v-bind="binding" :size="props.size" prepend-icon="mdi-emoticon-plus">
React
</v-chip>
<v-chip v-bind="binding" :size="props.size" prepend-icon="mdi-emoticon-plus"> React </v-chip>
</template>
<v-list density="compact" lines="one">
@@ -30,52 +28,53 @@
<v-snackbar v-model="status.added" :timeout="3000">Your react has been added into post.</v-snackbar>
<v-snackbar v-model="status.removed" :timeout="3000">Your react has been removed from post.</v-snackbar>
<!-- @vue-ignore -->
<v-snackbar v-model="error" :timeout="5000">Something went wrong... {{ error }}</v-snackbar>
</div>
</template>
<script setup lang="ts">
import { request } from "@/scripts/request";
import { getAtk } from "@/stores/userinfo";
import { reactive, ref } from "vue";
import { request } from "@/scripts/request"
import { getAtk } from "@/stores/userinfo"
import { reactive, ref } from "vue"
const emits = defineEmits(["update"]);
const emits = defineEmits(["update"])
const props = defineProps<{
size?: string,
readonly?: boolean,
model: any,
item: any,
size?: string
readonly?: boolean
model: any
item: any
reactions: { [id: string]: number }
}>();
}>()
const emojis: { [id: string]: { icon: string, attitude: number } } = {
const emojis: { [id: string]: { icon: string; attitude: number } } = {
thumb_up: { icon: "👍", attitude: 1 },
clap: { icon: "👏", attitude: 1 }
};
function pickColor(): string {
const colors = ["blue", "green", "purple"];
const randomIndex = Math.floor(Math.random() * colors.length);
return colors[randomIndex];
}
const status = reactive({ added: false, removed: false });
const error = ref<string | null>(null);
function pickColor(): string {
const colors = ["blue", "green", "purple"]
const randomIndex = Math.floor(Math.random() * colors.length)
return colors[randomIndex]
}
const status = reactive({ added: false, removed: false })
const error = ref<string | null>(null)
async function reactPost(symbol: string, attitude: number) {
const res = await request(`/api/p/${props.model}/${props.item?.id}/react`, {
method: "POST",
headers: { "Authorization": `Bearer ${getAtk()}`, "Content-Type": "application/json" },
headers: { Authorization: `Bearer ${getAtk()}`, "Content-Type": "application/json" },
body: JSON.stringify({ symbol, attitude })
});
})
if (res.status === 201) {
status.added = true;
emits("update", symbol, 1);
status.added = true
emits("update", symbol, 1)
} else if (res.status === 204) {
status.removed = true;
emits("update", symbol, -1);
status.removed = true
emits("update", symbol, -1)
} else {
error.value = await res.text();
error.value = await res.text()
}
}
</script>