AdminLTE/dist/js/demo.js

350 lines
17 KiB
JavaScript
Raw Normal View History

2015-04-03 15:58:10 +00:00
/**
* AdminLTE Demo Menu
* ------------------
* You should not use this file in production.
* This file is for demo purposes only.
*/
2017-02-26 21:05:36 +00:00
$(function () {
'use strict'
2015-02-01 21:25:09 +00:00
2017-02-26 21:05:36 +00:00
/**
* Get access to plugins
*/
$('[data-toggle="control-sidebar"]').controlSidebar()
$('[data-toggle="push-menu"]').pushMenu()
var $pushMenu = $('[data-toggle="push-menu"]').data('lte.pushmenu')
var $controlSidebar = $('[data-toggle="control-sidebar"]').data('lte.controlsidebar')
var $layout = $('body').data('lte.layout')
2015-07-25 19:06:16 +00:00
2015-04-03 15:58:10 +00:00
/**
* List of all the available skins
2015-07-12 13:42:55 +00:00
*
2015-04-03 15:58:10 +00:00
* @type Array
*/
2017-02-13 13:40:59 +00:00
var mySkins = [
'skin-blue',
'skin-black',
'skin-red',
'skin-yellow',
'skin-purple',
'skin-green',
'skin-blue-light',
'skin-black-light',
'skin-red-light',
'skin-yellow-light',
'skin-purple-light',
'skin-green-light'
2017-02-26 21:05:36 +00:00
]
2015-04-03 15:58:10 +00:00
/**
2017-02-13 13:40:59 +00:00
* Get a prestored setting
2015-07-12 13:42:55 +00:00
*
2017-02-13 13:40:59 +00:00
* @param String name Name of of the setting
* @returns String The value of the setting | null
2015-04-03 15:58:10 +00:00
*/
2017-02-13 13:40:59 +00:00
function get(name) {
if (typeof (Storage) !== 'undefined') {
2017-02-26 21:05:36 +00:00
return localStorage.getItem(name)
2017-02-13 13:40:59 +00:00
} else {
2017-02-26 21:05:36 +00:00
window.alert('Please use a modern browser to properly view this template!')
2015-04-19 12:21:03 +00:00
}
2015-04-03 15:58:10 +00:00
}
/**
* Store a new settings in the browser
2015-07-12 13:42:55 +00:00
*
2015-04-03 15:58:10 +00:00
* @param String name Name of the setting
* @param String val Value of the setting
* @returns void
*/
function store(name, val) {
2017-02-13 13:40:59 +00:00
if (typeof (Storage) !== 'undefined') {
2017-02-26 21:05:36 +00:00
localStorage.setItem(name, val)
2015-04-03 15:58:10 +00:00
} else {
2017-02-26 21:05:36 +00:00
window.alert('Please use a modern browser to properly view this template!')
2015-04-03 15:58:10 +00:00
}
2015-02-01 21:25:09 +00:00
}
2015-04-03 15:58:10 +00:00
/**
2017-02-13 13:40:59 +00:00
* Toggles layout classes
2015-07-12 13:42:55 +00:00
*
2017-02-13 13:40:59 +00:00
* @param String cls the layout class to toggle
* @returns void
2015-04-03 15:58:10 +00:00
*/
2017-02-13 13:40:59 +00:00
function changeLayout(cls) {
2017-02-26 21:05:36 +00:00
$('body').toggleClass(cls)
$layout.fixSidebar()
2017-02-13 13:40:59 +00:00
if ($('body').hasClass('fixed') && cls == 'fixed') {
2017-02-26 21:05:36 +00:00
$pushMenu.expandOnHover()
$layout.activate()
2015-04-03 15:58:10 +00:00
}
2017-02-26 21:05:36 +00:00
$controlSidebar.fix()
2017-02-13 13:40:59 +00:00
}
/**
* Replaces the old skin with the new skin
* @param String cls the new skin class
* @returns Boolean false to prevent link's default action
*/
function changeSkin(cls) {
$.each(mySkins, function (i) {
2017-02-26 21:05:36 +00:00
$('body').removeClass(mySkins[i])
})
2017-02-13 13:40:59 +00:00
2017-02-26 21:05:36 +00:00
$('body').addClass(cls)
store('skin', cls)
return false
2015-02-01 21:25:09 +00:00
}
2015-04-03 15:58:10 +00:00
/**
* Retrieve default settings and apply them to the template
2015-07-12 13:42:55 +00:00
*
2015-04-03 15:58:10 +00:00
* @returns void
*/
function setup() {
2017-02-26 21:05:36 +00:00
var tmp = get('skin')
2017-02-13 13:40:59 +00:00
if (tmp && $.inArray(tmp, mySkins))
2017-02-26 21:05:36 +00:00
changeSkin(tmp)
2015-04-03 15:58:10 +00:00
2017-02-13 13:40:59 +00:00
// Add the change skin listener
$('[data-skin]').on('click', function (e) {
if ($(this).hasClass('knob'))
2017-02-26 21:05:36 +00:00
return
e.preventDefault()
changeSkin($(this).data('skin'))
})
2015-04-03 16:20:14 +00:00
2017-02-13 13:40:59 +00:00
// Add the layout manager
$('[data-layout]').on('click', function () {
2017-02-26 21:05:36 +00:00
changeLayout($(this).data('layout'))
})
2015-04-09 22:52:51 +00:00
2017-02-13 13:40:59 +00:00
$('[data-controlsidebar]').on('click', function () {
2017-02-26 21:05:36 +00:00
changeLayout($(this).data('controlsidebar'))
var slide = !$controlSidebar.options.slide
$controlSidebar.options.slide = slide
2015-04-09 22:52:51 +00:00
if (!slide)
2017-02-26 21:05:36 +00:00
$('.control-sidebar').removeClass('control-sidebar-open')
})
2015-04-15 23:06:16 +00:00
2017-02-13 13:40:59 +00:00
$('[data-sidebarskin="toggle"]').on('click', function () {
2017-02-26 21:05:36 +00:00
var $sidebar = $('.control-sidebar')
2017-02-13 13:40:59 +00:00
if ($sidebar.hasClass('control-sidebar-dark')) {
$sidebar.removeClass('control-sidebar-dark')
$sidebar.addClass('control-sidebar-light')
2015-04-15 23:06:16 +00:00
} else {
2017-02-13 13:40:59 +00:00
$sidebar.removeClass('control-sidebar-light')
$sidebar.addClass('control-sidebar-dark')
2015-04-15 23:06:16 +00:00
}
2017-02-26 21:05:36 +00:00
})
2015-07-12 13:42:55 +00:00
2017-02-13 13:40:59 +00:00
$('[data-enable="expandOnHover"]').on('click', function () {
2017-02-26 21:05:36 +00:00
$(this).attr('disabled', true)
$pushMenu.expandOnHover()
2015-07-25 19:06:16 +00:00
if (!$('body').hasClass('sidebar-collapse'))
2017-02-26 21:05:36 +00:00
$('[data-layout="sidebar-collapse"]').click()
})
2015-07-12 13:42:55 +00:00
2017-02-13 13:40:59 +00:00
// Reset options
2015-07-25 19:06:16 +00:00
if ($('body').hasClass('fixed')) {
2017-02-26 21:05:36 +00:00
$('[data-layout="fixed"]').attr('checked', 'checked')
}
2015-07-25 19:06:16 +00:00
if ($('body').hasClass('layout-boxed')) {
2017-02-26 21:05:36 +00:00
$('[data-layout="layout-boxed"]').attr('checked', 'checked')
}
2015-07-25 19:06:16 +00:00
if ($('body').hasClass('sidebar-collapse')) {
2017-02-26 21:05:36 +00:00
$('[data-layout="sidebar-collapse"]').attr('checked', 'checked')
}
2015-07-12 13:42:55 +00:00
2015-04-03 15:58:10 +00:00
}
2017-02-13 13:40:59 +00:00
// Create the new tab
var $tabPane = $('<div />', {
'id' : 'control-sidebar-theme-demo-options-tab',
'class': 'tab-pane active'
2017-02-26 21:05:36 +00:00
})
2017-02-13 13:40:59 +00:00
// Create the tab button
var $tabButton = $('<li />', { 'class': 'active' })
.html('<a href=\'#control-sidebar-theme-demo-options-tab\' data-toggle=\'tab\'>'
+ '<i class="fa fa-wrench"></i>'
2017-02-26 21:05:36 +00:00
+ '</a>')
2017-02-13 13:40:59 +00:00
// Add the tab button to the right sidebar tabs
$('[href="#control-sidebar-home-tab"]')
.parent()
2017-02-26 21:05:36 +00:00
.before($tabButton)
2017-02-13 13:40:59 +00:00
// Create the menu
2017-02-26 21:05:36 +00:00
var $demoSettings = $('<div />')
2017-02-13 13:40:59 +00:00
// Layout options
$demoSettings.append(
'<h4 class="control-sidebar-heading">'
+ 'Layout Options'
+ '</h4>'
// Fixed layout
+ '<div class="form-group">'
+ '<label class="control-sidebar-subheading">'
+ '<input type="checkbox"data-layout="fixed"class="pull-right"/> '
+ 'Fixed layout'
+ '</label>'
+ '<p>Activate the fixed layout. You can\'t use fixed and boxed layouts together</p>'
+ '</div>'
// Boxed layout
+ '<div class="form-group">'
+ '<label class="control-sidebar-subheading">'
+ '<input type="checkbox"data-layout="layout-boxed" class="pull-right"/> '
+ 'Boxed Layout'
+ '</label>'
+ '<p>Activate the boxed layout</p>'
+ '</div>'
// Sidebar Toggle
+ '<div class="form-group">'
+ '<label class="control-sidebar-subheading">'
+ '<input type="checkbox"data-layout="sidebar-collapse"class="pull-right"/> '
+ 'Toggle Sidebar'
+ '</label>'
+ '<p>Toggle the left sidebar\'s state (open or collapse)</p>'
+ '</div>'
// Sidebar mini expand on hover toggle
+ '<div class="form-group">'
+ '<label class="control-sidebar-subheading">'
+ '<input type="checkbox"data-enable="expandOnHover"class="pull-right"/> '
+ 'Sidebar Expand on Hover'
+ '</label>'
+ '<p>Let the sidebar mini expand on hover</p>'
+ '</div>'
// Control Sidebar Toggle
+ '<div class="form-group">'
+ '<label class="control-sidebar-subheading">'
+ '<input type="checkbox"data-controlsidebar="control-sidebar-open"class="pull-right"/> '
+ 'Toggle Right Sidebar Slide'
+ '</label>'
+ '<p>Toggle between slide over content and push content effects</p>'
+ '</div>'
// Control Sidebar Skin Toggle
+ '<div class="form-group">'
+ '<label class="control-sidebar-subheading">'
+ '<input type="checkbox"data-sidebarskin="toggle"class="pull-right"/> '
+ 'Toggle Right Sidebar Skin'
+ '</label>'
+ '<p>Toggle between dark and light skins for the right sidebar</p>'
+ '</div>'
2017-02-26 21:05:36 +00:00
)
var $skinsList = $('<ul />', { 'class': 'list-unstyled clearfix' })
2017-02-13 13:40:59 +00:00
// Dark sidebar skins
var $skinBlue =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-blue" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
+ '<div><span style="display:block; width: 20%; float: left; height: 7px; background: #367fa9"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin">Blue</p>')
$skinsList.append($skinBlue)
2017-02-13 13:40:59 +00:00
var $skinBlack =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-black" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
+ '<div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix"><span style="display:block; width: 20%; float: left; height: 7px; background: #fefefe"></span><span style="display:block; width: 80%; float: left; height: 7px; background: #fefefe"></span></div>'
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin">Black</p>')
$skinsList.append($skinBlack)
2017-02-13 13:40:59 +00:00
var $skinPurple =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-purple" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
2017-02-13 13:40:59 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-purple-active"></span><span class="bg-purple" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
2017-02-26 21:05:36 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin">Purple</p>')
$skinsList.append($skinPurple)
2017-02-13 13:40:59 +00:00
var $skinGreen =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-green" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
2017-02-13 13:40:59 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
2017-02-26 21:05:36 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin">Green</p>')
$skinsList.append($skinGreen)
2017-02-13 13:40:59 +00:00
var $skinRed =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-red" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
2017-02-13 13:40:59 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
2017-02-26 21:05:36 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin">Red</p>')
$skinsList.append($skinRed)
2017-02-13 13:40:59 +00:00
var $skinYellow =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-yellow" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
2017-02-13 13:40:59 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
2017-02-26 21:05:36 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin">Yellow</p>')
$skinsList.append($skinYellow)
2017-02-13 13:40:59 +00:00
// Light sidebar skins
var $skinBlueLight =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-blue-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
+ '<div><span style="display:block; width: 20%; float: left; height: 7px; background: #367fa9"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin" style="font-size: 12px">Blue Light</p>')
$skinsList.append($skinBlueLight)
2017-02-13 13:40:59 +00:00
var $skinBlackLight =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-black-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
+ '<div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix"><span style="display:block; width: 20%; float: left; height: 7px; background: #fefefe"></span><span style="display:block; width: 80%; float: left; height: 7px; background: #fefefe"></span></div>'
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin" style="font-size: 12px">Black Light</p>')
$skinsList.append($skinBlackLight)
2017-02-13 13:40:59 +00:00
var $skinPurpleLight =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-purple-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
2017-02-13 13:40:59 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-purple-active"></span><span class="bg-purple" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
2017-02-26 21:05:36 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin" style="font-size: 12px">Purple Light</p>')
$skinsList.append($skinPurpleLight)
2017-02-13 13:40:59 +00:00
var $skinGreenLight =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-green-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
2017-02-13 13:40:59 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
2017-02-26 21:05:36 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin" style="font-size: 12px">Green Light</p>')
$skinsList.append($skinGreenLight)
2017-02-13 13:40:59 +00:00
var $skinRedLight =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-red-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
2017-02-13 13:40:59 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
2017-02-26 21:05:36 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin" style="font-size: 12px">Red Light</p>')
$skinsList.append($skinRedLight)
2017-02-13 13:40:59 +00:00
var $skinYellowLight =
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
2017-02-26 21:05:36 +00:00
.append('<a href="javascript:void(0)" data-skin="skin-yellow-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
2017-02-13 13:40:59 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
2017-02-26 21:05:36 +00:00
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
2017-02-13 13:40:59 +00:00
+ '</a>'
2017-02-26 21:05:36 +00:00
+ '<p class="text-center no-margin" style="font-size: 12px">Yellow Light</p>')
$skinsList.append($skinYellowLight)
2017-02-13 13:40:59 +00:00
2017-02-26 21:05:36 +00:00
$demoSettings.append('<h4 class="control-sidebar-heading">Skins</h4>')
$demoSettings.append($skinsList)
2017-02-13 13:40:59 +00:00
2017-02-26 21:05:36 +00:00
$tabPane.append($demoSettings)
$('#control-sidebar-home-tab').after($tabPane)
2017-02-13 13:40:59 +00:00
2017-02-26 21:05:36 +00:00
setup()
2017-03-04 17:19:00 +00:00
$('[data-toggle="tooltip"]').tooltip()
2017-02-26 21:05:36 +00:00
})