]> git.r.bdr.sh - rbdr/forum/blobdiff - app/stores/forums.js
Update to SvelteKit
[rbdr/forum] / app / stores / forums.js
diff --git a/app/stores/forums.js b/app/stores/forums.js
deleted file mode 100644 (file)
index 1928783..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-import { readable } from 'svelte/store';
-import { onMessage } from '../socket_coordinator';
-
-const internals = {};
-
-internals.forums = [
-  {
-    id: 'life',
-    glyph: '☆',
-    label: 'Life'
-  },
-  {
-    id: 'the-world',
-    glyph: '◯',
-    label: 'The World'
-  },
-  {
-    id: 'online',
-    glyph: '⏀',
-    label: 'Online'
-  },
-  {
-    id: 'experience',
-    glyph: '♢',
-    label: 'Experience'
-  },
-  {
-    id: 'belief',
-    glyph: '⏃',
-    label: 'Belief'
-  },
-  {
-    id: 'movement',
-    glyph: '▷',
-    label: 'Movement'
-  },
-  {
-    id: 'emotion',
-    glyph: '☽',
-    label: 'Emotion'
-  },
-  {
-    id: 'interaction',
-    glyph: '〒',
-    label: 'Interaction'
-  },
-  {
-    id: 'structure',
-    glyph: '▢',
-    label: 'Structure'
-  },
-  {
-    id: 'sound',
-    glyph: '〰',
-    label: 'Sound'
-  },
-  {
-    id: 'words',
-    glyph: '╳',
-    label: 'Words'
-  },
-  {
-    id: 'us',
-    glyph: '╱',
-    label: 'Us'
-  },
-  {
-    id: 'everything',
-    glyph: '♡',
-    label: 'Everything'
-  }
-];
-
-export const forums = readable(internals.forums, (set) => {
-
-  onMessage((message) => {
-
-    console.log(message, typeof message);
-  });
-});