mirror of
https://github.com/Doodle3D/doodle3d-connect.git
synced 2024-11-05 07:03:24 +01:00
70 lines
2.2 KiB
JavaScript
70 lines
2.2 KiB
JavaScript
/*
|
|
* This file is part of the Doodle3D project (http://doodle3d.com).
|
|
*
|
|
* Copyright (c) 2013, Doodle3D
|
|
* This software is licensed under the terms of the GNU GPL v2 or later.
|
|
* See file LICENSE.txt or visit http://www.gnu.org/licenses/gpl.html for full license details.
|
|
*/
|
|
|
|
var BoxesPage = (function (w) {
|
|
var _connectAPI = new ConnectAPI();
|
|
|
|
var _page;
|
|
var _list;
|
|
var _findItem;
|
|
var PAGE_ID = "#boxes";
|
|
|
|
$.mobile.document.on( "pageinit", PAGE_ID, function( event, data ) {
|
|
//console.log("Boxes page pageinit");
|
|
_page = $(this);
|
|
_list = _page.find("#boxeslist");
|
|
_findItem = _list.find("#findItem");
|
|
|
|
_connectAPI.refreshing = onRefreshing;
|
|
_connectAPI.listUpdated = onListUpdated;
|
|
_connectAPI.boxAppeared = onBoxAppeared;
|
|
_connectAPI.boxDisapeared = onBoxDisapeared;
|
|
});
|
|
$.mobile.document.on( "pagebeforeshow", PAGE_ID, function( event, data ) {
|
|
//console.log("Boxes page pagebeforeshow");
|
|
_connectAPI.start();
|
|
});
|
|
$.mobile.document.on( "pagehide", PAGE_ID, function( event, data ) {
|
|
//console.log("Boxes page pagehide");
|
|
_connectAPI.stop();
|
|
});
|
|
|
|
function onRefreshing() {
|
|
//console.log("onRefreshing");
|
|
d3d.util.showLoader(true);
|
|
}
|
|
function onListUpdated(boxesData) {
|
|
//console.log("onListUpdated: ",boxesData);
|
|
}
|
|
function onBoxAppeared(boxData) {
|
|
console.log("onBoxAppeared: ",boxData.localip);
|
|
|
|
var linkParams = {localip: boxData.localip,wifiboxid: boxData.wifiboxid};
|
|
if(boxData.link) { linkParams.link = boxData.link; }
|
|
var link = "#box";
|
|
link = d3d.util.replaceURLParameters(link,linkParams);
|
|
var id = boxData.localip.replace(/\./g,"-");
|
|
var linkElement = $("<a href='"+link+"' class='link'>"+boxData.wifiboxid+"</a>");
|
|
var box = $("<li id='"+id+"' class='box'></li>");
|
|
box.append(linkElement);
|
|
box.hide().appendTo(_list).fadeIn(500);
|
|
_list.append(_findItem); // make sure find is the last item
|
|
_list.listview('refresh'); // jQuery mobile enhance content
|
|
}
|
|
function onBoxDisapeared(boxData) {
|
|
console.log("onBoxDisapeared: ",boxData.localip);
|
|
|
|
var id = boxData.localip.replace(/\./g,"-");
|
|
var box = _list.find("#"+id);
|
|
console.log(" box: ",box);
|
|
box.fadeOut(500,function() {
|
|
box.remove();
|
|
//_list.listview('refresh');
|
|
});
|
|
}
|
|
})(window); |