You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

52 regels
1.4 KiB

  1. <template>
  2. <form @submit.prevent="sendComment()" class="flex flex-col bg-slate-200 my-12 p-4 w-full rounded-md">
  3. <input v-model="username" type="text" placeholder="username" min="3" max="50" required id="username">
  4. <textarea v-model="message" type="textarea" placeholder="message" min="3" max="500" required id="message" />
  5. <div class="scoreContainer">
  6. <label for="score">
  7. Note:
  8. </label>
  9. {{ score }}%
  10. <input type="range" name="score" min="0" max="100" step="1" id="score" class="w-full" v-model="score">
  11. </div>
  12. <button type="submit"
  13. class="bg-white rounded-md p-2 inline-flex items-center justify-center text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500">envoyer</button>
  14. </form>
  15. </template>
  16. <script setup lang="ts">
  17. const store = useCommentStore()
  18. const props = defineProps(['filmId'])
  19. const username = ref('')
  20. const message = ref('')
  21. const score = ref(50)
  22. const resetForm = () => {
  23. username.value = ''
  24. message.value = ''
  25. score.value = 5
  26. }
  27. const sendComment = () => {
  28. store.add({
  29. username: username.value,
  30. message: message.value,
  31. score: score.value,
  32. filmId: props.filmId,
  33. added: Date.now(),
  34. })
  35. resetForm()
  36. }
  37. </script>
  38. <style lang="scss" scoped>
  39. form {
  40. input,
  41. textarea,
  42. .scoreContainer {
  43. @apply p-4 m-2;
  44. }
  45. }
  46. </style>