65 lines
No EOL
1.4 KiB
JavaScript
65 lines
No EOL
1.4 KiB
JavaScript
// Copyright 2013 Web Notes Technologies Pvt Ltd
|
|
// License: MIT. See license.txt
|
|
|
|
// page container
|
|
wn.provide('wn.pages');
|
|
wn.provide('wn.views');
|
|
|
|
wn.views.Container = Class.extend({
|
|
init: function() {
|
|
this.container = $('#body_div').get(0);
|
|
this.page = null; // current page
|
|
this.pagewidth = $('#body_div').width();
|
|
this.pagemargin = 50;
|
|
},
|
|
add_page: function(label, onshow, onhide) {
|
|
var page = $('<div class="content"></div>')
|
|
.attr('id', "page-" + label)
|
|
.toggle(false)
|
|
.appendTo(this.container).get(0);
|
|
if(onshow)
|
|
$(page).bind('show', onshow);
|
|
if(onshow)
|
|
$(page).bind('hide', onhide);
|
|
page.label = label;
|
|
wn.pages[label] = page;
|
|
|
|
return page;
|
|
},
|
|
change_to: function(label) {
|
|
if(this.page && this.page.label == label) {
|
|
// don't trigger double events
|
|
$(this.page).trigger('show');
|
|
return;
|
|
}
|
|
|
|
var me = this;
|
|
if(label.tagName) {
|
|
// if sent the div, get the table
|
|
var page = label;
|
|
} else {
|
|
var page = wn.pages[label];
|
|
}
|
|
if(!page) {
|
|
console.log(wn._('Page not found')+ ': ' + label);
|
|
return;
|
|
}
|
|
|
|
// hide current
|
|
if(this.page && this.page != page) {
|
|
$(this.page).toggle(false);
|
|
$(this.page).trigger('hide');
|
|
}
|
|
|
|
// show new
|
|
if(!this.page || this.page != page) {
|
|
this.page = page;
|
|
//$(this.page).fadeIn();
|
|
$(this.page).toggle(true);
|
|
}
|
|
this.page._route = window.location.hash;
|
|
$(this.page).trigger('show');
|
|
scroll(0,0);
|
|
return this.page;
|
|
}
|
|
}); |