mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 07:53:08 +02:00
Update code formatting and add search optimization features.
Co-Authored-By: Keb Helion <60008426+KebHelion@users.noreply.github.com>
This commit is contained in:
parent
f70a9ec4c0
commit
6420752db1
3 changed files with 138 additions and 146 deletions
|
@ -18,7 +18,7 @@
|
||||||
var APP_URL = ROOT + "more.html";
|
var APP_URL = ROOT + "more.html";
|
||||||
var APP_ICON_INACTIVE = ROOT + "appicon_i.png";
|
var APP_ICON_INACTIVE = ROOT + "appicon_i.png";
|
||||||
var APP_ICON_ACTIVE = ROOT + "appicon_a.png";
|
var APP_ICON_ACTIVE = ROOT + "appicon_a.png";
|
||||||
var Appstatus = false;
|
var appStatus = false;
|
||||||
var lastProcessing = {
|
var lastProcessing = {
|
||||||
"action": "",
|
"action": "",
|
||||||
"script": ""
|
"script": ""
|
||||||
|
@ -30,24 +30,21 @@
|
||||||
text: APP_NAME,
|
text: APP_NAME,
|
||||||
icon: APP_ICON_INACTIVE,
|
icon: APP_ICON_INACTIVE,
|
||||||
activeIcon: APP_ICON_ACTIVE
|
activeIcon: APP_ICON_ACTIVE
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
function clicked() {
|
function clicked() {
|
||||||
if (Appstatus) {
|
if (appStatus) {
|
||||||
tablet.webEventReceived.disconnect(onMoreAppWebEventReceived);
|
tablet.webEventReceived.disconnect(onMoreAppWebEventReceived);
|
||||||
tablet.gotoHomeScreen();
|
tablet.gotoHomeScreen();
|
||||||
Appstatus = false;
|
appStatus = false;
|
||||||
} else {
|
} else {
|
||||||
tablet.gotoWebScreen(APP_URL);
|
tablet.gotoWebScreen(APP_URL);
|
||||||
tablet.webEventReceived.connect(onMoreAppWebEventReceived);
|
tablet.webEventReceived.connect(onMoreAppWebEventReceived);
|
||||||
Appstatus = true;
|
appStatus = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
button.editProperties({
|
button.editProperties({
|
||||||
isActive: Appstatus
|
isActive: appStatus
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
button.clicked.connect(clicked);
|
button.clicked.connect(clicked);
|
||||||
|
@ -59,87 +56,63 @@
|
||||||
for (var j = 0; j < currentlyRunningScripts.length; j++) {
|
for (var j = 0; j < currentlyRunningScripts.length; j++) {
|
||||||
runningScriptJson = currentlyRunningScripts[j].url;
|
runningScriptJson = currentlyRunningScripts[j].url;
|
||||||
if (runningScriptJson.indexOf("https://kasenvr.github.io/community-apps/applications") !== -1) {
|
if (runningScriptJson.indexOf("https://kasenvr.github.io/community-apps/applications") !== -1) {
|
||||||
newMessage = newMessage + "_" + runningScriptJson;
|
newMessage += "_" + runningScriptJson;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tablet.emitScriptEvent(newMessage);
|
tablet.emitScriptEvent(newMessage);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onMoreAppWebEventReceived(eventz) {
|
function onMoreAppWebEventReceived(message) {
|
||||||
|
if (typeof message === "string") {
|
||||||
if (typeof eventz === "string") {
|
var instruction = JSON.parse(message);
|
||||||
var eventzget = JSON.parse(eventz);
|
|
||||||
|
if (instruction.action === "installScript") {
|
||||||
//print("EVENT ACTION: " + eventzget.action);
|
if (lastProcessing.action !== instruction.action || lastProcessing.script !== instruction.script) {
|
||||||
//print("EVENT SCRIPT: " + eventzget.script);
|
ScriptDiscoveryService.loadOneScript(instruction.script);
|
||||||
|
lastProcessing.action = instruction.action;
|
||||||
if (eventzget.action === "installScript") {
|
lastProcessing.script = instruction.script;
|
||||||
|
|
||||||
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() {
|
Script.setTimeout(function() {
|
||||||
sendRunningScriptList();
|
sendRunningScriptList();
|
||||||
}, 1500);
|
}, 1500);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (eventzget.action === "uninstallScript") {
|
if (instruction.action === "uninstallScript") {
|
||||||
|
if (lastProcessing.action !== instruction.action || lastProcessing.script !== instruction.script) {
|
||||||
if (lastProcessing.action === eventzget.action && lastProcessing.script === eventzget.script) {
|
ScriptDiscoveryService.stopScript(instruction.script, false);
|
||||||
return;
|
lastProcessing.action = instruction.action;
|
||||||
} else {
|
lastProcessing.script = instruction.script;
|
||||||
ScriptDiscoveryService.stopScript(eventzget.script, false);
|
|
||||||
|
|
||||||
lastProcessing.action = eventzget.action;
|
|
||||||
lastProcessing.script = eventzget.script;
|
|
||||||
|
|
||||||
Script.setTimeout(function() {
|
Script.setTimeout(function() {
|
||||||
sendRunningScriptList();
|
sendRunningScriptList();
|
||||||
}, 1500);
|
}, 1500);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (eventzget.action === "requestRunningScriptData") {
|
if (instruction.action === "requestRunningScriptData") {
|
||||||
sendRunningScriptList();
|
sendRunningScriptList();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function onScreenChanged(type, url) {
|
function onScreenChanged(type, url) {
|
||||||
if (type === "Web" && url.indexOf(APP_URL) !== -1) {
|
if (type === "Web" && url.indexOf(APP_URL) !== -1) {
|
||||||
//Active
|
appStatus = true;
|
||||||
//print("MORE... ACTIVE");
|
|
||||||
Appstatus = true;
|
|
||||||
} else {
|
} else {
|
||||||
//Inactive
|
appStatus = false;
|
||||||
//print("MORE... INACTIVE");
|
}
|
||||||
Appstatus = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.editProperties({
|
button.editProperties({
|
||||||
isActive: Appstatus
|
isActive: appStatus
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function cleanup() {
|
function cleanup() {
|
||||||
if (Appstatus) {
|
if (appStatus) {
|
||||||
tablet.gotoHomeScreen();
|
tablet.gotoHomeScreen();
|
||||||
tablet.webEventReceived.disconnect(onMoreAppWebEventReceived);
|
tablet.webEventReceived.disconnect(onMoreAppWebEventReceived);
|
||||||
}
|
}
|
||||||
tablet.screenChanged.disconnect(onScreenChanged);
|
tablet.screenChanged.disconnect(onScreenChanged);
|
||||||
tablet.removeButton(button);
|
tablet.removeButton(button);
|
||||||
}
|
}
|
||||||
|
|
||||||
Script.scriptEnding.connect(cleanup);
|
Script.scriptEnding.connect(cleanup);
|
||||||
}());
|
}());
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
Created by Kalila L. on 23 Feb 2020.
|
Created by Kalila L. on 23 Feb 2020.
|
||||||
Copyright 2020 Project Athena and contributors.
|
Copyright 2020 Project Athena and contributors.
|
||||||
|
|
||||||
Distributed under the Apache License, Version 2.0.
|
Distributed under the Apache License, Version 2.0.
|
||||||
See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
*/
|
*/
|
||||||
|
@ -20,7 +20,7 @@ body {
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
font.mainTitle {
|
||||||
font-family: 'Quicksand', sans-serif;
|
font-family: 'Quicksand', sans-serif;
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
@ -33,7 +33,9 @@ h1 {
|
||||||
}
|
}
|
||||||
|
|
||||||
p.mainDesc {
|
p.mainDesc {
|
||||||
font-size: 16px;
|
font-family: 'Merriweather', sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
p a {
|
p a {
|
||||||
|
@ -181,4 +183,4 @@ input.searchtextbox{
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
outline-color: #ffffff;
|
outline-color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
<!--
|
<!--
|
||||||
// more.html
|
// more.html
|
||||||
//
|
//
|
||||||
|
@ -11,26 +12,25 @@
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
-->
|
-->
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<script id="metadataScriptTag" type="text/javascript" src="https://kasenvr.github.io/community-apps/applications/metadata.js"></script>
|
<script id="metadataScriptTag" type="text/javascript" src="https://kasenvr.github.io/community-apps/applications/metadata.js"></script>
|
||||||
<script>
|
<script>
|
||||||
//Defaults
|
//Defaults
|
||||||
DEFAULT_PER_PAGE = 3;
|
var DEFAULT_PER_PAGE = 3;
|
||||||
DEFAULT_OFFSET = 0;
|
var DEFAULT_OFFSET = 0;
|
||||||
|
|
||||||
//Paths
|
//Paths
|
||||||
var currentPath = window.location.protocol + "//" + window.location.host + window.location.pathname;
|
var currentPath = window.location.protocol + "//" + window.location.host + window.location.pathname;
|
||||||
var rootPath;
|
var rootPath;
|
||||||
var metadataScript = document.getElementById("metadataScriptTag");
|
var metadataScript = document.getElementById("metadataScriptTag");
|
||||||
|
|
||||||
if (currentPath.includes("kasenvr.github.io") || !currentPath.includes("file:/")) { // Loading app from repo or filesystem.
|
if (currentPath.includes("kasenvr.github.io") || !currentPath.includes("file:/")) { // Loading app from repo or filesystem.
|
||||||
rootPath = currentPath.replace("more/more.html", "applications/");
|
rootPath = currentPath.replace("more/more.html", "applications/");
|
||||||
if (metadataScript.src !== "../applications/metadata.js") {
|
if (metadataScript.src !== "../applications/metadata.js") {
|
||||||
metadataScript.src = "../applications/metadata.js";
|
metadataScript.src = "../applications/metadata.js";
|
||||||
console.info("Loading apps and metadata locally.");
|
console.info("Loading apps and metadata locally.");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
rootPath = "https://kasenvr.github.io/community-apps/applications/";
|
rootPath = "https://kasenvr.github.io/community-apps/applications/";
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
document.getElementsByTagName("head")[0].appendChild(metadataScript);
|
document.getElementsByTagName("head")[0].appendChild(metadataScript);
|
||||||
|
|
||||||
//Parameters
|
//Parameters
|
||||||
function findGetParameter(parameterName) {
|
function findGetParameter(parameterName) {
|
||||||
var result = null,
|
var result = null,
|
||||||
|
@ -69,15 +69,20 @@
|
||||||
var search = findGetParameter("search");
|
var search = findGetParameter("search");
|
||||||
if (search === null) {
|
if (search === null) {
|
||||||
search = "";
|
search = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
//Search
|
//Search
|
||||||
function doSearch(keyword) {
|
function doSearch(keyword) {
|
||||||
location.href = "more.html?offset=0&search=" + encodeURI(keyword);
|
offset = 0;
|
||||||
|
search = keyword;
|
||||||
|
listBuilder(keyword, offset, perpage);
|
||||||
}
|
}
|
||||||
|
|
||||||
function clearSearch() {
|
function clearSearch() {
|
||||||
location.href = "more.html?offset=0";
|
offset = 0;
|
||||||
|
document.searchbar.searchtextbox.value = "";
|
||||||
|
search = "";
|
||||||
|
listBuilder("", offset, perpage);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Running scripts
|
//Running scripts
|
||||||
|
@ -102,33 +107,28 @@
|
||||||
//Means not already installed
|
//Means not already installed
|
||||||
btn = "<button class='install' onclick='install(" + '"' + item.url + '"' + ", " + '"' + item.id + '"' + ");'>Install</button>";
|
btn = "<button class='install' onclick='install(" + '"' + item.url + '"' + ", " + '"' + item.id + '"' + ");'>Install</button>";
|
||||||
}
|
}
|
||||||
|
|
||||||
document.getElementById(item.id).innerHTML = btn;
|
document.getElementById(item.id).innerHTML = btn;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
function install(script, btnId){
|
function install(script, btnId){
|
||||||
//then change btn appearence
|
|
||||||
var btn = "<button class='processing' >Processing...</button>";
|
var btn = "<button class='processing' >Processing...</button>";
|
||||||
document.getElementById(btnId).innerHTML = btn;
|
document.getElementById(btnId).innerHTML = btn;
|
||||||
|
|
||||||
//Action
|
|
||||||
var readyEvent = {
|
var readyEvent = {
|
||||||
"action": "installScript",
|
"action": "installScript",
|
||||||
"script": script
|
"script": script
|
||||||
};
|
};
|
||||||
|
|
||||||
EventBridge.emitWebEvent(JSON.stringify(readyEvent));
|
EventBridge.emitWebEvent(JSON.stringify(readyEvent));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function uninstall(script, btnId){
|
function uninstall(script, btnId){
|
||||||
//then change btn appearence
|
|
||||||
var btn = "<button class='processing' >Processing...</button>";
|
var btn = "<button class='processing' >Processing...</button>";
|
||||||
document.getElementById(btnId).innerHTML = btn;
|
document.getElementById(btnId).innerHTML = btn;
|
||||||
|
|
||||||
//Action
|
|
||||||
var readyEvent = {
|
var readyEvent = {
|
||||||
"action": "uninstallScript",
|
"action": "uninstallScript",
|
||||||
"script": script
|
"script": script
|
||||||
|
@ -136,16 +136,14 @@
|
||||||
|
|
||||||
EventBridge.emitWebEvent(JSON.stringify(readyEvent));
|
EventBridge.emitWebEvent(JSON.stringify(readyEvent));
|
||||||
}
|
}
|
||||||
|
</script>
|
||||||
</script>
|
|
||||||
|
|
||||||
<link href="https://fonts.googleapis.com/css?family=Merriweather|Quicksand:400,700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Merriweather|Quicksand:400,700&display=swap" rel="stylesheet">
|
||||||
<link href="css/styles.css" rel="stylesheet">
|
<link href="css/styles.css" rel="stylesheet">
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body><form name = "searchbar">
|
<body><form name = "searchbar" onsubmit="submitForm(event);">
|
||||||
<h1 class="mainTitle">Add more functionalities...</h1>
|
<font class="mainTitle">Add more functionalities...</font><br>
|
||||||
<p class="mainDesc">Want to add your own app? Read the <a href="https://kasenvr.github.io/community-apps/web/index.html">guide</a>!</p>
|
|
||||||
<table style = "width:100%;">
|
<table style = "width:100%;">
|
||||||
<tr >
|
<tr >
|
||||||
<td style = "vertical-align:middle; text-align:left;">
|
<td style = "vertical-align:middle; text-align:left;">
|
||||||
|
@ -153,7 +151,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td style = "vertical-align:middle; text-align:left;">
|
<td style = "vertical-align:middle; text-align:left;">
|
||||||
<div class = "searchbox">
|
<div class = "searchbox">
|
||||||
<input class = "searchtextbox" name = "searchtextbox" size = "26" maxlength="32"> <a href="#" onclick='clearSearch();'><img src="del-x-16.png"></a>
|
<input class = "searchtextbox" name = "searchtextbox" size = "26" maxlength="32" onkeypress="monitorEnter(event, this);"> <a href="#" onclick='clearSearch();'><img src="del-x-16.png"></a>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td style = "vertical-align:middle; text-align:left;">
|
<td style = "vertical-align:middle; text-align:left;">
|
||||||
|
@ -164,96 +162,115 @@
|
||||||
</td>
|
</td>
|
||||||
<td style = "vertical-align:middle; text-align:right;">
|
<td style = "vertical-align:middle; text-align:right;">
|
||||||
<div id = 'pager_top' style = "vertical-align: middle;"></div>
|
<div id = 'pager_top' style = "vertical-align: middle;"></div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</form><br>
|
</form><!--br-->
|
||||||
<div id = "data"></div>
|
<div id = "data"></div>
|
||||||
<div style="width:98%; text-align:right;">
|
<div style="width:98%; text-align:right;">
|
||||||
<div style = "vertical-align: middle;" id = 'pager_footer'><!-- More info placeholder --></div>
|
<div style = "vertical-align: middle;" id = 'pager_footer'></div>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<hr>
|
||||||
|
<p class="mainDesc">Want to contribute and add your own app?<br>
|
||||||
|
Read the <a href="https://kasenvr.github.io/community-apps/web/index.html">guide</a>!</p>
|
||||||
|
<script>
|
||||||
|
function monitorEnter(e) {
|
||||||
|
var code = (e.keyCode ? e.keyCode : e.which);
|
||||||
|
if (code == 13) {
|
||||||
|
doSearch(document.searchbar.searchtextbox.value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function submitForm(event){
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
|
||||||
document.searchbar.searchtextbox.value = search;
|
document.searchbar.searchtextbox.value = search;
|
||||||
|
var pageContent = "";
|
||||||
|
|
||||||
function DisplayApp(item) {
|
function DisplayApp(item) {
|
||||||
pageContent = pageContent + "<a name = '" + window.btoa(item.directory) + "'><table class='item'><tr>";
|
pageContent = pageContent + "<a name = '" + window.btoa(item.directory) + "'><table class='item'><tr>";
|
||||||
pageContent = pageContent + "<td><div class='iconContainer'><img src='" + rootPath + item.icon + "' style='width:50px;'><br><font class = 'caption'>" + item.caption + "</font></div></td>";
|
pageContent = pageContent + "<td><div class='iconContainer'><img src='" + rootPath + item.icon + "' style='width:50px;'><br><font class = 'caption'>" + item.caption + "</font></div></td>";
|
||||||
var btn = "";
|
var btn = "";
|
||||||
var absoluteJsFile = rootPath + item.jsfile;
|
var absoluteJsFile = rootPath + item.jsfile;
|
||||||
|
|
||||||
var btn = "<button class='install' onclick = 'install(" + '"' + absoluteJsFile + " ," + window.btoa(item.directory) + '"' + ");'>Install</button>";
|
var btn = "<button class='install' onclick = 'install(" + '"' + absoluteJsFile + " ," + window.btoa(item.directory) + '"' + ");'>Install</button>";
|
||||||
var btndata = {
|
var btndata = {
|
||||||
"url": absoluteJsFile,
|
"url": absoluteJsFile,
|
||||||
"id": window.btoa(item.directory)
|
"id": window.btoa(item.directory)
|
||||||
};
|
};
|
||||||
buttonList.push(btndata);
|
buttonList.push(btndata);
|
||||||
|
|
||||||
pageContent = pageContent + "<td><font class='appname'>" + item.name + "<br></font><font class = 'appdesc'>" + item.description + "<br></font><div id = '"+ window.btoa(item.directory) +"' align='right'>" + btn + "</div></td>";
|
|
||||||
pageContent = pageContent + "</tr></table><br><br>";
|
|
||||||
}
|
|
||||||
|
|
||||||
var counterDir = -1;
|
pageContent = pageContent + "<td><font class='appname'>" + item.name + "<br></font><font class = 'appdesc'>" + item.description + "<br></font><div id = '"+ window.btoa(item.directory) +"' align='right'>" + btn + "</div></td>";
|
||||||
var counterDisp = 0;
|
pageContent = pageContent + "</tr></table><br>";
|
||||||
var index = 0;
|
}
|
||||||
var lowItem = "";
|
|
||||||
var needNext = false;
|
|
||||||
var pageContent = "";
|
|
||||||
|
|
||||||
for (index = 0; index < metadata.applications.length; index++) {
|
function listBuilder(searchKeyword, listOffset, listPerPage) {
|
||||||
lowItem = metadata.applications[index].name.toLowerCase();
|
buttonList = [];
|
||||||
if (lowItem.indexOf(search.toLowerCase()) !== -1 && metadata.applications[index].isActive == true) {
|
var counterDir = -1;
|
||||||
counterDir = counterDir + 1;
|
var counterDisp = 0;
|
||||||
if ((counterDir >= offset) && (counterDir < (offset + perpage))) {
|
var index = 0;
|
||||||
DisplayApp(metadata.applications[index]);
|
var lowItem = "";
|
||||||
counterDisp = counterDisp + 1;
|
var needNext = false;
|
||||||
}
|
pageContent = "";
|
||||||
if (counterDir >= (offset + perpage)) {
|
|
||||||
needNext = true;
|
for (index = 0; index < metadata.applications.length; index++) {
|
||||||
break;
|
lowItem = metadata.applications[index].name.toLowerCase();
|
||||||
|
if (lowItem.indexOf(searchKeyword.toLowerCase()) !== -1 && metadata.applications[index].isActive == true) {
|
||||||
|
counterDir = counterDir + 1;
|
||||||
|
if ((counterDir >= listOffset) && (counterDir < (listOffset + listPerPage))) {
|
||||||
|
DisplayApp(metadata.applications[index]);
|
||||||
|
counterDisp = counterDisp + 1;
|
||||||
|
}
|
||||||
|
if (counterDir >= (listOffset + listPerPage)) {
|
||||||
|
needNext = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var pagerPrevious = "<a href='#' onclick='pagetoPrevious();'><img src='minus-16.png'></a>";
|
||||||
|
if (listOffset <= 0) {
|
||||||
|
pagerPrevious = "<img src='blank_minus-16.png'>";
|
||||||
|
}
|
||||||
|
|
||||||
|
var pagerNext = "<a href='#' onclick='pagetoNext();'><img src='plus-16.png'></a>";
|
||||||
|
if (needNext == false) {
|
||||||
|
pagerNext = "<img src='blank_plus-16.png'>";
|
||||||
|
}
|
||||||
|
|
||||||
|
var countA = listOffset + 1;
|
||||||
|
|
||||||
|
var countB = listOffset + counterDisp;
|
||||||
|
|
||||||
|
var pagerHtml = pagerPrevious + "<font class='pager'> " + countA + " - " + countB + " </font>" + 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 = "<hr><div align='center'><font class='noresult'><br><br><br><br>Sorry, no result found.<br><br><br><br><br><br></font></div><hr>";
|
||||||
|
}
|
||||||
|
requestRunningScriptData();
|
||||||
}
|
}
|
||||||
|
|
||||||
//pager
|
//pager
|
||||||
|
|
||||||
function pagetoPrevious(){
|
function pagetoPrevious(){
|
||||||
offset = offset - perpage;
|
offset = offset - perpage;
|
||||||
if (offset < 0) {
|
if (offset < 0) {
|
||||||
offset = 0;
|
offset = 0;
|
||||||
}
|
}
|
||||||
location.href = "more.html?offset=" + offset + "&perpage=" + perpage + "&search=" + encodeURI(search);
|
listBuilder(search, offset, perpage);
|
||||||
}
|
}
|
||||||
|
|
||||||
function pagetoNext(){
|
function pagetoNext(){
|
||||||
offset = offset + perpage;
|
offset = offset + perpage;
|
||||||
location.href = "more.html?offset=" + offset + "&perpage=" + perpage + "&search=" + encodeURI(search);
|
listBuilder(search, offset, perpage);
|
||||||
}
|
}
|
||||||
|
|
||||||
var pagerPrevious = "<a href='#' onclick='pagetoPrevious();'><img src='minus-16.png'></a>";
|
|
||||||
if (offset <= 0) {
|
|
||||||
pagerPrevious = "<img src='blank_minus-16.png'>";
|
|
||||||
}
|
|
||||||
|
|
||||||
var pagerNext = "<a href='#' onclick='pagetoNext();'><img src='plus-16.png'></a>";
|
|
||||||
if (needNext == false) {
|
|
||||||
pagerNext = "<img src='blank_plus-16.png'>";
|
|
||||||
}
|
|
||||||
|
|
||||||
var countA = offset + 1;
|
|
||||||
|
|
||||||
var countB = offset + counterDisp;
|
|
||||||
|
|
||||||
var pagerHtml = pagerPrevious + "<font class='pager'> " + countA + " - " + countB + " </font>" + pagerNext;
|
|
||||||
|
|
||||||
if (counterDisp > 0 ) {
|
listBuilder(search, offset, perpage);
|
||||||
document.getElementById("pager_top").innerHTML = pagerHtml;
|
|
||||||
document.getElementById("data").innerHTML = pageContent;
|
|
||||||
document.getElementById("pager_footer").innerHTML = pagerHtml;
|
|
||||||
} else {
|
|
||||||
document.getElementById("data").innerHTML = "<hr><div align='center'><font class='noresult'><br><br><br><br>Sorry, no result found.<br><br><br><br><br><br></font></div><hr>";
|
|
||||||
}
|
|
||||||
|
|
||||||
requestRunningScriptData();
|
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue