api code global jain
This commit is contained in:
222
public/js/pages/custom/projects/add-project.js
vendored
Normal file
222
public/js/pages/custom/projects/add-project.js
vendored
Normal file
@@ -0,0 +1,222 @@
|
||||
"use strict";
|
||||
|
||||
// Class definition
|
||||
var KTProjectsAdd = function () {
|
||||
// Base elements
|
||||
var _wizardEl;
|
||||
var _formEl;
|
||||
var _wizard;
|
||||
var _avatar;
|
||||
var _validations = [];
|
||||
|
||||
// Private functions
|
||||
var initWizard = function () {
|
||||
// Initialize form wizard
|
||||
_wizard = new KTWizard(_wizardEl, {
|
||||
startStep: 1, // initial active step number
|
||||
clickableSteps: true // allow step clicking
|
||||
});
|
||||
|
||||
// Validation before going to next page
|
||||
_wizard.on('beforeNext', function (wizard) {
|
||||
// Don't go to the next step yet
|
||||
_wizard.stop();
|
||||
|
||||
// Validate form
|
||||
var validator = _validations[wizard.getStep() - 1]; // get validator for currnt step
|
||||
validator.validate().then(function (status) {
|
||||
if (status == 'Valid') {
|
||||
_wizard.goNext();
|
||||
KTUtil.scrollTop();
|
||||
} else {
|
||||
Swal.fire({
|
||||
text: "Sorry, looks like there are some errors detected, please try again.",
|
||||
icon: "error",
|
||||
buttonsStyling: false,
|
||||
confirmButtonText: "Ok, got it!",
|
||||
customClass: {
|
||||
confirmButton: "btn font-weight-bold btn-light"
|
||||
}
|
||||
}).then(function () {
|
||||
KTUtil.scrollTop();
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// Change Event
|
||||
_wizard.on('change', function (wizard) {
|
||||
KTUtil.scrollTop();
|
||||
});
|
||||
}
|
||||
|
||||
// Form Validation
|
||||
var initValidation = function () {
|
||||
// Init form validation rules. For more info check the FormValidation plugin's official documentation:https://formvalidation.io/
|
||||
// Step 1
|
||||
_validations.push(FormValidation.formValidation(
|
||||
_formEl,
|
||||
{
|
||||
fields: {
|
||||
projectname: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'Project name is required'
|
||||
}
|
||||
}
|
||||
},
|
||||
projectowner: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'Project owner is required'
|
||||
}
|
||||
}
|
||||
},
|
||||
customername: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'Customer name is required'
|
||||
}
|
||||
}
|
||||
},
|
||||
phone: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'Phone is required'
|
||||
},
|
||||
phone: {
|
||||
country: 'US',
|
||||
message: 'The value is not a valid US phone number. (e.g 5554443333)'
|
||||
}
|
||||
}
|
||||
},
|
||||
email: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'Email is required'
|
||||
},
|
||||
emailAddress: {
|
||||
message: 'The value is not a valid email address'
|
||||
}
|
||||
}
|
||||
},
|
||||
companywebsite: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'Website URL is required'
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: {
|
||||
trigger: new FormValidation.plugins.Trigger(),
|
||||
bootstrap: new FormValidation.plugins.Bootstrap()
|
||||
}
|
||||
}
|
||||
));
|
||||
|
||||
// Step 2
|
||||
_validations.push(FormValidation.formValidation(
|
||||
_formEl,
|
||||
{
|
||||
fields: {
|
||||
// Step 2
|
||||
communication: {
|
||||
validators: {
|
||||
choice: {
|
||||
min: 1,
|
||||
message: 'Please select at least 1 option'
|
||||
}
|
||||
}
|
||||
},
|
||||
language: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'Please select a language'
|
||||
}
|
||||
}
|
||||
},
|
||||
timezone: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'Please select a timezone'
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: {
|
||||
trigger: new FormValidation.plugins.Trigger(),
|
||||
bootstrap: new FormValidation.plugins.Bootstrap()
|
||||
}
|
||||
}
|
||||
));
|
||||
|
||||
// Step 3
|
||||
_validations.push(FormValidation.formValidation(
|
||||
_formEl,
|
||||
{
|
||||
fields: {
|
||||
address1: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'Address is required'
|
||||
}
|
||||
}
|
||||
},
|
||||
postcode: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'Postcode is required'
|
||||
}
|
||||
}
|
||||
},
|
||||
city: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'City is required'
|
||||
}
|
||||
}
|
||||
},
|
||||
state: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'state is required'
|
||||
}
|
||||
}
|
||||
},
|
||||
country: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: 'Country is required'
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
plugins: {
|
||||
trigger: new FormValidation.plugins.Trigger(),
|
||||
bootstrap: new FormValidation.plugins.Bootstrap()
|
||||
}
|
||||
}
|
||||
));
|
||||
}
|
||||
|
||||
var initAvatar = function () {
|
||||
_avatar = new KTImageInput('kt_projects_add_avatar');
|
||||
}
|
||||
|
||||
return {
|
||||
// public functions
|
||||
init: function () {
|
||||
_wizardEl = KTUtil.getById('kt_projects_add');
|
||||
_formEl = KTUtil.getById('kt_projects_add_form');
|
||||
|
||||
initWizard();
|
||||
initValidation();
|
||||
initAvatar();
|
||||
}
|
||||
};
|
||||
}();
|
||||
|
||||
jQuery(document).ready(function () {
|
||||
KTProjectsAdd.init();
|
||||
});
|
||||
1
public/js/pages/custom/projects/add-project.min.js
vendored
Normal file
1
public/js/pages/custom/projects/add-project.min.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";var KTProjectsAdd=function(){var e,t,o,a=[];return{init:function(){e=KTUtil.getById("kt_projects_add"),t=KTUtil.getById("kt_projects_add_form"),(o=new KTWizard(e,{startStep:1,clickableSteps:!0})).on("beforeNext",function(e){o.stop(),a[e.getStep()-1].validate().then(function(e){"Valid"==e?(o.goNext(),KTUtil.scrollTop()):Swal.fire({text:"Sorry, looks like there are some errors detected, please try again.",icon:"error",buttonsStyling:!1,confirmButtonText:"Ok, got it!",customClass:{confirmButton:"btn font-weight-bold btn-light"}}).then(function(){KTUtil.scrollTop()})})}),o.on("change",function(e){KTUtil.scrollTop()}),a.push(FormValidation.formValidation(t,{fields:{projectname:{validators:{notEmpty:{message:"Project name is required"}}},projectowner:{validators:{notEmpty:{message:"Project owner is required"}}},customername:{validators:{notEmpty:{message:"Customer name is required"}}},phone:{validators:{notEmpty:{message:"Phone is required"},phone:{country:"US",message:"The value is not a valid US phone number. (e.g 5554443333)"}}},email:{validators:{notEmpty:{message:"Email is required"},emailAddress:{message:"The value is not a valid email address"}}},companywebsite:{validators:{notEmpty:{message:"Website URL is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap}})),a.push(FormValidation.formValidation(t,{fields:{communication:{validators:{choice:{min:1,message:"Please select at least 1 option"}}},language:{validators:{notEmpty:{message:"Please select a language"}}},timezone:{validators:{notEmpty:{message:"Please select a timezone"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap}})),a.push(FormValidation.formValidation(t,{fields:{address1:{validators:{notEmpty:{message:"Address is required"}}},postcode:{validators:{notEmpty:{message:"Postcode is required"}}},city:{validators:{notEmpty:{message:"City is required"}}},state:{validators:{notEmpty:{message:"state is required"}}},country:{validators:{notEmpty:{message:"Country is required"}}}},plugins:{trigger:new FormValidation.plugins.Trigger,bootstrap:new FormValidation.plugins.Bootstrap}})),new KTImageInput("kt_projects_add_avatar")}}}();jQuery(document).ready(function(){KTProjectsAdd.init()});
|
||||
288
public/js/pages/custom/projects/list-datatable.js
vendored
Normal file
288
public/js/pages/custom/projects/list-datatable.js
vendored
Normal file
@@ -0,0 +1,288 @@
|
||||
"use strict";
|
||||
// Class definition
|
||||
|
||||
var KTAppsProjectsListDatatable = function() {
|
||||
// Private functions
|
||||
|
||||
// basic demo
|
||||
var _demo = function() {
|
||||
var datatable = $('#kt_datatable').KTDatatable({
|
||||
// datasource definition
|
||||
data: {
|
||||
type: 'remote',
|
||||
source: {
|
||||
read: {
|
||||
url: HOST_URL + '/api/datatables/demos/default.php',
|
||||
},
|
||||
},
|
||||
pageSize: 10, // display 20 records per page
|
||||
serverPaging: true,
|
||||
serverFiltering: true,
|
||||
serverSorting: true,
|
||||
},
|
||||
|
||||
// layout definition
|
||||
layout: {
|
||||
scroll: false, // enable/disable datatable scroll both horizontal and vertical when needed.
|
||||
footer: false, // display/hide footer
|
||||
},
|
||||
|
||||
// column sorting
|
||||
sortable: true,
|
||||
|
||||
pagination: true,
|
||||
|
||||
search: {
|
||||
input: $('#kt_subheader_search_form'),
|
||||
delay: 400,
|
||||
key: 'generalSearch'
|
||||
},
|
||||
|
||||
// columns definition
|
||||
columns: [{
|
||||
field: 'RecordID',
|
||||
title: '#',
|
||||
sortable: 'asc',
|
||||
width: 40,
|
||||
type: 'number',
|
||||
selector: false,
|
||||
textAlign: 'left',
|
||||
template: function(data) {
|
||||
return '<span class="font-weight-bolder">' + data.RecordID + '</span>';
|
||||
}
|
||||
}, {
|
||||
field: 'OrderID',
|
||||
title: 'Customer',
|
||||
width: 250,
|
||||
template: function(data) {
|
||||
var number = KTUtil.getRandomInt(1, 10);
|
||||
var img = number + '.png';
|
||||
|
||||
var skills = [
|
||||
'Angular, React',
|
||||
'Vue, Kendo',
|
||||
'.NET, Oracle, MySQL',
|
||||
'Node, SASS, Webpack',
|
||||
'MangoDB, Java',
|
||||
'HTML5, jQuery, CSS3',
|
||||
'React, Vue',
|
||||
'MangoDB, Node.js'
|
||||
];
|
||||
|
||||
var output = '';
|
||||
if (number < 7) {
|
||||
output = '<div class="d-flex align-items-center">\
|
||||
<div class="symbol symbol-40 symbol-circle symbol-sm">\
|
||||
<img class="" src="assets/media/project-logos/' + img + '" alt="photo"/>\
|
||||
</div>\
|
||||
<div class="ml-3">\
|
||||
<div class="text-dark-75 font-weight-bolder font-size-lg mb-0">' + data.CompanyAgent + '</div>\
|
||||
<a href="#" class="text-muted font-weight-bold text-hover-primary">' +
|
||||
skills[number -1] + '</a>\
|
||||
</div>\
|
||||
</div>';
|
||||
} else {
|
||||
var stateNo = KTUtil.getRandomInt(0, 7);
|
||||
var states = [
|
||||
'success',
|
||||
'primary',
|
||||
'danger',
|
||||
'success',
|
||||
'warning',
|
||||
'dark',
|
||||
'primary',
|
||||
'info'
|
||||
];
|
||||
var state = states[stateNo];
|
||||
|
||||
output = '<div class="d-flex align-items-center">\
|
||||
<div class="symbol symbol-40 symbol-circle symbol-light-' + state + '">\
|
||||
<span class="symbol-label font-size-h4">' + data.CompanyAgent.substring(0, 1) + '</span>\
|
||||
</div>\
|
||||
<div class="ml-3">\
|
||||
<div class="text-dark-75 font-weight-bolder font-size-lg mb-0">' + data.CompanyAgent + '</div>\
|
||||
<a href="#" class="text-muted font-weight-bold text-hover-primary">' +
|
||||
skills[number - 4] + '</a>\
|
||||
</div>\
|
||||
</div>';
|
||||
}
|
||||
|
||||
return output;
|
||||
},
|
||||
}, {
|
||||
field: 'Country',
|
||||
title: 'Country',
|
||||
template: function(row) {
|
||||
var output = '';
|
||||
|
||||
output += '<div class="font-weight-bolder font-size-lg mb-0">' + row.Country + '</div>';
|
||||
output += '<div class="font-weight-bold text-muted">Code: ' + row.ShipCountry + '</div>';
|
||||
|
||||
return output;
|
||||
}
|
||||
}, {
|
||||
field: 'ShipDate',
|
||||
title: 'Ship Date',
|
||||
type: 'date',
|
||||
format: 'MM/DD/YYYY',
|
||||
template: function(row) {
|
||||
var output = '';
|
||||
|
||||
var status = {
|
||||
1: {'title': 'Paid', 'class': ' label-light-primary'},
|
||||
2: {'title': 'Approved', 'class': ' label-light-danger'},
|
||||
3: {'title': 'Pending', 'class': ' label-light-primary'},
|
||||
4: {'title': 'Rejected', 'class': ' label-light-success'}
|
||||
};
|
||||
var index = KTUtil.getRandomInt(1, 4);
|
||||
|
||||
output += '<div class="font-weight-bolder text-primary mb-0">' + row.ShipDate + '</div>';
|
||||
output += '<div class="text-muted">' + status[index].title + '</div>';
|
||||
|
||||
return output;
|
||||
},
|
||||
}, {
|
||||
field: 'CompanyName',
|
||||
title: 'Company Name',
|
||||
template: function(row) {
|
||||
var output = '';
|
||||
|
||||
output += '<div class="font-weight-bold text-muted">' + row.CompanyName + '</div>';
|
||||
|
||||
return output;
|
||||
}
|
||||
}, {
|
||||
field: 'Status',
|
||||
title: 'Status',
|
||||
// callback function support for column rendering
|
||||
template: function(row) {
|
||||
var status = {
|
||||
1: {
|
||||
'title': 'Pending',
|
||||
'class': ' label-light-primary'
|
||||
},
|
||||
2: {
|
||||
'title': 'Delivered',
|
||||
'class': ' label-light-danger'
|
||||
},
|
||||
3: {
|
||||
'title': 'Canceled',
|
||||
'class': ' label-light-primary'
|
||||
},
|
||||
4: {
|
||||
'title': 'Success',
|
||||
'class': ' label-light-success'
|
||||
},
|
||||
5: {
|
||||
'title': 'Info',
|
||||
'class': ' label-light-info'
|
||||
},
|
||||
6: {
|
||||
'title': 'Danger',
|
||||
'class': ' label-light-danger'
|
||||
},
|
||||
7: {
|
||||
'title': 'Warning',
|
||||
'class': ' label-light-warning'
|
||||
},
|
||||
};
|
||||
return '<span class="label label-lg font-weight-bold ' + status[row.Status].class + ' label-inline">' + status[row.Status].title + '</span>';
|
||||
},
|
||||
}, {
|
||||
field: 'Actions',
|
||||
title: 'Actions',
|
||||
sortable: false,
|
||||
width: 130,
|
||||
overflow: 'visible',
|
||||
autoHide: false,
|
||||
template: function() {
|
||||
return '\
|
||||
<div class="dropdown dropdown-inline">\
|
||||
<a href="javascript:;" class="btn btn-sm btn-default btn-text-primary btn-hover-primary btn-icon mr-2" data-toggle="dropdown">\
|
||||
<span class="svg-icon svg-icon-md">\
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="svg-icon">\
|
||||
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\
|
||||
<rect x="0" y="0" width="24" height="24"/>\
|
||||
<path d="M7,3 L17,3 C19.209139,3 21,4.790861 21,7 C21,9.209139 19.209139,11 17,11 L7,11 C4.790861,11 3,9.209139 3,7 C3,4.790861 4.790861,3 7,3 Z M7,9 C8.1045695,9 9,8.1045695 9,7 C9,5.8954305 8.1045695,5 7,5 C5.8954305,5 5,5.8954305 5,7 C5,8.1045695 5.8954305,9 7,9 Z" fill="#000000"/>\
|
||||
<path d="M7,13 L17,13 C19.209139,13 21,14.790861 21,17 C21,19.209139 19.209139,21 17,21 L7,21 C4.790861,21 3,19.209139 3,17 C3,14.790861 4.790861,13 7,13 Z M17,19 C18.1045695,19 19,18.1045695 19,17 C19,15.8954305 18.1045695,15 17,15 C15.8954305,15 15,15.8954305 15,17 C15,18.1045695 15.8954305,19 17,19 Z" fill="#000000" opacity="0.3"/>\
|
||||
</g>\
|
||||
</svg>\
|
||||
</span>\
|
||||
</a>\
|
||||
<div class="dropdown-menu dropdown-menu-sm dropdown-menu-right">\
|
||||
<ul class="navi flex-column navi-hover py-2">\
|
||||
<li class="navi-header font-weight-bolder text-uppercase font-size-xs text-primary pb-2">\
|
||||
Choose an action:\
|
||||
</li>\
|
||||
<li class="navi-item">\
|
||||
<a href="#" class="navi-link">\
|
||||
<span class="navi-icon"><i class="la la-print"></i></span>\
|
||||
<span class="navi-text">Print</span>\
|
||||
</a>\
|
||||
</li>\
|
||||
<li class="navi-item">\
|
||||
<a href="#" class="navi-link">\
|
||||
<span class="navi-icon"><i class="la la-copy"></i></span>\
|
||||
<span class="navi-text">Copy</span>\
|
||||
</a>\
|
||||
</li>\
|
||||
<li class="navi-item">\
|
||||
<a href="#" class="navi-link">\
|
||||
<span class="navi-icon"><i class="la la-file-excel-o"></i></span>\
|
||||
<span class="navi-text">Excel</span>\
|
||||
</a>\
|
||||
</li>\
|
||||
<li class="navi-item">\
|
||||
<a href="#" class="navi-link">\
|
||||
<span class="navi-icon"><i class="la la-file-text-o"></i></span>\
|
||||
<span class="navi-text">CSV</span>\
|
||||
</a>\
|
||||
</li>\
|
||||
<li class="navi-item">\
|
||||
<a href="#" class="navi-link">\
|
||||
<span class="navi-icon"><i class="la la-file-pdf-o"></i></span>\
|
||||
<span class="navi-text">PDF</span>\
|
||||
</a>\
|
||||
</li>\
|
||||
</ul>\
|
||||
</div>\
|
||||
</div>\
|
||||
<a href="javascript:;" class="btn btn-sm btn-default btn-text-primary btn-hover-primary btn-icon mr-2" title="Edit details">\
|
||||
<span class="svg-icon svg-icon-md">\
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">\
|
||||
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\
|
||||
<rect x="0" y="0" width="24" height="24"/>\
|
||||
<path d="M12.2674799,18.2323597 L12.0084872,5.45852451 C12.0004303,5.06114792 12.1504154,4.6768183 12.4255037,4.38993949 L15.0030167,1.70195304 L17.5910752,4.40093695 C17.8599071,4.6812911 18.0095067,5.05499603 18.0083938,5.44341307 L17.9718262,18.2062508 C17.9694575,19.0329966 17.2985816,19.701953 16.4718324,19.701953 L13.7671717,19.701953 C12.9505952,19.701953 12.2840328,19.0487684 12.2674799,18.2323597 Z" fill="#000000" fill-rule="nonzero" transform="translate(14.701953, 10.701953) rotate(-135.000000) translate(-14.701953, -10.701953) "/>\
|
||||
<path d="M12.9,2 C13.4522847,2 13.9,2.44771525 13.9,3 C13.9,3.55228475 13.4522847,4 12.9,4 L6,4 C4.8954305,4 4,4.8954305 4,6 L4,18 C4,19.1045695 4.8954305,20 6,20 L18,20 C19.1045695,20 20,19.1045695 20,18 L20,13 C20,12.4477153 20.4477153,12 21,12 C21.5522847,12 22,12.4477153 22,13 L22,18 C22,20.209139 20.209139,22 18,22 L6,22 C3.790861,22 2,20.209139 2,18 L2,6 C2,3.790861 3.790861,2 6,2 L12.9,2 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"/>\
|
||||
</g>\
|
||||
</svg>\
|
||||
</span>\
|
||||
</a>\
|
||||
<a href="javascript:;" class="btn btn-sm btn-default btn-text-primary btn-hover-primary btn-icon" title="Delete">\
|
||||
<span class="svg-icon svg-icon-md">\
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">\
|
||||
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\
|
||||
<rect x="0" y="0" width="24" height="24"/>\
|
||||
<path d="M6,8 L6,20.5 C6,21.3284271 6.67157288,22 7.5,22 L16.5,22 C17.3284271,22 18,21.3284271 18,20.5 L18,8 L6,8 Z" fill="#000000" fill-rule="nonzero"/>\
|
||||
<path d="M14,4.5 L14,4 C14,3.44771525 13.5522847,3 13,3 L11,3 C10.4477153,3 10,3.44771525 10,4 L10,4.5 L5.5,4.5 C5.22385763,4.5 5,4.72385763 5,5 L5,5.5 C5,5.77614237 5.22385763,6 5.5,6 L18.5,6 C18.7761424,6 19,5.77614237 19,5.5 L19,5 C19,4.72385763 18.7761424,4.5 18.5,4.5 L14,4.5 Z" fill="#000000" opacity="0.3"/>\
|
||||
</g>\
|
||||
</svg>\
|
||||
</span>\
|
||||
</a>\
|
||||
';
|
||||
},
|
||||
}]
|
||||
});
|
||||
};
|
||||
|
||||
return {
|
||||
// public functions
|
||||
init: function() {
|
||||
_demo();
|
||||
},
|
||||
};
|
||||
}();
|
||||
|
||||
jQuery(document).ready(function() {
|
||||
KTAppsProjectsListDatatable.init();
|
||||
});
|
||||
1
public/js/pages/custom/projects/list-datatable.min.js
vendored
Normal file
1
public/js/pages/custom/projects/list-datatable.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user