]> git.r.bdr.sh - rbdr/forum/blobdiff - app/stores/forums.js
Add skeleton for topic
[rbdr/forum] / app / stores / forums.js
similarity index 76%
rename from app/models/forums.js
rename to app/stores/forums.js
index 211181eccc4d7245cfc22057a1e8d1827a8400ea..adc8758d1fc9e20a1efda07f1058b1d4bc09c880 100644 (file)
@@ -5,67 +5,67 @@ const internals = {};
 internals.forums = [
   {
     id: 'life',
-    kanji: '命',
+    glyph: '☆',
     label: 'Life'
   },
   {
     id: 'the-world',
-    kanji: '世',
+    glyph: '◯',
     label: 'The World'
   },
   {
     id: 'online',
-    kanji: '直結',
+    glyph: '⏀',
     label: 'Online'
   },
   {
     id: 'experience',
-    kanji: '体験',
+    glyph: '♢',
     label: 'Experience'
   },
   {
     id: 'belief',
-    kanji: '信念',
+    glyph: '⏃',
     label: 'Belief'
   },
   {
     id: 'movement',
-    kanji: '動',
+    glyph: '▷',
     label: 'Movement'
   },
   {
     id: 'emotion',
-    kanji: '情',
+    glyph: '☽',
     label: 'Emotion'
   },
   {
     id: 'interaction',
-    kanji: '交流',
+    glyph: '〒',
     label: 'Interaction'
   },
   {
     id: 'structure',
-    kanji: '構造',
+    glyph: '▢',
     label: 'Structure'
   },
   {
     id: 'sound',
-    kanji: '音',
+    glyph: '〰',
     label: 'Sound'
   },
   {
     id: 'words',
-    kanji: '言葉',
+    glyph: '╳',
     label: 'Words'
   },
   {
     id: 'us',
-    kanji: '一同',
+    glyph: '╱',
     label: 'Us'
   },
   {
     id: 'everything',
-    kanji: '何事も',
+    glyph: '♡',
     label: 'Everything'
   }
 ];
@@ -78,7 +78,7 @@ export function addForum() {
   forums.update((forums) => ([...forums,
     {
       id,
-      kanji: 'の',
+      glyph: 'の',
       label: `Woah ${id}`
     }
   ]));