!function (factory) {
if (typeof define === 'function' && define.amd) {
define(['modules/editor'], function (Editor) {
return factory(window.jQuery, Editor);
});
}
}(function ($, Editor) {
'use strict';
var layouts = {
title: GetTextByKey('P_LAYOUTS', 'Layouts'),
description: GetTextByKey('P_LAYOUTS', 'Layouts'),
version: '1.0',
isteam: false,
changed: false,
ui: {}
};
function createHeader() {
var header = $('
');
header.append($('').text(layouts.title));
setPageTitle(layouts.title, true);
var search_bar = $('');
header.append(search_bar);
search_bar.append('');
var searchinputcontrol = $('');
layouts.searchInput = searchinputcontrol;
search_bar.append(searchinputcontrol);
searchinputcontrol.keydown(function (e) {
if (e.keyCode == 13 || e.keyCode == 9)
layouts.refresh();
});
var btnRefresh = $('').val(GetTextByKey("P_IPT_SEARCH", "Search"));
search_bar.append(btnRefresh);
btnRefresh.click(function () {
layouts.refresh();
});
var func = $('');
var iconAdd = $('').text(GetTextByKey("P_IPT_ADD", "Add")).on('click', function () {
layouts.onadd();
});
func.append(iconAdd);
var iconEdit = $('').text(GetTextByKey("P_IPT_EDIT", "Edit")).on('click', function () {
if (layouts.grid.selectedIndex >= 0) {
layouts.onedit();
}
}).prop('disabled', true);
layouts.ui.edit = iconEdit;
func.append(iconEdit);
var iconRefresh = $('').text(GetTextByKey("P_IPT_REFRESH", "Refresh")).on('click', function () {
layouts.refresh();
});
func.append(iconRefresh);
header.append(func)
return header;
}
function InitGridData() {
var div_grid = $('');
var grid_dt = new GridView(div_grid);
layouts.grid = grid_dt;
grid_dt.lang = {
all: GetTextByKey("P_GRID_ALL", "(All)"),
ok: GetTextByKey("P_GRID_OK", "OK"),
reset: GetTextByKey("P_GRID_RESET", "Reset")
};
grid_dt.canMultiSelect = false;
grid_dt.columns = [
{
caption: GetTextByKey('P_LAYOUT_NAME', 'Layout Name'),
key: 'Name',
width: 200,
isurl: true,
events: {
onclick: function () {
doedit(this.Id);
}
},
styleFilter: function () {
return {
color: 'initial',
cursor: 'pointer'
};
}
},
{
caption: GetTextByKey('P_LAYOUT_NOTES', 'Notes'),
key: 'Notes',
width: 300
},
{
isurl: true,
resizable: false,
orderable: false,
sortable: false,
width: 40,
align: 'center',
text: '\uf044',
events: {
onclick: function () {
doedit(this.Id);
}
},
classFilter: function () { return 'icon-col' },
attrs: {
title: GetTextByKey('P_WOS_EDIT', 'Edit')
}
},
{
isurl: true,
resizable: false,
orderable: false,
sortable: false,
width: 40,
align: 'center',
text: '\uf00d',
events: {
onclick: function () {
var id = this.Id;
showConfirm(
GetTextByKey('P_LAYOUT_DELETETIPS', 'Are you sure you want to delete the layout?'),
GetTextByKey('P_LAYOUTS', 'Layouts'),
function () {
inspectionrequest('DeleteInspectLayout',
JSON.stringify([layouts.isteam ? 1 : 0, id]),
function (data) {
if (data == 'OK') {
layouts.refresh();
} else {
showAlert(data != 'Failed' ? data : GetTextByKey('P_LAYOUT_FAILEDDELETE', 'Failed to delete this layout.'), GetTextByKey('P_LAYOUTS', 'Layouts'));
}
},
function () {
showAlert(GetTextByKey('P_LAYOUT_FAILEDDELETE', 'Failed to delete this layout.'), GetTextByKey('P_LAYOUTS', 'Layouts'));
}
);
}
);
}
},
classFilter: function () { return 'icon-col' },
attrs: {
title: GetTextByKey('P_WOS_DELETE', 'Delete')
}
}
];
grid_dt.init();
grid_dt.rowdblclick = layouts.onedit;
grid_dt.selectedrowchanged = function (rowindex) {
layouts.ui.edit.prop('disabled', rowindex >= 0);
}
return div_grid;
}
Object.defineProperty(layouts, 'createContent', {
value: function (isteam) {
layouts.isteam = isteam && isteam[0] == '1';
var content = $('');
content.append(createHeader());
content.append(InitGridData());
content.append('');
layouts.refresh();
return content;
}
});
Object.defineProperty(layouts, 'refresh', {
value: function () {
layouts.changed = false;
showmaskbg(true);
inspectionrequest('GetInspectLayouts', encodeURIComponent(
JSON.stringify([layouts.isteam ? 1 : 0, layouts.searchInput.val()])
), function (data) {
if ($.isArray(data)) {
layouts.grid.setData(data.map(function (i) { return { Values: i } }));
} else {
showAlert(data, GetTextByKey('P_LAYOUTS', 'Layouts'));
}
showmaskbg(false);
}, function () {
showmaskbg(false);
});
}
});
function appendToolbar(ele) {
ele.append(
$('').append(
$('').append(
$(''),
$(''),
$(''),
$(''),
$('')
),
$('').append(
$(''),
$(''),
$(''),
$(''),
$(''),
$(''),
$(''),
$('')
),
$(''),
$(''),
$(''),
$(''),
$(''),
$(''),
$('