選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

25 行
727 B

  1. import { defineStore } from 'pinia'
  2. import { useLocalStorage } from '@vueuse/core'
  3. export const useCommentStore = defineStore('comment', {
  4. state: () => ({
  5. comment: useLocalStorage('comment', [])
  6. }),
  7. hydrate(state, initialState) { // as nuxt is in SSR localstorage is not available so we need to hydrate the app with data first
  8. state.comment = useLocalStorage('comment', [])
  9. },
  10. actions: {
  11. add(newComment) {
  12. this.comment.push(newComment)
  13. useLocalStorage('comment', this.comment)
  14. },
  15. },
  16. getters: {
  17. orderedComment: (state) => {
  18. return (filmId) => {
  19. return state.comment.filter(comment => comment.filmId === filmId).sort((a, b) => b.added - a.added)
  20. }
  21. }
  22. }
  23. })