Преглед на файлове

work on world list page

Nikolay Suslov преди 6 години
родител
ревизия
ac83186c2e
променени са 4 файла, в които са добавени 607 реда и са изтрити 385 реда
  1. 57 20
      public/app.js
  2. 44 0
      public/web/header.js
  3. 499 14
      public/web/index-app.js
  4. 7 351
      public/web/world-app.js

+ 57 - 20
public/app.js

@@ -3,6 +3,7 @@ import { Lang } from '/lib/polyglot/language.js';
 import { Helpers } from '/helpers.js';
 import { IndexApp } from '/web/index-app.js';
 import { WorldApp } from '/web/world-app.js';
+import { Header } from '/web/header.js';
 import { Widgets } from '/lib/widgets.js';
 
 
@@ -374,7 +375,17 @@ class App {
     window._app.hideProgressBar();
     window._app.hideUIControl();
 
-    document.querySelector('head').innerHTML += '<link rel="stylesheet" href="/web/index-app.css">';
+    let headerGUI = new Header();
+    headerGUI.init();
+
+    // if (!_app.indexApp) {
+    //   _app.indexApp = new IndexApp;
+    //   document.querySelector('head').innerHTML += '<link rel="stylesheet" href="/web/index-app.css">';
+    // }
+
+    // if (!document.querySelector('#app')) {
+    //   _app.indexApp.initApp();
+    // }
 
     let worldApp = new WorldApp(userAlias, worldName, saveName);
     worldApp.initWorldGUI();
@@ -665,11 +676,11 @@ class App {
                     $text: "Close",
                     onclick: function (e) {
                       console.log("close");
-                      history.back()
+                      window.history.back();
                       // if (type == "proto")
-                      //   window.location.pathname = "/" + user + '/worlds/protos'
+                      //   window.location.pathname = "/" + user + '/' + worldName + '/about'
                       // if (type == "state")
-                      //   window.location.pathname = "/" + user + '/worlds/states'
+                      //   window.location.pathname = "/" + user + '/' + worldName + '/about'
                     }
                   }
                 ]
@@ -696,19 +707,15 @@ class App {
     window._app.hideProgressBar();
     window._app.hideUIControl();
 
-    if (!_app.indexApp) {
-      _app.indexApp = new IndexApp;
-      document.querySelector('head').innerHTML += '<link rel="stylesheet" href="/web/index-app.css">';
-    }
-
-    if (!document.querySelector('#app')) {
-      await _app.indexApp.initApp();
-    }
-
+    let indexApp = new IndexApp;
+    indexApp.initApp();
+ 
     if (type == 'protos') {
-      await _app.indexApp.getWorldsProtosFromUserDB(user);
+      await indexApp.getWorldsProtosListForUser(user); 
     } else if (type == 'states') {
-      await _app.indexApp.getWorldsFromUserDB(user);
+      await indexApp.getWorldsStatesListForUser(user);
+
+      //await _app.indexApp.getWorldsFromUserDB(user);
     }
 
   }
@@ -720,12 +727,12 @@ class App {
     window._app.hideProgressBar();
     window._app.hideUIControl();
 
-    _app.indexApp = new IndexApp;
-    document.querySelector('head').innerHTML += '<link rel="stylesheet" href="/web/index-app.css">';
+    let indexApp = new IndexApp;
 
-    await _app.indexApp.generateFrontPage();
-    await _app.indexApp.initApp();
-    await _app.indexApp.getAppDetailsFromDB();
+    await indexApp.generateFrontPage();
+    indexApp.initApp();
+    await indexApp.getWorldsProtosListForUser('app'); 
+    //await _app.indexApp.getAppDetailsFromDB();
 
   }
 
@@ -1568,6 +1575,36 @@ class App {
     // console.log(data)
   }
 
+  async getAllStateWorldsInfoForUser (userAlias) {
+
+    let userPub = await _LCSDB.get('users').get(userAlias).get('pub').once().then();
+
+    var db = _LCSDB.user(userPub);
+
+    if (_LCSUSER.is) {
+      if (_LCSUSER.is.alias == userAlias)
+        db = _LCSUSER;
+    }
+
+    var states = {};
+
+    let worldDocs = await db.get('worlds').once().then();
+    if(worldDocs) {
+      let protos = Object.keys(worldDocs).filter(el => el !== '_');
+      
+      if (protos) {
+        for (const el of protos) {
+          let info = await this.getSaveStates(userAlias, el);
+         if (Object.keys(info).length !== 0)
+            states[el] = info;
+        }
+      }
+    }
+
+    return states
+
+  }
+
 
   async getAllProtoWorldsInfoForUser(userAlias) {
 

+ 44 - 0
public/web/header.js

@@ -0,0 +1,44 @@
+import page from '/lib/page.mjs';
+
+class Header {
+    constructor() {
+        console.log("app constructor");
+        this.language = _LangManager.language;
+
+    }
+
+    init(){
+
+
+        let el = document.createElement("div");
+        el.setAttribute("id", "header");
+        document.body.appendChild(el);
+
+        let headerGUI = {
+            
+                $type: "a",
+                class: "mdc-button mdc-button--compact mdc-card__action",
+                $text: "Back",
+                //href: "/" + desc[2] + '/worlds/' + desc[0] + '/edit', ///:user/worlds/:name/edit
+                onclick: function (e) {
+                    window.history.back();
+                }
+            
+        }
+
+
+        document.querySelector("#header").$cell({
+            id: 'header',
+            $cell: true,
+            $type: "div",
+            $components: [
+                headerGUI
+            ]
+        })
+
+    }
+
+
+}
+
+export { Header }

+ 499 - 14
public/web/index-app.js

@@ -3,6 +3,7 @@ import page from '/lib/page.mjs';
 class IndexApp {
     constructor() {
         console.log("app constructor");
+        document.querySelector('head').innerHTML += '<link rel="stylesheet" href="/web/index-app.css">';
 
         this.worlds = {};
         this.language = _LangManager.language;
@@ -21,7 +22,7 @@ class IndexApp {
         var socket = io.connect(window._app.reflectorHost, this.options);
 
         const parse = (msg) => {
-            this.parseAppInstancesData(msg)
+            this.parseOnlineData(msg)
         }
         socket.on('getWebAppUpdate', msg => parse.call(this, msg));
         socket.on("connect", function () {
@@ -79,22 +80,138 @@ class IndexApp {
 
     }
 
-    async initApp() {
+   initApp() {
 
-        let appEl = document.createElement("div");
-        appEl.setAttribute("id", "app");
+        let entry = document.createElement("div");
+        entry.setAttribute("id", 'app');
+        document.body.appendChild(entry);
 
-        let appElHTML = await _app.helpers.getHtmlText('/web/app.html');
-        appEl.innerHTML = appElHTML;
-        document.body.appendChild(appEl);
+        let divs = ['appGUI', 'userLobby', 'main'];
+        divs.forEach(el=>{
+            let appEl = document.createElement("div");
+            appEl.setAttribute("id", el);
+            entry.appendChild(appEl);
+        })
+        
+        let el = document.createElement("div");
+        el.setAttribute("id", "worldsGUI");
+        document.body.appendChild(el);
+
+        // let appElHTML = await _app.helpers.getHtmlText('/web/app.html');
+        // appEl.innerHTML = appElHTML;
+        // document.body.appendChild(appEl);
 
         this.initUser();
         this.initUserGUI();
-        this.initWorldsListGUI();
+        //this.initWorldsListGUI();
         //this.getAppDetailsFromDB();
 
     }
 
+    async getWorldsStatesListForUser (userAlias) {
+
+        let worldsGUI = [];
+
+        let data = await _app.getAllStateWorldsInfoForUser(userAlias);
+
+        Object.entries(data).forEach(el=>{
+
+            let worlds = this.createWorldsGUI(userAlias, el[0]);
+            worlds._states = el[1];
+            worlds.$update();
+            worldsGUI.push(worlds);
+
+        })
+
+       
+        document.querySelector("#worldsGUI").$cell({
+            id: 'worldsGUI',
+            $cell: true,
+            $type: "div",
+            $components: [
+                {
+                    $type: "div",
+                    class: "mdc-layout-grid",
+                    $components: [
+                        {
+                            $type: "div",
+                            class: "mdc-layout-grid__inner",
+                            $components: [
+                                {
+                                    $type: "div",
+                                    class: "mdc-layout-grid__cell mdc-layout-grid__cell--span-12",
+                                    $components: [
+                                        {
+                                            $type: "h1",
+                                            class: "mdc-typography--headline4",
+                                            $text: 'States for ' + userAlias
+                                        }
+                                    ]
+                                },
+                                {
+                                    $type: "div",
+                                    class: "mdc-layout-grid__cell mdc-layout-grid__cell--span-12",
+                                    $components: [].concat(worldsGUI)
+                                }
+                            ]
+                        }
+                    ]
+                }
+            ]
+        })
+
+    }
+
+
+    async getWorldsProtosListForUser (userAlias) {
+
+
+            let worldsGUI = [];
+
+            let data = await _app.getAllProtoWorldsInfoForUser(userAlias);
+
+            let worlds = this.createWorldsGUI(userAlias);
+            worlds._states = data;
+            worlds.$update();
+            worldsGUI.push(worlds);
+        
+            document.querySelector("#worldsGUI").$cell({
+                id: 'worldsGUI',
+                $cell: true,
+                $type: "div",
+                $components: [
+                    {
+                        $type: "div",
+                        class: "mdc-layout-grid",
+                        $components: [
+                            {
+                                $type: "div",
+                                class: "mdc-layout-grid__inner",
+                                $components: [
+                                    {
+                                        $type: "div",
+                                        class: "mdc-layout-grid__cell mdc-layout-grid__cell--span-12",
+                                        $components: [
+                                            {
+                                                $type: "h1",
+                                                class: "mdc-typography--headline4",
+                                                $text: 'Worlds for ' + userAlias
+                                            }
+                                        ]
+                                    },
+                                    {
+                                        $type: "div",
+                                        class: "mdc-layout-grid__cell mdc-layout-grid__cell--span-12",
+                                        $components: [].concat(worldsGUI)
+                                    },
+                                ]
+                            }
+                        ]
+                    }
+                ]
+            })
+
+    }
 
     initUser() {
 
@@ -107,8 +224,8 @@ class IndexApp {
                 userEl._status = 'Welcome ' + alias + '!';
                 //userEl.style.backgroundColor = '#e6e6e6';   
                 userEl.$update();
-                document.querySelector('#worldGUI').$update();
-                document.querySelector('#main').$update();
+                // document.querySelector('#worldGUI').$update();
+                // document.querySelector('#main').$update();
 
                 _LCSUSER.get('profile').once(function (data) { console.log(data) })
 
@@ -154,7 +271,8 @@ class IndexApp {
                             "label": 'Default World Protos',
                             "onclick": function (e) {
                                 e.preventDefault();
-                                _app.indexApp.getAppDetailsFromDefaultDB('protos');
+                                window.location.pathname = "/app/worlds/protos"
+                                //_app.indexApp.getAppDetailsFromDefaultDB('protos');
 
                             }
                         }),
@@ -163,7 +281,9 @@ class IndexApp {
                             "label": 'Default World States',
                             "onclick": function (e) {
                                 e.preventDefault();
-                                _app.indexApp.getAppDetailsFromDefaultDB('states');
+
+                                window.location.pathname = "/app/worlds/states"
+                                //_app.indexApp.getAppDetailsFromDefaultDB('states');
 
                             }
                         })
@@ -232,7 +352,8 @@ class IndexApp {
                                 "onclick": function (e) {
                                     e.preventDefault();
                                     let alias = _LCSUSER.is.alias;
-                                    page.redirect('/' + alias + '/worlds/protos');
+                                    window.location.pathname = '/' + alias + '/worlds/protos'
+                                    //page.redirect('/' + alias + '/worlds/protos');
                                     //_app.indexApp.getWorldsProtosFromUserDB(alias);
                                 }
                             }),
@@ -242,7 +363,8 @@ class IndexApp {
                                 "onclick": function (e) {
                                     e.preventDefault();
                                     let alias = _LCSUSER.is.alias;
-                                    page.redirect('/' + alias + '/worlds/states');
+                                    window.location.pathname = '/' + alias + '/worlds/states'
+                                   // page.redirect('/' + alias + '/worlds/states');
                                     //_app.indexApp.getWorldsFromUserDB(alias);       
                                 }
                             })
@@ -429,6 +551,7 @@ class IndexApp {
     initWorldsListGUI() {
 
         var self = this;
+
         let worldsListGUI = {
 
             $cell: true,
@@ -1063,6 +1186,368 @@ class IndexApp {
         // console.log(data)
     }
 
+    parseOnlineData(data) {
+
+        let parcedData = _app.parseAppInstancesData(data);
+
+        //if (Object.entries(parcedData).length !== 0)
+        let onlineGUIs = document.querySelectorAll('.online');
+
+        onlineGUIs.forEach(function (item) {
+            item._refresh(parcedData)
+        });
+
+    }
+
+    createWorldCard(id, type) {
+        let self = this;
+
+        let onlineGUI = {
+            $cell: true,
+            id: "onlineGUI_" + id,
+            class: "online",
+            $type: "div",
+            _instances: {},
+            _worldListItem: function (m) {
+                return {
+                    $type: "li",
+                    class: "mdc-list-item",
+                    $components: [
+                        {
+                            $type: "span",
+                            class: "world-link mdc-list-item__text",
+                            $components: [
+                                {
+                                    $type: "span",
+                                    class: "mdc-list-item__primary-text",
+                                    $components: [
+                                        {
+                                            $type: "a",
+                                            $text: m[0],
+                                            target: "_blank",
+                                            href: window.location.protocol + "//" + window.location.host + "/" + m[1].user + m[0],
+                                            onclick: function (e) {
+                                                //self.refresh();
+                                            }
+                                        },
+                                    ]
+                                },
+                                {
+                                    $type: "span",
+                                    class: "mdc-list-item__secondary-text",
+                                    $text: self.language.t('users') + m[1].clients
+                                }
+                            ]
+                        }
+                    ]
+                }
+            },
+            $components: [],
+            _refresh: function (data) {
+                if (data) {
+                    if (Object.entries(data).length !== 0) {
+                        if (this._worldInfo) {
+                            let insts = Object.entries(data).filter(el => el[0] == this._worldInfo.worldName);
+                            if (insts.length !== 0)
+                                this._instances = insts[0][1];
+                        }
+                    } else {
+                        this._instances = {}
+                    }
+
+                }
+
+            },
+            $init: function () {
+                this._refresh();
+            },
+            $update: function () {
+                if (this._instances) {
+                    let cardListData = Object.entries(this._instances).filter(el => el[1].user == this._worldInfo.userAlias);
+                    this.$components = [
+                        {
+                            $type: "hr",
+                            class: "mdc-list-divider"
+                        }
+                    ].concat(cardListData.map(this._worldListItem))
+                }
+
+            }
+        }
+
+
+        return {
+            $cell: true,
+            id: 'worldCard_' + id,
+            $type: "div",
+            _worldInfo: {},
+            _refresh: function (data) {
+                this._worldInfo = data
+            },
+            // _getWorldInfo: async function () {
+            //     //get space for user
+            //     let info = await _app.getWorldInfo(user, space);
+            //     this._refresh(info);
+            // },
+            // _getStateInfo: async function () {
+            //     //get space for user
+            //     let info = await _app.getStateInfo(user, space, saveName);
+            //     this._refresh(info);
+            // },
+            $init: function () {
+                //get space for user
+                // if (!saveName) {
+                //     this._getWorldInfo();
+                // } else {
+                //     this._getStateInfo();
+                // }
+            },
+            $update: function () {
+                //console.log(this._worldInfo);
+                this.$components = [this._updateCard()]
+            },
+            $components: [],
+            _updateCard: function () {
+
+                let desc = this._worldInfo;
+
+
+                if (!desc || Object.keys(desc).length == 0) {
+                    return {
+                        $type: "h1",
+                        class: "mdc-typography--headline4",
+                        $text: "ERROR: NO WORLD!"
+                    }
+                }
+
+
+                let userGUI = [];
+                let online = [];
+
+                let cardInfo = {
+                    "title": ""
+                };
+
+
+                if (type == "full") {
+
+                } else {
+                    userGUI.push({
+                        $type: "a",
+                        class: "mdc-button mdc-button--compact mdc-card__action mdc-button--outlined",
+                        $text: "Details",
+                        onclick: function (e) {
+                            e.preventDefault();
+                            window.location.pathname = "/" + desc.userAlias + '/' + desc.worldName + '/about'
+                        }
+                    });
+                }
+
+                userGUI.push({
+                    $type: "a",
+                    class: "mdc-button mdc-button--compact mdc-card__action mdc-button--outlined",
+                    $text: self.language.t('start'),//"Start new",
+                    target: "_blank",
+                    href: "/" + desc.userAlias + '/' + desc.worldName,
+                    onclick: function (e) {
+                        //self.refresh();
+                    }
+                });
+
+
+                if (desc.type == 'saveState') {
+                    cardInfo.title = desc.worldName.split('/')[2];
+                }
+
+                if (desc.type == 'proto') {
+                    cardInfo.title = desc.worldName;
+
+                    // userGUI.push(
+
+                    //     {
+                    //         $type: "a",
+                    //         class: "mdc-button mdc-button--compact mdc-card__action",
+                    //         $text: "States",
+                    //         onclick: async function (e) {
+
+                    //             e.preventDefault();
+                    //             window.location.pathname = "/" + desc.userAlias + '/' + desc.worldName +'/about'
+                    //             //console.log('clone');
+
+                    //             // document.querySelector('#worldStatesGUI')._refresh({});
+                    //             // let data = await _app.getSaveStates(desc.userAlias, desc.worldName);
+                    //             // document.querySelector('#worldStatesGUI')._refresh(data);
+ 
+                    //         }
+                    //     }
+                    // )
+                }
+
+
+
+                online.push(onlineGUI);
+
+                return {
+                    $cell: true,
+                    $type: "div",
+                    class: "mdc-card world-card",
+                    $components: [
+                        {
+                            $type: "section",
+                            class: "mdc-card__media world-card__16-9-media",
+                            $init: function () {
+                                if (desc.info.imgUrl !== "") {
+                                    this.style.backgroundImage = 'linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url(' + desc.info.imgUrl + ')';
+                                }
+                            }
+                        },
+                        {
+                            $type: "section",
+                            class: "mdc-card__primary",
+                            $components: [
+                                {
+                                    $type: "h1",
+                                    class: "mdc-card__title mdc-card__title--large",
+                                    $text: desc.info.title
+                                },
+                                {
+                                    $type: "h2",
+                                    class: "mdc-card__subtitle mdc-theme--text-secondary-on-background",
+                                    $text: desc.info.text
+                                },
+                                {
+                                    $type: "span",
+                                    class: "mdc-card__subtitle mdc-theme--text-secondary-on-background",
+                                    $text: 'id: '
+                                },
+                                {
+                                    $type: "input",
+                                    type: "text",
+                                    disabled: "",
+                                    style: "font-size:18px",
+                                    value: cardInfo.title
+                                },
+                                {
+                                    $type: "p",
+                                },
+                                {
+                                    $type: "span",
+                                    class: "mdc-card__subtitle mdc-theme--text-secondary-on-background",
+                                    $text: 'created: ' + (new Date(desc.created)).toUTCString()
+                                },
+                                {
+                                    $type: "p",
+                                }
+                                // ,{
+                                //     $type: "span",
+                                //     class: "mdc-card__subtitle mdc-theme--text-secondary-on-background",
+                                //     $text: 'modified: ' + (new Date(desc[5])).toUTCString()
+                                // }
+                            ]
+                        },
+                        {
+                            $type: "section",
+                            class: "mdc-card__actions",
+                            $components: [
+
+                            ].concat(userGUI)
+                        },
+
+                        {
+                            $type: "section",
+                            class: "mdc-card__actions",
+                            $components: [
+                                {
+                                    $type: 'div',
+                                    $text: 'online now: '
+                                }
+                            ].concat(online)
+                        }
+                    ]
+                }
+            }
+        }
+
+    }
+
+    createWorldsGUI(userAlias, worldName) {
+        let self = this;
+        let id = worldName?worldName + '_' + userAlias: "allWorlds_" + userAlias
+        let headerText = worldName?'States for ' + worldName: 'All Worlds Protos'
+
+        let worldCards = {
+            $cell: true,
+            id: id,
+            $type: "div",
+            $components: [],
+            _states: {},
+            _refresh: function (data) {
+                this._states = data
+            },
+            $init: async function () {
+                //this._refresh();
+            },
+            _makeWorldCard: function (data) {
+                let cardID = data[1].userAlias + '_' + data[1].worldName + '_' + data[0];
+                let card = self.createWorldCard(cardID, 'min');
+                card._worldInfo = data[1];
+                card.$update();
+                return {
+                    $cell: true,
+                    $type: "div",
+                    class: "mdc-layout-grid__cell mdc-layout-grid__cell--span-4",
+                    $components: [
+                        card
+                        //self.createWorldCard(data[1].userAlias, data[1].worldName, data[0])
+                        //this._worldCardDef(appInfo)
+                    ]
+                }
+                //console.log(data);
+            },
+            $update: function () {
+                this.$components = [
+                    {
+                        $type: "div",
+                        class: "mdc-layout-grid",
+                        $components: [
+                            {
+                                $type: "div",
+                                class: "mdc-layout-grid__inner",
+                                $components: [
+                                    {
+                                        $type: "div",
+                                        class: "mdc-layout-grid__cell mdc-layout-grid__cell--span-12",
+                                        $components: [
+                                            {
+                                                $type: "H3",
+                                                $text: headerText
+                                            }
+                                        ]
+                                    }
+                                ]
+                            },
+                            {
+                                $type: "div",
+                                class: "mdc-layout-grid__inner",
+                                $components: Object.entries(this._states)
+                                .filter(el =>Object.keys(el[1]).length !== 0)
+                                .sort(function (el1, el2) {
+                                    return parseInt(el2[1].created) - parseInt(el1[1].created)
+                                })
+                                .map(this._makeWorldCard)
+                            }
+                        ]
+
+                    }
+
+
+                ]
+            }
+        }
+
+        return worldCards
+    }
+
 
 }
 export { IndexApp }

+ 7 - 351
public/web/world-app.js

@@ -1,4 +1,5 @@
 import page from '/lib/page.mjs';
+import { IndexApp } from '/web/index-app.js';
 
 class WorldApp {
     constructor(userAlias, worldName, saveName) {
@@ -11,52 +12,9 @@ class WorldApp {
         //this.worlds = {};
         this.language = _LangManager.language;
 
-        this.options = {
-
-            query: 'pathname=' + window.location.pathname.slice(1,
-                window.location.pathname.lastIndexOf("/")),
-            secure: window.location.protocol === "https:",
-            reconnection: false,
-            path: '',
-            transports: ['websocket']
-        }
-
-        //window.location.host
-        var socket = io.connect(window._app.reflectorHost, this.options);
-
-        const parse = (msg) => {
-            this.parseAppInstancesData(msg);
-        }
-
-        socket.on('getWebAppUpdate', msg => parse.call(this, msg));
-        socket.on("connect", function () {
-
-            let noty = new Noty({
-                text: 'Connected to Reflector!',
-                timeout: 2000,
-                theme: 'mint',
-                layout: 'bottomRight',
-                type: 'success'
-            });
-            noty.show();
-        })
-
-        socket.on('connect_error', function (err) {
-            console.log(err);
-            var errDiv = document.createElement("div");
-            errDiv.innerHTML = "<div class='vwf-err' style='z-index: 10; position: absolute; top: 80px; right: 50px'>Connection error to Reflector!" + err + "</div>";
-            document.querySelector('body').appendChild(errDiv);
-
-            let noty = new Noty({
-                text: 'Connection error to Reflector! ' + err,
-                theme: 'mint',
-                layout: 'bottomRight',
-                type: 'error'
-            });
-            noty.show();
-
-        });
-
+        this.indexApp = new IndexApp;
+        this.indexApp.initApp();
+          
     }
 
 
@@ -77,7 +35,7 @@ class WorldApp {
             },
             _makeWorldCard: function (data) {
                 let cardID = data[1].userAlias + '_' + data[1].worldName + '_' + data[0];
-                let card = self.createWorldCard(cardID, 'min');
+                let card = self.indexApp.createWorldCard(cardID, 'min');
                 card._worldInfo = data[1];
                 card.$update();
                 return {
@@ -126,7 +84,7 @@ class WorldApp {
                             }
                         ]
 
-                    },
+                    }
 
 
                 ]
@@ -136,274 +94,6 @@ class WorldApp {
         return worldStatesGUI
     }
 
-    createWorldCard(id, type) {
-        let self = this;
-
-        let onlineGUI = {
-            $cell: true,
-            id: "onlineGUI_" + id,
-            class: "online",
-            $type: "div",
-            _instances: {},
-            _worldListItem: function (m) {
-                return {
-                    $type: "li",
-                    class: "mdc-list-item",
-                    $components: [
-                        {
-                            $type: "span",
-                            class: "world-link mdc-list-item__text",
-                            $components: [
-                                {
-                                    $type: "span",
-                                    class: "mdc-list-item__primary-text",
-                                    $components: [
-                                        {
-                                            $type: "a",
-                                            $text: m[0],
-                                            target: "_blank",
-                                            href: window.location.protocol + "//" + window.location.host + "/" + m[1].user + m[0],
-                                            onclick: function (e) {
-                                                //self.refresh();
-                                            }
-                                        },
-                                    ]
-                                },
-                                {
-                                    $type: "span",
-                                    class: "mdc-list-item__secondary-text",
-                                    $text: self.language.t('users') + m[1].clients
-                                }
-                            ]
-                        }
-                    ]
-                }
-            },
-            $components: [],
-            _refresh: function (data) {
-                if (data) {
-                    if (Object.entries(data).length !== 0) {
-                        if (this._worldInfo) {
-                            let insts = Object.entries(data).filter(el => el[0] == this._worldInfo.worldName);
-                            if (insts.length !== 0)
-                                this._instances = insts[0][1];
-                        }
-                    } else {
-                        this._instances = {}
-                    }
-
-                }
-
-            },
-            $init: function () {
-                this._refresh();
-            },
-            $update: function () {
-                if (this._instances) {
-                    let cardListData = Object.entries(this._instances).filter(el => el[1].user == this._worldInfo.userAlias);
-                    this.$components = [
-                        {
-                            $type: "hr",
-                            class: "mdc-list-divider"
-                        }
-                    ].concat(cardListData.map(this._worldListItem))
-                }
-
-            }
-        }
-
-
-        return {
-            $cell: true,
-            id: 'worldCard_' + id,
-            $type: "div",
-            _worldInfo: {},
-            _refresh: function (data) {
-                this._worldInfo = data
-            },
-            // _getWorldInfo: async function () {
-            //     //get space for user
-            //     let info = await _app.getWorldInfo(user, space);
-            //     this._refresh(info);
-            // },
-            // _getStateInfo: async function () {
-            //     //get space for user
-            //     let info = await _app.getStateInfo(user, space, saveName);
-            //     this._refresh(info);
-            // },
-            $init: function () {
-                //get space for user
-                // if (!saveName) {
-                //     this._getWorldInfo();
-                // } else {
-                //     this._getStateInfo();
-                // }
-            },
-            $update: function () {
-                console.log(this._worldInfo);
-                this.$components = [this._updateCard()]
-            },
-            $components: [],
-            _updateCard: function () {
-
-                let desc = this._worldInfo;
-
-
-                if (!desc || Object.keys(desc).length == 0) {
-                    return {
-                        $type: "h1",
-                        class: "mdc-typography--headline4",
-                        $text: "ERROR: NO WORLD!"
-                    }
-                }
-
-
-                let userGUI = [];
-                let online = [];
-
-                let cardInfo = {
-                    "title": ""
-                };
-
-
-                if (type == "full") {
-
-                } else {
-                    userGUI.push({
-                        $type: "a",
-                        class: "mdc-button mdc-button--compact mdc-card__action mdc-button--outlined",
-                        $text: "Details",
-                        onclick: function (e) {
-                            e.preventDefault();
-                            window.location.pathname = "/" + desc.userAlias + '/' + desc.worldName + '/about'
-                        }
-                    });
-                }
-
-                userGUI.push({
-                    $type: "a",
-                    class: "mdc-button mdc-button--compact mdc-card__action mdc-button--outlined",
-                    $text: self.language.t('start'),//"Start new",
-                    target: "_blank",
-                    href: "/" + desc.userAlias + '/' + desc.worldName,
-                    onclick: function (e) {
-                        //self.refresh();
-                    }
-                });
-
-
-                if (desc.type == 'saveState') {
-                    cardInfo.title = desc.worldName.split('/')[2];
-                }
-
-                if (desc.type == 'proto') {
-                    cardInfo.title = desc.worldName;
-
-                    userGUI.push(
-
-                        {
-                            $type: "a",
-                            class: "mdc-button mdc-button--compact mdc-card__action",
-                            $text: "States",
-                            onclick: async function (e) {
-                                //console.log('clone');
-                                document.querySelector('#worldStatesGUI')._refresh({});
-                                let data = await _app.getSaveStates(desc.userAlias, desc.worldName);
-                                document.querySelector('#worldStatesGUI')._refresh(data);
-                                //self.showOnlySaveStates(desc.worldName, desc.userAlias);
-                                //self.refresh();
-                            }
-                        }
-                    )
-                }
-
-
-
-                online.push(onlineGUI);
-
-                return {
-                    $cell: true,
-                    $type: "div",
-                    class: "mdc-card world-card",
-                    $components: [
-                        {
-                            $type: "section",
-                            class: "mdc-card__media world-card__16-9-media",
-                            $init: function () {
-                                if (desc.info.imgUrl !== "") {
-                                    this.style.backgroundImage = 'linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url(' + desc.info.imgUrl + ')';
-                                }
-                            }
-                        },
-                        {
-                            $type: "section",
-                            class: "mdc-card__primary",
-                            $components: [
-                                {
-                                    $type: "h1",
-                                    class: "mdc-card__title mdc-card__title--large",
-                                    $text: desc.info.title
-                                },
-                                {
-                                    $type: "h2",
-                                    class: "mdc-card__subtitle mdc-theme--text-secondary-on-background",
-                                    $text: desc.info.text
-                                },
-                                {
-                                    $type: "span",
-                                    class: "mdc-card__subtitle mdc-theme--text-secondary-on-background",
-                                    $text: 'id: '
-                                },
-                                {
-                                    $type: "input",
-                                    type: "text",
-                                    disabled: "",
-                                    style: "font-size:18px",
-                                    value: cardInfo.title
-                                },
-                                {
-                                    $type: "p",
-                                },
-                                {
-                                    $type: "span",
-                                    class: "mdc-card__subtitle mdc-theme--text-secondary-on-background",
-                                    $text: 'created: ' + (new Date(desc.created)).toUTCString()
-                                },
-                                {
-                                    $type: "p",
-                                }
-                                // ,{
-                                //     $type: "span",
-                                //     class: "mdc-card__subtitle mdc-theme--text-secondary-on-background",
-                                //     $text: 'modified: ' + (new Date(desc[5])).toUTCString()
-                                // }
-                            ]
-                        },
-                        {
-                            $type: "section",
-                            class: "mdc-card__actions",
-                            $components: [
-
-                            ].concat(userGUI)
-                        },
-
-                        {
-                            $type: "section",
-                            class: "mdc-card__actions",
-                            $components: [
-                                {
-                                    $type: 'div',
-                                    $text: 'online now: '
-                                }
-                            ].concat(online)
-                        }
-                    ]
-                }
-            }
-        }
-
-    }
-
     async initWorldGUI() {
 
         let self = this;
@@ -416,7 +106,7 @@ class WorldApp {
         document.body.appendChild(el);
 
         let cardID = user + '_' + space + '_' + (saveName ? saveName : "");
-        let worldCardGUI = this.createWorldCard(cardID, 'full');
+        let worldCardGUI = this.indexApp.createWorldCard(cardID, 'full');
         let worldStatesGUI = [];
 
         var info = {};
@@ -645,40 +335,6 @@ class WorldApp {
 
     }
 
-    parseAppInstancesData(data) {
-
-        let parcedData = _app.parseAppInstancesData(data);
-
-        //if (Object.entries(parcedData).length !== 0)
-        let onlineGUIs = document.querySelectorAll('.online');
-
-        onlineGUIs.forEach(function (item) {
-            item._refresh(parcedData)
-        });
-
-        // if (onlineGUI)
-        //     document.querySelector("#onlineGUI")._refresh(parcedData)
-
-
-
-        // if (Object.entries(this.worlds).length !== 0) {
-        //     document.querySelector("#main")._emptyLists();
-        // }
-
-        // if (parcedData == "{}") {
-        //     var el = document.querySelector(".instance");
-        //     if (el) {
-        //         var topEl = el.parentNode;
-        //         topEl.removeChild(el);
-        //     }
-        //     // let removeElements = elms => Array.from(elms).forEach(el => el.remove()); 
-        // }
-
-        // console.log(parcedData)
-
-    }
-
-
 }
 
 export { WorldApp }