diff --git a/more/app-more.js b/more/app-more.js index e5be1b6..8f2334f 100644 --- a/more/app-more.js +++ b/more/app-more.js @@ -11,126 +11,126 @@ // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html -// +// (function() { - var ROOT = Script.resolvePath('').split("app-more.js")[0]; - var APP_NAME = "MORE..."; - var APP_URL = ROOT + "more.html"; - var APP_ICON_INACTIVE = ROOT + "appicon_i.png"; - var APP_ICON_ACTIVE = ROOT + "appicon_a.png"; - var Appstatus = false; - var lastProcessing = { - "action": "", - "script": "" - }; - - var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"); - tablet.screenChanged.connect(onScreenChanged); - var button = tablet.addButton({ - text: APP_NAME, - icon: APP_ICON_INACTIVE, + var ROOT = Script.resolvePath('').split("app-more.js")[0]; + var APP_NAME = "MORE..."; + var APP_URL = ROOT + "more.html"; + var APP_ICON_INACTIVE = ROOT + "appicon_i.png"; + var APP_ICON_ACTIVE = ROOT + "appicon_a.png"; + var Appstatus = false; + var lastProcessing = { + "action": "", + "script": "" + }; + + var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"); + tablet.screenChanged.connect(onScreenChanged); + var button = tablet.addButton({ + text: APP_NAME, + icon: APP_ICON_INACTIVE, activeIcon: APP_ICON_ACTIVE - }); - - - function clicked() { - if (Appstatus == true) { - tablet.webEventReceived.disconnect(onMoreAppWebEventReceived); - tablet.gotoHomeScreen(); - Appstatus = false; - } else { - tablet.gotoWebScreen(APP_URL); - tablet.webEventReceived.connect(onMoreAppWebEventReceived); - Appstatus = true; - } - - button.editProperties({ - isActive: Appstatus - }); + }); + + + function clicked() { + if (Appstatus == true) { + tablet.webEventReceived.disconnect(onMoreAppWebEventReceived); + tablet.gotoHomeScreen(); + Appstatus = false; + } else { + tablet.gotoWebScreen(APP_URL); + tablet.webEventReceived.connect(onMoreAppWebEventReceived); + Appstatus = true; + } + + button.editProperties({ + isActive: Appstatus + }); - } - - button.clicked.connect(clicked); + } + + button.clicked.connect(clicked); - function sendRunningScriptList() { - var currentlyRunningScripts = ScriptDiscoveryService.getRunning(); - tablet.emitScriptEvent(JSON.stringify(currentlyRunningScripts)); - } + function sendRunningScriptList() { + var currentlyRunningScripts = ScriptDiscoveryService.getRunning(); + tablet.emitScriptEvent(JSON.stringify(currentlyRunningScripts)); + } - function onMoreAppWebEventReceived(eventz) { + function onMoreAppWebEventReceived(eventz) { - if (typeof eventz === "string") { - eventzget = JSON.parse(eventz); - - //print("EVENT ACTION: " + eventzget.action); - //print("EVENT SCRIPT: " + eventzget.script); - - if (eventzget.action === "installScript") { - - if (lastProcessing.action == eventzget.action && lastProcessing.script == eventzget.script) { - return; - } else { - ScriptDiscoveryService.loadOneScript(eventzget.script); - - lastProcessing.action = eventzget.action; - lastProcessing.script = eventzget.script; - - Script.setTimeout(function() { - sendRunningScriptList(); - }, 2000); - } - } + if (typeof eventz === "string") { + eventzget = JSON.parse(eventz); + + //print("EVENT ACTION: " + eventzget.action); + //print("EVENT SCRIPT: " + eventzget.script); + + if (eventzget.action === "installScript") { + + if (lastProcessing.action == eventzget.action && lastProcessing.script == eventzget.script) { + return; + } else { + ScriptDiscoveryService.loadOneScript(eventzget.script); + + lastProcessing.action = eventzget.action; + lastProcessing.script = eventzget.script; + + Script.setTimeout(function() { + sendRunningScriptList(); + }, 2000); + } + } - if (eventzget.action === "uninstallScript") { - - if (lastProcessing.action == eventzget.action && lastProcessing.script == eventzget.script) { - return; - } else { - ScriptDiscoveryService.stopScript(eventzget.script, false); - - lastProcessing.action = eventzget.action; - lastProcessing.script = eventzget.script; - - Script.setTimeout(function() { - sendRunningScriptList(); - }, 2000); - } - } + if (eventzget.action === "uninstallScript") { + + if (lastProcessing.action == eventzget.action && lastProcessing.script == eventzget.script) { + return; + } else { + ScriptDiscoveryService.stopScript(eventzget.script, false); + + lastProcessing.action = eventzget.action; + lastProcessing.script = eventzget.script; + + Script.setTimeout(function() { + sendRunningScriptList(); + }, 2000); + } + } - if (eventzget.action === "requestRunningScriptData") { - sendRunningScriptList(); - } + if (eventzget.action === "requestRunningScriptData") { + sendRunningScriptList(); + } - } - - } + } + + } - function onScreenChanged(type, url) { - if (type == "Web" && url.indexOf(APP_URL) != -1) { - //Active - //print("MORE... ACTIVE"); - Appstatus = true; - } else { - //Inactive - //print("MORE... INACTIVE"); - Appstatus = false; - } - - button.editProperties({ - isActive: Appstatus - }); - } - - - function cleanup() { - if (Appstatus) { - tablet.gotoHomeScreen(); - tablet.webEventReceived.disconnect(onMoreAppWebEventReceived); - } - tablet.screenChanged.disconnect(onScreenChanged); - tablet.removeButton(button); - } - - Script.scriptEnding.connect(cleanup); + function onScreenChanged(type, url) { + if (type == "Web" && url.indexOf(APP_URL) != -1) { + //Active + //print("MORE... ACTIVE"); + Appstatus = true; + } else { + //Inactive + //print("MORE... INACTIVE"); + Appstatus = false; + } + + button.editProperties({ + isActive: Appstatus + }); + } + + + function cleanup() { + if (Appstatus) { + tablet.gotoHomeScreen(); + tablet.webEventReceived.disconnect(onMoreAppWebEventReceived); + } + tablet.screenChanged.disconnect(onScreenChanged); + tablet.removeButton(button); + } + + Script.scriptEnding.connect(cleanup); }()); \ No newline at end of file diff --git a/more/more.html b/more/more.html index 321bcd0..30e0df2 100644 --- a/more/more.html +++ b/more/more.html @@ -9,217 +9,229 @@ --> - - - - + - -
-

Add more functionalities...

-

Want to add your own app? Read the guide!

- - - - - -
- - - - - -
- - - -
-
-
-
-

-
-
- - - + var counterDir = -1; + var counterDisp = 0; + var index = 0; + var lowItem = ""; + var needNext = false; + var pageContent = ""; + + for (index = 0; index < metadata.applications.length; index++){ + lowItem = metadata.applications[index].name.toLowerCase(); + if (lowItem.indexOf(search.toLowerCase()) != -1 && metadata.applications[index].isActive == true){ + counterDir = counterDir + 1; + if ((counterDir >= offset) && (counterDir < (offset + perpage))){ + DisplayApp(metadata.applications[index]); + counterDisp = counterDisp + 1; + } + if (counterDir >= (offset + perpage)){ + needNext = true; + break; + } + } + } + + //pager + + function pagetoPrevious(){ + offset = offset - perpage; + if (offset < 0){ + offset = 0; + } + location.href = "more.html?offset=" + offset + "&perpage=" + perpage + "&search=" + encodeURI(search); + } + + function pagetoNext(){ + offset = offset + perpage; + location.href = "more.html?offset=" + offset + "&perpage=" + perpage + "&search=" + encodeURI(search); + } + + var pagerPrevious = ""; + if (offset <= 0){ + pagerPrevious = ""; + } + + var pagerNext = ""; + if (needNext == false){ + pagerNext = ""; + } + + var countA = offset + 1; + + var countB = offset + counterDisp; + + var pagerHtml = pagerPrevious + "  " + countA + " - " + countB + "  " + pagerNext; + + if (counterDisp > 0 ){ + document.getElementById("pager_top").innerHTML = pagerHtml; + document.getElementById("data").innerHTML = pageContent; + document.getElementById("pager_footer").innerHTML = pagerHtml; + }else{ + document.getElementById("data").innerHTML = "




Sorry, no result found.






"; + } + + requestRunningScriptData(); + + \ No newline at end of file