Skip to content

Instantly share code, notes, and snippets.

@codeboy
Last active August 29, 2015 14:15
Show Gist options
  • Save codeboy/4c8c73cf6e92db454533 to your computer and use it in GitHub Desktop.
Save codeboy/4c8c73cf6e92db454533 to your computer and use it in GitHub Desktop.
Javascrip + jQuery - code organization template
BaseApp = function(){
this.params = {
'fdfdf' : 'dsad'
};
this.init = function (params) {
var params = $.extend({}, this.params, params);
var a = this;
a.$content = $('#content');
// меню
a.$menuList = $('#sidebar');
a.$menuListItems = $('#sidebar a');
a.$urlList = urlList;
a.$currentUrl = $(location).attr('hash');
this.starterLoadContent();
this.bindEvents();
};
/**
* EVENTS & ACTIVATORS
*******************************************************/
this.bindEvents = function() {
// тут помещаем "акторы" и "активаторы" - то, на что срабатывает код
this.$menuListItems.on('click', baseApp.menuClick);
$(window).on('click', '.loader', baseApp.contentLoader);
};
/********************************************
* FUNCTIONS
*******************************************/
this.starterLoadContent = function(){
// здесь описываем что происходит после загрузки класса
};
/**
* make menu element active
* @param url
*************************************/
this.makeMenuActive = function(url){
var menu = baseApp.$menuList;
var menuActiveItem = menu.find('li.active');
menuActiveItem.removeClass('active');
var dash = url.slice(0,1);
if (dash === '#') {}
else {url = '#'+url}
var menuItemToActivate = menu.find('li > a[href*='+url+']');
menuItemToActivate.parent().addClass('active');
};
};
$(document).ready(function () {
baseApp = new BaseApp();
baseApp.init();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment