inital commit
This commit is contained in:
commit
f84dc9664c
57
demo.html
Normal file
57
demo.html
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
<!doctype>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>pluie.org bt demo</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<style>
|
||||||
|
#test { border: 1px dashed #ccc; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<input type="text" value="" id="data"/><br/>
|
||||||
|
<button class="cmd-append">dom append</button><br/>
|
||||||
|
<button class="cmd-html">dom html</button><br/>
|
||||||
|
<button class="cmd-custom">custom</button><br/>
|
||||||
|
<h2>demo bt : </h2>
|
||||||
|
<div id="test"></div>
|
||||||
|
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
|
||||||
|
<script type="text/javascript" src="src/bt.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
// define a new custom cmd
|
||||||
|
$bt.CMD_CUSTOM = "customCmd";
|
||||||
|
// treat custom command to other browser tabs
|
||||||
|
$bt.on = function(cmd) {
|
||||||
|
switch (cmd.name) {
|
||||||
|
case $bt.CMD_CUSTOM :
|
||||||
|
// do stuff
|
||||||
|
$bt.log('custom command `'+cmd.name+'` with value `'+cmd.customKey+'`');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//
|
||||||
|
$(document).ready(function() {
|
||||||
|
$bt.init();
|
||||||
|
var bind = function(call) {
|
||||||
|
var html = $('#data').val();
|
||||||
|
if (html.length > 0) call(html)
|
||||||
|
else $('#data').attr('placeholder', 'insert data first !');
|
||||||
|
}
|
||||||
|
$('.cmd-append').on('click', function(){
|
||||||
|
bind(function(data) {
|
||||||
|
$bt.append('#test', data);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
$('.cmd-html').on('click', function(){
|
||||||
|
bind(function(data) {
|
||||||
|
$bt.html('#test', data);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
$('.cmd-custom').on('click', function(){
|
||||||
|
bind(function(data) {
|
||||||
|
$bt.send({ name : $bt.CMD_CUSTOM, customKey : data });
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
222
src/bt.js
Normal file
222
src/bt.js
Normal file
|
@ -0,0 +1,222 @@
|
||||||
|
/*!
|
||||||
|
* @author : a-Sansara <dev]]@[[a-sansara]]dot[[net>
|
||||||
|
* @contributors :
|
||||||
|
* @copyright : pluie.org
|
||||||
|
* @date : 2015-12-10 22:22:34
|
||||||
|
* @version : 0.2
|
||||||
|
* @license : MIT
|
||||||
|
* @require : jquery html5 localStorage
|
||||||
|
* @desc :
|
||||||
|
*
|
||||||
|
* BrowserTab USAGE :
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Initialize
|
||||||
|
*
|
||||||
|
* $(document).ready(function() {
|
||||||
|
* $bt.init();
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* Internal Commands
|
||||||
|
*
|
||||||
|
* // append data on node to other browser tabs
|
||||||
|
* $bt.append('#test', '<b>it's cool to append</b>');
|
||||||
|
* // rewrite content on node to other browser tabs
|
||||||
|
* $bt.html('#test', '<b>it's cool to rewrite</b>');
|
||||||
|
*
|
||||||
|
* Custom Commands
|
||||||
|
*
|
||||||
|
* // define a new custom cmd
|
||||||
|
* $bt.CMD_CUSTOM = "customCmd";
|
||||||
|
* // treat custom command to other browser tabs
|
||||||
|
* $bt.on = function(cmd) {
|
||||||
|
* switch (cmd.name) {
|
||||||
|
* case $bt.CMD_CUSTOM :
|
||||||
|
* // do stuff
|
||||||
|
* $bt.log("custom command `'+cmd.name+'` with `'+cmd.customKey+'`');
|
||||||
|
* break;
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* // send a custom command to other browser tabs
|
||||||
|
* $bt.send({ name : $bt.CMD_CUSTOM, customKey : 'customValue' });
|
||||||
|
*
|
||||||
|
* enjoy !
|
||||||
|
*/
|
||||||
|
var $bt = {
|
||||||
|
TRACE : true && typeof console != "undefined",
|
||||||
|
/*! @constant LS_TABS localStorage key for browsertabs list */
|
||||||
|
LS_TABS : 'bt.tabs',
|
||||||
|
/*! @constant LS_CURTAB localStorage key for current browsertab */
|
||||||
|
LS_CURTAB : 'bt.ctab',
|
||||||
|
/*! @constant LS_CMD localStorage key command to interact with other tabs */
|
||||||
|
LS_CMD : 'bt.cmd',
|
||||||
|
/*! @constant CMD_SYNC internal command to perform a browser tab synchro */
|
||||||
|
CMD_SYNC : 'bt.sync',
|
||||||
|
/*! @constant CMD_APPEND internal command to perform a dom append */
|
||||||
|
CMD_APPEND : 'dom.append',
|
||||||
|
/*! @constant CMD_HTML internal command to perform a dom html */
|
||||||
|
CMD_HTML : 'dom.html',
|
||||||
|
/*!
|
||||||
|
* @desc initialize on dom ready
|
||||||
|
* @public
|
||||||
|
* @method init
|
||||||
|
* @param string fn a function to call on initializing on dom ready
|
||||||
|
*/
|
||||||
|
init : function(fn) {
|
||||||
|
window.onbeforeunload = $bt._unload;
|
||||||
|
this._init(fn);
|
||||||
|
},
|
||||||
|
/*!
|
||||||
|
* @desc custom method to implements custom command
|
||||||
|
* @public
|
||||||
|
* @method on
|
||||||
|
* @param string cmd a cmd to treat
|
||||||
|
*/
|
||||||
|
on : function(cmd) {
|
||||||
|
// custom
|
||||||
|
this.log(cmd);
|
||||||
|
},
|
||||||
|
/*!
|
||||||
|
* @desc console log if trace is enabled
|
||||||
|
* @public
|
||||||
|
* @method on
|
||||||
|
* @param mix data data to log
|
||||||
|
*/
|
||||||
|
log : function(data) {
|
||||||
|
if (this.TRACE) console.log(data);
|
||||||
|
},
|
||||||
|
/*!
|
||||||
|
* @desc send a command to other tabs
|
||||||
|
* @public
|
||||||
|
* @method send
|
||||||
|
* @param object cmd the cmd to send
|
||||||
|
*/
|
||||||
|
send : function(cmd) {
|
||||||
|
cmd.uid = this.id+Math.random();
|
||||||
|
cmd.from = this.id;
|
||||||
|
if (typeof cmd.to == "undefined") cmd.to = "*";
|
||||||
|
$l.set(this.LS_CMD, $j.str(cmd));
|
||||||
|
$l.rem(this.LS_CMD);
|
||||||
|
},
|
||||||
|
/*!
|
||||||
|
* @desc perform an dom append command on other tabs
|
||||||
|
* @public
|
||||||
|
* @method append
|
||||||
|
* @param string selector the selector wich target the node(s)
|
||||||
|
* @param string data the data to append
|
||||||
|
*/
|
||||||
|
append : function(selector, data, btid) {
|
||||||
|
this._dom(this.CMD_APPEND, selector, data, btid);
|
||||||
|
},
|
||||||
|
/*!
|
||||||
|
* @desc perform an dom html command on other tabs
|
||||||
|
* @public
|
||||||
|
* @method append
|
||||||
|
* @param string selector the selector wich target the node(s)
|
||||||
|
* @param string data the data to append
|
||||||
|
*/
|
||||||
|
html : function(selector, data, btid) {
|
||||||
|
this._dom(this.CMD_HTML, selector, data, btid);
|
||||||
|
},
|
||||||
|
/*!
|
||||||
|
* @desc perform an dom synchro command on other tabs
|
||||||
|
* @public
|
||||||
|
* @method sync
|
||||||
|
* @param string selector the selector wich target the node(s) to synchro
|
||||||
|
*/
|
||||||
|
sync : function(selector, btid) {
|
||||||
|
this._dom(this.CMD_HTML, selector, $(selector).html(), btid);
|
||||||
|
},
|
||||||
|
/*! @private */
|
||||||
|
_refresh : function() {
|
||||||
|
$bt.list = $j.obj($l.get($bt.LS_TABS));
|
||||||
|
},
|
||||||
|
/*! @private */
|
||||||
|
_broadcast : function() {
|
||||||
|
$bt.send({ name : $bt.CMD_SYNC });
|
||||||
|
},
|
||||||
|
/*! @private */
|
||||||
|
_remove : function(id) {
|
||||||
|
if (!id) id = $bt.id;
|
||||||
|
var i = $bt.list.indexOf(id);
|
||||||
|
if (i > -1) $bt.list.splice(i, 1);
|
||||||
|
},
|
||||||
|
/*! @private */
|
||||||
|
_init : function(fn) {
|
||||||
|
window.onbeforeunload = $bt._unload;
|
||||||
|
$(window).on('storage', $bt._cmd);
|
||||||
|
$(window).on('focus', $bt._focus);
|
||||||
|
//~ $l.clear();
|
||||||
|
$bt.id = (new Date).getTime();
|
||||||
|
var tabs = $l.get($bt.LS_TABS);
|
||||||
|
$bt.list = tabs==null ? [] : $j.obj(tabs);
|
||||||
|
$bt.list.push($bt.id);
|
||||||
|
$l.set($bt.LS_TABS, $j.str($bt.list));
|
||||||
|
$bt._broadcast();
|
||||||
|
$bt.log($bt.list);
|
||||||
|
if (typeof fn == "function") fn();
|
||||||
|
},
|
||||||
|
/*! @private */
|
||||||
|
_dom : function(name, selector, data, btid) {
|
||||||
|
$bt.send({ name : name, selector : selector, data : data, to : !btid ? '*' : btid });
|
||||||
|
},
|
||||||
|
/*! @private */
|
||||||
|
_unload : function(e) {
|
||||||
|
$bt._refresh();
|
||||||
|
$bt._remove();
|
||||||
|
$l.set($bt.LS_TABS, $j.str($bt.list));
|
||||||
|
$bt._broadcast();
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
/*! @private */
|
||||||
|
_focus : function(e) {
|
||||||
|
$l.set($bt.LS_CURTAB, $bt.id);
|
||||||
|
},
|
||||||
|
/*! @private */
|
||||||
|
_cmd : function(e) {
|
||||||
|
if (e.originalEvent.key!=$bt.LS_CMD) return;
|
||||||
|
var cmd = $j.obj(e.originalEvent.newValue);
|
||||||
|
if (!cmd) return;
|
||||||
|
if (cmd.to == "*" || cmd.to == $bt.id) {
|
||||||
|
$bt.log(cmd);
|
||||||
|
switch(cmd.name) {
|
||||||
|
|
||||||
|
case $bt.CMD_SYNC :
|
||||||
|
$bt._refresh();
|
||||||
|
$bt.log($bt.list);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case $bt.CMD_APPEND :
|
||||||
|
$bt.log("do "+$bt.CMD_APPEND);
|
||||||
|
$(cmd.selector).append(cmd.data);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case $bt.CMD_HTML :
|
||||||
|
$bt.log("do "+$bt.CMD_HTML);
|
||||||
|
$(cmd.selector).html(cmd.data);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default :
|
||||||
|
// do your stuff here
|
||||||
|
if (typeof $bt.on == "function") $bt.on(cmd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// alias localStorage
|
||||||
|
var $l = {
|
||||||
|
var ls = localStorage;
|
||||||
|
clear : function() { return ls.clear(); },
|
||||||
|
get : function(key) { return ls.getItem(key); },
|
||||||
|
rem : function(key) { return ls.removeItem(key); },
|
||||||
|
set : function(key, value) { return ls.setItem(key, value); }
|
||||||
|
};
|
||||||
|
|
||||||
|
// alias json
|
||||||
|
var $j = {
|
||||||
|
var j = JSON;
|
||||||
|
str : function(data) { return j.stringify(data); },
|
||||||
|
obj : function(str) { return j.parse(str); }
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user