/*********************************************************************************** * 관리자 페이지 초기화 ***********************************************************************************/ APP.init = function(){ APP.initAjaxDefaultSetting(); APP.initMenu(); APP.initAx5(); APP.initPlugins(); APP.initCheckboxAll(); }; /*********************************************************************************** * AJAX Error 및 BlockUI 처리 ***********************************************************************************/ APP.initAjaxDefaultSetting = function() { $(document).ajaxError(function(event, request, settings){ var message = '알수없는 오류가 발생하였습니다.'; if( typeof request.responseJSON != 'undefined' && typeof request.responseJSON.message != 'undefined' ) { message = request.responseJSON.message; } else { if( request.status == 500 ) message = '서버 코드 오류가 발생하였습니다.\n관리자에게 문의하세요'; else if ( request.status == 401 ) message = '해당 명령을 실행할 권한이 없습니다.'; } toastr.error(message, '오류 발생'); }).ajaxStart(function(){ $.blockUI({ css: {width:'25px',top:'49%',left:'49%',border:'0px none',backgroundColor:'transparent',cursor:'wait'}, message : '로딩중', baseZ : 10000, overlayCSS : {opacity : 0} }); }).ajaxComplete(function(){ $.unblockUI(); }); }; /*********************************************************************************** * 메뉴관련 초기화 ***********************************************************************************/ APP.initMenu = function(){ $('#nav .main-navigation li').each(function(){ var $this = $(this); var menuCode = $this.data('active'); if(menuCode == menuActive) { $(this).addClass('active'); $(this).parents('li').addClass('active'); } }); }; APP.initPlugins = function() { /* $('[data-toggle="datepicker"]').datepicker(); $("body").on("click", '[data-toggle="datepicker"]', function(){ if (!$(this).hasClass("hasDatepicker")) { $(this).datepicker(); $(this).datepicker("show"); } }); $('[data-toggle="formatter"]').each(function(){ if( $(this).data('pattern') ) { $(this).formatter({ pattern : $(this).data('pattern'), persistent: true }); } }); $.datetimepicker.setLocale('kr'); $('[data-toggle="datetimepicker"]').datetimepicker({ format:'Y-m-d H:i' }); */ }; APP.initCheckboxAll = function(){ $('[data-checkbox]').click(function(){ var $check = $(this); var is_all = ($check.data('checkbox-all') && $check.data('checkbox-all').toString() == 'true'); var name = $check.data('checkbox'); var checked = $check.prop('checked'); var $allCheck = is_all ? $check : $('[data-checkbox="'+name+'"][data-checkbox-all="true"]'); if( is_all ) { $('[data-checkbox="'+name+'"]').prop('checked', checked ); } else { $allCheck.prop('checked', $('[data-checkbox="'+name+'"]').not('[data-checkbox-all="true"]').length == $('[data-checkbox="'+name+'"]:checked').not('[data-checkbox-all="true"]').length); } }); }; /********************************************************************************************************************** * MODAL 관련 *********************************************************************************************************************/ APP.initAx5 = function(){ APP.MASK = new ax5.ui.mask({ zIndex: 1000} ); APP.MASK2 = new ax5.ui.mask({ zIndex: 2000 }); APP.modal = new ax5.ui.modal({ absolute: true, iframeLoadingMsg: '' }); APP.modal2 = new ax5.ui.modal({ absolute: true, iframeLoadingMsg: '' }); APP.toast = new ax5.ui.toast({ containerPosition: "top-right", closeIcon: '' }); }; $(function(){ APP.init(); });