mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
terminando servicios manipulados y preimpresion
This commit is contained in:
@ -1,440 +0,0 @@
|
||||
/**
|
||||
* Treeview (jquery)
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
$(function () {
|
||||
var theme = $('html').hasClass('light-style') ? 'default' : 'default-dark',
|
||||
basicTree = $('#jstree-basic'),
|
||||
customIconsTree = $('#jstree-custom-icons'),
|
||||
contextMenu = $('#jstree-context-menu'),
|
||||
dragDrop = $('#jstree-drag-drop'),
|
||||
checkboxTree = $('#jstree-checkbox'),
|
||||
ajaxTree = $('#jstree-ajax');
|
||||
|
||||
// Basic
|
||||
// --------------------------------------------------------------------
|
||||
if (basicTree.length) {
|
||||
basicTree.jstree({
|
||||
core: {
|
||||
themes: {
|
||||
name: theme
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Custom Icons
|
||||
// --------------------------------------------------------------------
|
||||
if (customIconsTree.length) {
|
||||
customIconsTree.jstree({
|
||||
core: {
|
||||
themes: {
|
||||
name: theme
|
||||
},
|
||||
data: [
|
||||
{
|
||||
text: 'css',
|
||||
children: [
|
||||
{
|
||||
text: 'app.css',
|
||||
type: 'css'
|
||||
},
|
||||
{
|
||||
text: 'style.css',
|
||||
type: 'css'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'img',
|
||||
state: {
|
||||
opened: true
|
||||
},
|
||||
children: [
|
||||
{
|
||||
text: 'bg.jpg',
|
||||
type: 'img'
|
||||
},
|
||||
{
|
||||
text: 'logo.png',
|
||||
type: 'img'
|
||||
},
|
||||
{
|
||||
text: 'avatar.png',
|
||||
type: 'img'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'js',
|
||||
state: {
|
||||
opened: true
|
||||
},
|
||||
children: [
|
||||
{
|
||||
text: 'jquery.js',
|
||||
type: 'js'
|
||||
},
|
||||
{
|
||||
text: 'app.js',
|
||||
type: 'js'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'index.html',
|
||||
type: 'html'
|
||||
},
|
||||
{
|
||||
text: 'page-one.html',
|
||||
type: 'html'
|
||||
},
|
||||
{
|
||||
text: 'page-two.html',
|
||||
type: 'html'
|
||||
}
|
||||
]
|
||||
},
|
||||
plugins: ['types'],
|
||||
types: {
|
||||
default: {
|
||||
icon: 'ti ti-folder'
|
||||
},
|
||||
html: {
|
||||
icon: 'ti ti-brand-html5 text-danger'
|
||||
},
|
||||
css: {
|
||||
icon: 'ti ti-brand-css3 text-info'
|
||||
},
|
||||
img: {
|
||||
icon: 'ti ti-photo text-success'
|
||||
},
|
||||
js: {
|
||||
icon: 'ti ti-brand-javascript text-warning'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Context Menu
|
||||
// --------------------------------------------------------------------
|
||||
if (contextMenu.length) {
|
||||
contextMenu.jstree({
|
||||
core: {
|
||||
themes: {
|
||||
name: theme
|
||||
},
|
||||
check_callback: true,
|
||||
data: [
|
||||
{
|
||||
text: 'css',
|
||||
children: [
|
||||
{
|
||||
text: 'app.css',
|
||||
type: 'css'
|
||||
},
|
||||
{
|
||||
text: 'style.css',
|
||||
type: 'css'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'img',
|
||||
state: {
|
||||
opened: true
|
||||
},
|
||||
children: [
|
||||
{
|
||||
text: 'bg.jpg',
|
||||
type: 'img'
|
||||
},
|
||||
{
|
||||
text: 'logo.png',
|
||||
type: 'img'
|
||||
},
|
||||
{
|
||||
text: 'avatar.png',
|
||||
type: 'img'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'js',
|
||||
state: {
|
||||
opened: true
|
||||
},
|
||||
children: [
|
||||
{
|
||||
text: 'jquery.js',
|
||||
type: 'js'
|
||||
},
|
||||
{
|
||||
text: 'app.js',
|
||||
type: 'js'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'index.html',
|
||||
type: 'html'
|
||||
},
|
||||
{
|
||||
text: 'page-one.html',
|
||||
type: 'html'
|
||||
},
|
||||
{
|
||||
text: 'page-two.html',
|
||||
type: 'html'
|
||||
}
|
||||
]
|
||||
},
|
||||
plugins: ['types', 'contextmenu'],
|
||||
types: {
|
||||
default: {
|
||||
icon: 'ti ti-folder'
|
||||
},
|
||||
html: {
|
||||
icon: 'ti ti-brand-html5 text-danger'
|
||||
},
|
||||
css: {
|
||||
icon: 'ti ti-brand-css3 text-info'
|
||||
},
|
||||
img: {
|
||||
icon: 'ti ti-photo text-success'
|
||||
},
|
||||
js: {
|
||||
icon: 'ti ti-brand-javascript text-warning'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Drag Drop
|
||||
// --------------------------------------------------------------------
|
||||
if (dragDrop.length) {
|
||||
dragDrop.jstree({
|
||||
core: {
|
||||
themes: {
|
||||
name: theme
|
||||
},
|
||||
check_callback: true,
|
||||
data: [
|
||||
{
|
||||
text: 'css',
|
||||
children: [
|
||||
{
|
||||
text: 'app.css',
|
||||
type: 'css'
|
||||
},
|
||||
{
|
||||
text: 'style.css',
|
||||
type: 'css'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'img',
|
||||
state: {
|
||||
opened: true
|
||||
},
|
||||
children: [
|
||||
{
|
||||
text: 'bg.jpg',
|
||||
type: 'img'
|
||||
},
|
||||
{
|
||||
text: 'logo.png',
|
||||
type: 'img'
|
||||
},
|
||||
{
|
||||
text: 'avatar.png',
|
||||
type: 'img'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'js',
|
||||
state: {
|
||||
opened: true
|
||||
},
|
||||
children: [
|
||||
{
|
||||
text: 'jquery.js',
|
||||
type: 'js'
|
||||
},
|
||||
{
|
||||
text: 'app.js',
|
||||
type: 'js'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'index.html',
|
||||
type: 'html'
|
||||
},
|
||||
{
|
||||
text: 'page-one.html',
|
||||
type: 'html'
|
||||
},
|
||||
{
|
||||
text: 'page-two.html',
|
||||
type: 'html'
|
||||
}
|
||||
]
|
||||
},
|
||||
plugins: ['types', 'dnd'],
|
||||
types: {
|
||||
default: {
|
||||
icon: 'ti ti-folder'
|
||||
},
|
||||
html: {
|
||||
icon: 'ti ti-brand-html5 text-danger'
|
||||
},
|
||||
css: {
|
||||
icon: 'ti ti-brand-css3 text-info'
|
||||
},
|
||||
img: {
|
||||
icon: 'ti ti-photo text-success'
|
||||
},
|
||||
js: {
|
||||
icon: 'ti ti-brand-javascript text-warning'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Checkbox
|
||||
// --------------------------------------------------------------------
|
||||
if (checkboxTree.length) {
|
||||
checkboxTree.jstree({
|
||||
core: {
|
||||
themes: {
|
||||
name: theme
|
||||
},
|
||||
data: [
|
||||
{
|
||||
text: 'css',
|
||||
children: [
|
||||
{
|
||||
text: 'app.css',
|
||||
type: 'css'
|
||||
},
|
||||
{
|
||||
text: 'style.css',
|
||||
type: 'css'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'img',
|
||||
state: {
|
||||
opened: true
|
||||
},
|
||||
children: [
|
||||
{
|
||||
text: 'bg.jpg',
|
||||
type: 'img'
|
||||
},
|
||||
{
|
||||
text: 'logo.png',
|
||||
type: 'img'
|
||||
},
|
||||
{
|
||||
text: 'avatar.png',
|
||||
type: 'img'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'js',
|
||||
state: {
|
||||
opened: true
|
||||
},
|
||||
children: [
|
||||
{
|
||||
text: 'jquery.js',
|
||||
type: 'js'
|
||||
},
|
||||
{
|
||||
text: 'app.js',
|
||||
type: 'js'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'index.html',
|
||||
type: 'html'
|
||||
},
|
||||
{
|
||||
text: 'page-one.html',
|
||||
type: 'html'
|
||||
},
|
||||
{
|
||||
text: 'page-two.html',
|
||||
type: 'html'
|
||||
}
|
||||
]
|
||||
},
|
||||
plugins: ['types', 'checkbox', 'wholerow'],
|
||||
types: {
|
||||
default: {
|
||||
icon: 'ti ti-folder'
|
||||
},
|
||||
html: {
|
||||
icon: 'ti ti-brand-html5 text-danger'
|
||||
},
|
||||
css: {
|
||||
icon: 'ti ti-brand-css3 text-info'
|
||||
},
|
||||
img: {
|
||||
icon: 'ti ti-photo text-success'
|
||||
},
|
||||
js: {
|
||||
icon: 'ti ti-brand-javascript text-warning'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Ajax Example
|
||||
// --------------------------------------------------------------------
|
||||
if (ajaxTree.length) {
|
||||
ajaxTree.jstree({
|
||||
core: {
|
||||
themes: {
|
||||
name: theme
|
||||
},
|
||||
data: {
|
||||
url: assetsPath + 'json/jstree-data.json',
|
||||
dataType: 'json',
|
||||
data: function (node) {
|
||||
return {
|
||||
id: node.id
|
||||
};
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: ['types', 'state'],
|
||||
types: {
|
||||
default: {
|
||||
icon: 'ti ti-folder'
|
||||
},
|
||||
html: {
|
||||
icon: 'ti ti-brand-html5 text-danger'
|
||||
},
|
||||
css: {
|
||||
icon: 'ti ti-brand-css3 text-info'
|
||||
},
|
||||
img: {
|
||||
icon: 'ti ti-photo text-success'
|
||||
},
|
||||
js: {
|
||||
icon: 'ti ti-brand-javascript text-warning'
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user