mealie/frontend/components/Domain/Recipe/RecipeRating.vue

80 lines
1.4 KiB
Vue
Raw Normal View History

<template>
<div @click.prevent>
<v-rating
2021-08-02 03:24:47 +00:00
v-model="rating"
:readonly="!loggedIn"
color="secondary"
background-color="secondary lighten-3"
length="5"
:dense="small ? true : undefined"
:size="small ? 15 : undefined"
hover
:value="value"
@input="updateRating"
@click="updateRating"
></v-rating>
</div>
</template>
<script>
import { defineComponent } from "@nuxtjs/composition-api";
import { useUserApi } from "~/composables/api";
export default defineComponent({
props: {
emitOnly: {
2021-08-02 03:24:47 +00:00
type: Boolean,
default: false,
},
2021-08-02 03:24:47 +00:00
name: {
type: String,
default: "",
},
slug: {
type: String,
default: "",
},
value: {
type: Number,
default: 0,
},
small: {
2021-08-02 03:24:47 +00:00
type: Boolean,
default: false,
},
},
setup() {
const api = useUserApi();
return { api };
},
data() {
return {
rating: 0,
};
},
computed: {
loggedIn() {
return this.$auth.loggedIn;
},
},
2021-08-02 03:24:47 +00:00
mounted() {
this.rating = this.value;
},
methods: {
updateRating(val) {
if (this.emitOnly) {
this.$emit("input", val);
return;
}
this.api.recipes.patchOne(this.slug, {
name: this.name,
slug: this.slug,
rating: val,
});
},
},
});
</script>
<style lang="scss" scoped></style>