This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<h3>How did you like todays TLA?</h3>
|
<h3>Did you enjoy todays TLA?</h3>
|
||||||
<div>
|
<div>
|
||||||
<UButton @click="makeRequest(1)" class="rounded-l-full" :icon="current == 1 ? 'mdi:thumbs-up' : 'mdi:thumbs-up-outline'" size="md" color="neutral" variant="outline">{{ likes }}</UButton>
|
<UButton @click="makeRequest(1)" class="rounded-l-full" :icon="current == 1 ? 'mdi:thumbs-up' : 'mdi:thumbs-up-outline'" size="md" color="neutral" variant="outline">{{ likes }}</UButton>
|
||||||
<UButton @click="makeRequest(-1)" class="rounded-r-full" :icon="current == -1 ? 'mdi:thumbs-down' : 'mdi:thumbs-down-outline'" size="md" color="neutral" variant="outline">{{ dislikes }}</UButton>
|
<UButton @click="makeRequest(-1)" class="rounded-r-full" :icon="current == -1 ? 'mdi:thumbs-down' : 'mdi:thumbs-down-outline'" size="md" color="neutral" variant="outline">{{ dislikes }}</UButton>
|
||||||
@@ -26,6 +26,7 @@
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
makeRequest(type: number) {
|
makeRequest(type: number) {
|
||||||
|
if (type != 0){
|
||||||
if (this.current == type){
|
if (this.current == type){
|
||||||
this.current = 0;
|
this.current = 0;
|
||||||
if (type == 1) this.likes--;
|
if (type == 1) this.likes--;
|
||||||
@@ -44,6 +45,7 @@
|
|||||||
|
|
||||||
this.current = type;
|
this.current = type;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
axios
|
axios
|
||||||
.get("/api/review/en/"+type)
|
.get("/api/review/en/"+type)
|
||||||
|
|||||||
Reference in New Issue
Block a user