123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- // TODO - Add initial page loading and handlers
- (function($,History){
- var State = History.getState(),
- Old = {},
- Key = null,
- flags = [],
- templates = [],
- flag = window.flag = function(name,value){
- if(exists(value)){
- flags[name] = value;
- }else{
- return exists(flags[name])?flags[name]:false;
- }
- },
- settings = {},
- exists = function(v){
- return typeof v != 'undefined';
- },
- get = window.get = function(s){
- return settings[s];
- },
- set = window.set = function(s,v){
- settings[s] = v;
- return v;
- },
- setKey = window.setKey = function(key){
- if(key !== null){
- console.log('Key change to '+key);
- Key = key;
- var d = new Date();
- d.setTime(d.getTime()+get('expire'));
- $.cookie('key',key,{
- expires: d
- });
- }else{
- console.log('Key deleted');
- Key = null;
- $.removeCookie('key');
- }
- },
- getKey = window.getKey = function(){
- return Key;
- },
- template = window.template = function(name,template){
- if(exists(template)){
- templates[name] = {
- template: template,
- date: get('expire')+new Date
- };
- $.localStorage('templates',templates);
- }else if(exists(templates[name])){
- console.log('Using cached template for: '+name);
- var template = templates[name].template;
- if(templates[name].date < +new Date){
- delete templates[name];
- $.localStorage('templates',templates);
- }
- return template;
- }else{
- console.log('No cached template stored for: '+name);
- return '';
- }
- },
- apiCall = window.apiCall = function(data,callback){
- console.log('apiCall('+data.type+'-'+data.id+')');
- $('#loading').show();
- data.get = 'api';
- data.timestamp = +new Date;
- if(exists(templates[data.type+'-'+data.id])){
- data.template = false;
- }
- $.get(location.href,data,function(d){
- if(exists(d['error'])){
- error(d);
- }else{
- if(location.href.substr(location.href.lastIndexOf('/')+1) != d.state.url){
- console.log('Forced redirection to '+d.state.url);
- History.replaceState(d.state.data,d.state.title,d.state.url);
- }
- }
- if(exists(callback)){
- callback(d);
- }
- },'json');
- },
- loadState = window.loadState = function(href,callback){
- console.log('loadState('+href+')');
- $('#loading').show();
- var data = {
- get:'state',
- timestamp: +new Date
- };
- $.get(href,data,function(d){
- if(exists(d['error'])){
- error(d);
- }else{
- History.pushState(d.state.data,d.state.title,href);
- getNewState();
- }
- if(exists(callback)){
- callback(d);
- }
- },'json');
- },
- apiState = window.apiState = function(href,callback){
- console.log('apiState('+href+')');
- $('#loading').show();
- var data = {
- get:'state',
- timestamp: +new Date
- };
- $.get(href,data,function(d){
- if(exists(d['error'])){
- error(d);
- }else{
- History.replaceState(d.state.data,d.state.title,href);
- getNewState();
- }
- if(exists(callback)){
- callback(d);
- }
- },'json');
- },
- error = function(e){
- e = '['+State.url+']'+e.error;
- console.error(e+"\n"+(exists(e.state)?JSON.stringify(e.state):''));
- alert(e);
- },
- getNewState = function(){
- State = History.getState();
- console.log("State change. "+JSON.stringify(State.data));
- if (!window.location.origin) {
- window.location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: '');
- }
- },
- equal = function(o1,o2){
- for(var i in o1){
- if(!exists(o2[i])||o2[i]!=o1[i]){
- return false;
- }
- }
- for(i in o2){
- if(!exists(o1[i])||o2[i]!=o1[i]){
- return false;
- }
- }
- return true;
- },
- render = window.render = {
- topbar: function(t,c){
- $('#topbar').html(Handlebars.compile(t)(c));
- render.links('#topbar');
- },
- content: function(t,c){
- $('#content').html(
- Handlebars.compile(t)(c)
- );
- render.links('#content');
- $(window).resize();
- },
- links: function(selector){
- $(selector).find('a').each(function(){
- var href = this.href;
- if(href.indexOf('#')!=-1&&(href.indexOf(location.origin)!=-1||href.indexOf('#')==0)){
- href = href.substr(href.indexOf('#')+1);
- $(this).click(function(e){
- try{
- if(($(this).hasClass('topbar-home') || $(this).hasClass('topbar-back'))&&$(window).width()<767){
- $('#topbar').children('div.topbar-right,div.topbar-left').toggle();
- $('#topbar').resize();
- }else if($(this).hasClass('topbar-history')){
- History.back();
- }else{
- loadState(href);
- }
- }catch(error){
- console.error(error);
- }
- e.preventDefault();
- return false;
- });
- }
- });
- }
- };
- if(exists($.cookie('key'))){
- setKey($.cookie('key'));
- }else{
- setKey(null);
- }
- $(document).ready(function(){
- templates = $.localStorage('templates');
- if(templates === null){
- templates = [];
- }
- if(!exists($.support.touch)){
- $.support.touch = 'ontouchstart' in window || 'onmsgesturechange' in window;
- }
- $(window).on('statechange',function(){
- getNewState();
- if(!equal(State.data,Old)){
- document.title = State.title;
- switch(State.data.type){
- case 'page':case 'user':
- apiCall(State.data,function(d){
- if(exists(d.context)){
- if(!exists(d.context.key)&&Key!==null){
- console.log('Context detected logout');
- setKey(null);
- }
- if(exists(d.template)){
- template(State.data.type+'-'+State.data.id,d.template);
- }else{
- d.template = template(State.data.type+'-'+State.data.id);
- }
- render.topbar(d.topbar.template,d.topbar.context);
- render.content(d.template,d.context);
- $('#loading').hide();
- }else{
- console.error('No context given');
- History.back();
- }
- });
- break;
- case 'action':break;
- default:
- error({
- url: State.url,
- error: "Something went wrong!"
- });
- }
- Old = State.data;
- }else{
- console.log(State.data,Old);
- console.warn('Stopped double load of '+Old.type+'-'+Old.id);
- $('#loading').hide();
- }
- });
- if($.isEmptyObject(State.data)){
- History.replaceState({
- type: 'page',
- id: 'index'
- },'Bugs','page-index');
- console.log('Forcing default state.');
- }else{
- flag('load',true);
- }
- var data = {
- get: 'settings',
- timestamp: +new Date
- };
- $.get(location.href,data,function(d){
- settings = d;
- apiState(location.href,function(){
- if(flag('load')){
- State.data = {
- type: '',
- data: ''
- };
- }
- flag('load',false);
- });
- },'json');
- $('#content').niceScroll({
- cursorwidth: 10,
- nativeparentscrolling: false,
- preservenativescrolling: false
- });
- document.addEventListener('touchmove',function(e){
- e.preventDefault();
- });
- });
- $(window).resize(function(){
- if($(window).width()>767){
- $('#topbar div.topbar-right, #topbar div.topbar-left').css({
- 'display': ''
- });
- }
- $('#content').height($('body').height()-$('#topbar').height());
- $('#content').getNiceScroll().resize();
- }).resize();
- $('#topbar').resize(function(){
- $(window).resize();
- });
- shortcut.add('f12',function(){
- if(!flag('firebug-lite')){
- (function(F,i,r,e,b,u,g,L,I,T,E){
- if(F.getElementById(b))
- return;
- E=F[i+'NS']&&F.documentElement.namespaceURI;
- E=E?F[i+'NS'](E,'script'):F[i]('script');
- E[r]('id',b);
- E[r]('src',I+g+T);
- E[r](b,u);
- (F[e]('head')[0]||F[e]('body')[0]).appendChild(E);
- E=new Image;
- E[r]('src',I+L);
- })(document,'createElement','setAttribute','getElementsByTagName','FirebugLite','4','firebug-lite.js','releases/lite/latest/skin/xp/sprite.png','https://getfirebug.com/','#startOpened');
- flag('firebug-lite',true);
- }
- });
- $.fn.serializeObject = function(){
- var o = {},
- a = this.serializeArray();
- $.each(a,function(){
- if(o[this.name] !== undefined){
- if(!o[this.name].push){
- o[this.name] = [o[this.name]];
- }
- o[this.name].push(this.value || '');
- }else{
- o[this.name] = this.value || '';
- }
- });
- return o;
- };
- $.ajaxSetup({
- async: false
- });
- })(jQuery,History);
|