spark-property-manager
Version:
Spark Real Estate Management Application
425 lines (405 loc) • 16 kB
JavaScript
var table;
var workId;
$(function(){
feather.replace()
$(".manager-content-header").click(function () {
$header = $(this);
//getting the next element
$content = $header.next();
//open up the content needed - toggle the slide- if visible, slide up, if not slidedown.
$content.slideToggle(500, function () {
//execute this after slideToggle is done
//change text of header based on visibility of content div
const managerContentHeaderIcon = $('#manager-content-header-icon');
if($content.is(":visible")) {
managerContentHeaderIcon.html(feather.icons['minus-circle'].toSvg());
// headerIcon.replaceWith(feather.icons['minus-circle'].toSvg());
} else {
managerContentHeaderIcon.html(feather.icons['plus-circle'].toSvg());
}
});
});
$('#nav-dashboard').removeClass('active');
$('#nav-expense').removeClass('active');
$('#nav-import').removeClass('active');
$('#nav-work').addClass('active');
$('#nav-vendor').removeClass('active');
$('#nav-tenant').removeClass('active');
$('#nav-property').removeClass('active');
$('#nav-unit').removeClass('active');
$('#nav-payment').removeClass('active');
$('#nav-user').removeClass('active');
$('#property-select').find('option').remove();
$('#unit-select').find('option').remove();
$('#vendor-select').find('option').remove();
$.get("/properties", function(data, status){
console.log(data.data);
$('#property-select').append('<option>Select Property</option>');
$.each(data.data, function(key, value){
console.log(value);
console.log(value.id);
console.log(value.address_street);
$('#property-select').append('<option value=' + value.id + '>'
+ value.address_street + ', '
+ value.address_city + ', '
+ value.address_state + ' '
+ value.address_zip
+ '</option>');
});
if(data.data.length > 0) {
$('#property-select option:first').attr("selected",true);
}
//$('#property-select').val($('#property-select option:first').val());
});
$('#property-select').on('change', function() {
$('#unit-select').find('option').remove();
$('#unit-select').append('<option>Select Unit</option>');
if($(this).val() !== 'Select Property') {
$.get("/properties/" + $(this).val() + "/units", function(data, status){
$.each(data.data[0].PropertyUnits, function(key, value){
$('#unit-select').append('<option value=' + value.id + '>' + value.name + '</option>');
});
if(data.data && data.data.length === 0) {
$('#unit-select').val($('#unit-select option:first').val()).change();
}
});
}
});
$.get("/vendors", function(data, status){
console.log(data.data);
$('#vendor-select').append('<option>Select Vendor</option>');
$.each(data.data, function(key, value){
console.log(value);
console.log(value.id);
$('#vendor-select').append('<option value=' + value.id + '>'
+ value.name
+ '</option>');
});
if(data.data.length > 0) {
$('#vendor-select option:first').attr("selected",true);
}
});
$('#vendor-select').on('change', function() {
if($(this).val() !== 'Select Vendor') {
$.get("/vendors/" + $(this).val(), function(data, status){
$('#name-text').val(data.name);
$('#phone-text').val(data.phone);
$('#email-text').val(data.email);
});
}
});
$('#submit-button').on('click', function() {
var token = document.querySelector('meta[name="csrf-token"]').getAttribute('content');
var unitId = $('#unit-select').val();
var vendorId = $('#vendor-select').val();
var descriptionText = $('#description-text').val();
var statusText = $('#status-select').val();
var estimationAmount = $('#estimation-text').val();
var name = $('#name-text').val();
var phoneNumber = $('#phone-text').val();
var emailAddress = $('#email-text').val();
var startDate = $('#work-start-date').datepicker({ dateFormat: 'yyyy-mm-dd' }).val();
var endDate = $('#work-end-date').datepicker({ dateFormat: 'yyyy-mm-dd' }).val();
if(vendorId === 'Select Vendor') {
vendorId = null;
}
if( unitId && estimationAmount && descriptionText ) {
if(workId) {
$.ajax({
url:"/works/"+workId,
type: "PUT",
data: JSON.stringify({
unit_id: unitId,
vendor_id: vendorId,
description: descriptionText,
status: statusText,
estimation: estimationAmount,
vendor_name: name,
vendor_phone: phoneNumber,
vendor_email: emailAddress,
start_date: startDate,
end_date: endDate
}),
contentType: "application/json; charset=utf-8",
headers: { "CSRF-Token": token },
dataType: "json",
statusCode: {
200: function() {
table.api().ajax.url("/works").load();
$('#property-select option:selected').prop('selected', false).change();
$('#unit-select option:selected').prop('selected', false).change();
$('#status-select option:selected').prop('selected', false).change();
$('#vendor-select option:selected').prop('selected', false).change();
$('#description-text').val('');
$('#estimation-text').val('');
$('#name-text').val('');
$('#phone-text').val('');
$('#email-text').val('');
$('#work-start-date').datepicker('setDate', null);
$('#work-end-date').datepicker('setDate', null);
workId = null;
// refreshTable(table, false);
rows_selected=[];
table.api().clear();
table.api().ajax.reload();
$("html, body").animate({ scrollTop: $(document).height() }, "slow");
},
400: function(response) {
resultPopup(response);
},
401: function() {
location.reload();
},
500: function(response) {
resultPopup(response);
}
}
});
} else {
$.ajax({
url:"/works/",
type: "POST",
data: JSON.stringify({
unit_id: unitId,
vendor_id: vendorId,
description: descriptionText,
status: statusText,
estimation: estimationAmount,
vendor_name: name,
vendor_phone: phoneNumber,
vendor_email: emailAddress,
start_date: startDate,
end_date: endDate
}),
contentType: "application/json; charset=utf-8",
headers: { "CSRF-Token": token },
dataType: "json",
statusCode: {
200: function() {
table.api().ajax.url("/works").load();
$('#property-select option:selected').prop('selected', false).change();
$('#unit-select option:selected').prop('selected', false).change();
$('#status-select option:selected').prop('selected', false).change();
$('#vendor-select option:selected').prop('selected', false).change();
$('#description-text').val('');
$('#estimation-text').val('');
$('#name-text').val('');
$('#phone-text').val('');
$('#email-text').val('');
$('#work-start-date').datepicker('setDate', null);
$('#work-end-date').datepicker('setDate', null);
$("html, body").animate({ scrollTop: $(document).height() }, "slow");
},
400: function(response) {
resultPopup(response);
},
401: function() {
location.reload();
},
500: function(response) {
resultPopup(response);
}
}
});
}
} else {
alert('Property Unit, Description and Estimation are required!');
}
$('#vendor-select').find('option').remove();
$.get("/vendors", function(data, status){
console.log(data.data);
$('#vendor-select').append('<option>Select Vendor</option>');
$.each(data.data, function(key, value){
console.log(value);
console.log(value.id);
$('#vendor-select').append('<option value=' + value.id + '>'
+ value.name
+ '</option>');
});
if(data.data.length > 0) {
$('#vendor-select option:first').attr("selected",true);
}
});
});
table = $('#works').dataTable({
"ajax": "/works",
"columns": [
{ data: null,
searchable: false,
orderable: false,
width: '4%',
className: 'dt-body-center',
render: function () {
return '<input type="checkbox">';
}
},
{ data: 'id', width: '8%', className: 'dt-body-center' },
{ data: 'PropertyUnit',
width: '10%',
className: 'dt-body-center',
render: function (PropertyUnit) {
return PropertyUnit.Property.address_street + ' ' + PropertyUnit.name;
}
},
{ data: 'description', className: 'dt-body-center' },
{ data: 'status', className: 'dt-body-center' },
{ data: 'estimation', className: 'dt-body-center' },
{ data: 'scheduled_date', className: 'dt-body-center' },
{ data: 'start_date', className: 'dt-body-center' },
{ data: 'end_date', className: 'dt-body-center' },
{ data: 'Vendor',
className: 'dt-body-center',
render: function(Vendor) {
if(Vendor && Vendor.name) {
return Vendor.name;
} else {
return '';
}
}
},
{ data: 'Vendor',
className: 'dt-body-center',
render: function (Vendor) {
if(Vendor && Vendor.phone){
return '<a href="tel:' + Vendor.phone + '">' + Vendor.phone + '</a>';
} else {
return '';
}
}
},
{ data: 'Vendor',
width : '10%',
className: 'dt-body-center',
render: function (Vendor) {
if(Vendor && Vendor.email) {
return '<a href="mailto:' + Vendor.email + '">' + Vendor.email + '</a>';
} else {
return '';
}
}
}
],
"order": [[ 6, "desc" ]],
"processing": true,
//"serverSide": true,
"paging": true,
"searching": true,
"pagingType": "full_numbers",
"scrollX": true
}
);
// Handle click on checkbox
$('#works tbody').on('click', 'input[type="checkbox"]', function(e){
var $row = $(this).closest('tr');
// Get row data
var data = table.api().row($row).data();
// Determine whether row ID is in the list of selected row IDs
var index = $.inArray(data, rows_selected);
// If checkbox is checked and row ID is not in list of selected row IDs
if(this.checked && index === -1){
rows_selected.push(data);
// Otherwise, if checkbox is not checked and row ID is in list of selected row IDs
} else if (!this.checked && index !== -1){
rows_selected.splice(index, 1);
}
if(this.checked){
$row.addClass('selected');
} else {
$row.removeClass('selected');
}
// Update state of "Select all" control
updateDataTableSelectAllCtrl(table);
// Prevent click event from propagating to parent
e.stopPropagation();
});
// Handle click on table cells with checkboxes
$('#works').on('click', 'tbody td, thead th:first-child', function(){
$(this).parent().find('input[type="checkbox"]').trigger('click');
});
// Handle click on "Select all" control
$('thead input[name="select_all"]', table.api().table().container()).on('click', function(e){
if(this.checked){
$('#works tbody input[type="checkbox"]:not(:checked)').trigger('click');
} else {
$('#works tbody input[type="checkbox"]:checked').trigger('click');
}
// Prevent click event from propagating to parent
e.stopPropagation();
});
// Handle table draw event
table.on('draw', function(){
// Update state of "Select all" control
updateDataTableSelectAllCtrl(table);
});
$('#work-start-date' ).datepicker({
onSelect: function (date, instance) {
}
});
$('#work-end-date' ).datepicker({
onSelect: function (date, instance) {
}
});
});
$(document).on('click', '#delete-button', function(){
if(0 !== rows_selected.length) {
var token = document.querySelector('meta[name="csrf-token"]').getAttribute('content');
$.each(rows_selected, function(key, value){
$.ajax({
url:"/works/"+value.id,
type: "DELETE",
// data: JSON.stringify({"ids": ids}),
contentType: "application/json; charset=utf-8",
headers: { "CSRF-Token": token },
dataType: "json",
statusCode: {
200: function() {
rows_selected=[];
refreshTable(table, true);
},
400: function(response) {
resultPopup(response);
},
401: function() {
location.reload();
},
500: function(response) {
resultPopup(response);
}
}
});
});
}
});
$(document).on('click', '#edit-button', function(){
if(1 === rows_selected.length) {
$.get("/works/"+rows_selected[0].id, function(data, status){
if("success" === status) {
$.get("/units/"+data.unit_id, function(udata, ustatus){
if("success" === ustatus) {
$('#property-select').val(udata.property_id).change();
$('#status-select').val(data.status).change();
$('#description-text').val(data.description);
$('#estimation-text').val(data.estimation);
if(data.start_date) {
var startDate = data.start_date.split('T')[0].split('-');
$('#work-start-date').datepicker('setDate', new Date(startDate[0], startDate[1]-1, startDate[2]));
}
if(data.end_date) {
var endDate = data.end_date.split('T')[0].split('-');
$('#work-end-date').datepicker('setDate', new Date(endDate[0], endDate[1]-1, endDate[2]));
}
workId = rows_selected[0].id;
window.setTimeout(function(){
console.log(">>>>>" + data.unit_id);
$('#unit-select').val(data.unit_id).change();
if(data.Vendor) {
$('#vendor-select').val(data.vendor_id).change();
}
}, 500);
}
});
$("html, body").animate({ scrollTop: 0 }, "slow");
}
});
}
});