2019-09-25 18:06:42 +00:00
|
|
|
import ngModule from '../module';
|
2019-11-18 15:31:37 +00:00
|
|
|
import Section from 'salix/components/section';
|
2019-09-25 18:06:42 +00:00
|
|
|
|
2019-11-18 15:31:37 +00:00
|
|
|
class Controller extends Section {
|
2019-10-24 10:44:36 +00:00
|
|
|
constructor($element, $, vnWeekDays) {
|
|
|
|
super($element, $);
|
2019-10-23 15:38:35 +00:00
|
|
|
this.vnWeekDays = vnWeekDays;
|
2022-05-11 12:53:52 +00:00
|
|
|
this.editMode = 'exclude';
|
2022-05-12 11:53:13 +00:00
|
|
|
this.exclusions;
|
|
|
|
this.days;
|
2020-06-18 10:43:33 +00:00
|
|
|
}
|
2019-09-25 18:06:42 +00:00
|
|
|
|
2020-06-18 10:43:33 +00:00
|
|
|
$onInit() {
|
2019-09-25 18:06:42 +00:00
|
|
|
this.refresh();
|
|
|
|
}
|
|
|
|
|
2021-11-04 06:56:12 +00:00
|
|
|
get path() {
|
|
|
|
return `Zones/${this.$params.id}/events`;
|
|
|
|
}
|
|
|
|
|
|
|
|
get exclusionsPath() {
|
|
|
|
return `Zones/${this.$params.id}/exclusions`;
|
|
|
|
}
|
|
|
|
|
2019-09-25 18:06:42 +00:00
|
|
|
refresh() {
|
2021-11-02 06:55:35 +00:00
|
|
|
this.$.data = null;
|
2021-11-08 10:30:00 +00:00
|
|
|
this.$.$applyAsync(() => {
|
|
|
|
const params = {
|
|
|
|
zoneFk: this.$params.id,
|
|
|
|
started: this.$.calendar.firstDay,
|
|
|
|
ended: this.$.calendar.lastDay
|
|
|
|
};
|
|
|
|
|
|
|
|
this.$http.get(`Zones/getEventsFiltered`, {params}).then(res => {
|
|
|
|
const data = res.data;
|
|
|
|
this.$.data = data;
|
|
|
|
});
|
2019-10-23 15:38:35 +00:00
|
|
|
});
|
2019-09-25 18:06:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
formatWdays(weekDays) {
|
|
|
|
if (!weekDays) return;
|
|
|
|
|
2019-11-18 15:31:37 +00:00
|
|
|
let abrWdays = weekDays
|
|
|
|
.split(',')
|
|
|
|
.map(wday => this.vnWeekDays.map[wday].localeAbr);
|
2019-09-25 18:06:42 +00:00
|
|
|
|
|
|
|
return abrWdays.length < 7
|
|
|
|
? abrWdays.join(', ')
|
2019-11-18 15:31:37 +00:00
|
|
|
: this.$t('Everyday');
|
2019-09-25 18:06:42 +00:00
|
|
|
}
|
|
|
|
|
2019-11-19 12:49:10 +00:00
|
|
|
onSelection(days, type, weekday, events, exclusions) {
|
2019-10-23 15:38:35 +00:00
|
|
|
if (this.editMode == 'include') {
|
2019-11-19 12:49:10 +00:00
|
|
|
if (events.length)
|
|
|
|
this.edit(events[0]);
|
2022-05-12 11:53:13 +00:00
|
|
|
else
|
2020-05-08 11:23:06 +00:00
|
|
|
this.create(type, days, weekday);
|
2019-10-23 15:38:35 +00:00
|
|
|
} else {
|
2022-05-11 12:53:52 +00:00
|
|
|
this.selected = {
|
|
|
|
type: 'all',
|
|
|
|
dated: days[0]
|
|
|
|
};
|
2022-05-12 11:53:13 +00:00
|
|
|
this.exclusions = exclusions;
|
|
|
|
this.days = days;
|
|
|
|
|
2022-05-11 12:53:52 +00:00
|
|
|
this.$.excludeDialog.show();
|
2019-10-23 15:38:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onEditClick(row, event) {
|
2019-09-25 18:06:42 +00:00
|
|
|
if (event.defaultPrevented) return;
|
2019-10-23 15:38:35 +00:00
|
|
|
this.edit(row);
|
|
|
|
}
|
2019-09-25 18:06:42 +00:00
|
|
|
|
2019-10-23 15:38:35 +00:00
|
|
|
edit(row) {
|
2019-09-25 18:06:42 +00:00
|
|
|
this.isNew = false;
|
|
|
|
this.selected = angular.copy(row);
|
2019-11-18 15:31:37 +00:00
|
|
|
this.selected.wdays = this.vnWeekDays.fromSet(row.weekDays);
|
2022-05-12 11:53:13 +00:00
|
|
|
this.$.includeDialog.show();
|
2019-09-25 18:06:42 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 11:23:06 +00:00
|
|
|
create(type, days, weekday) {
|
2019-09-25 18:06:42 +00:00
|
|
|
this.isNew = true;
|
2019-10-01 11:45:43 +00:00
|
|
|
|
2019-10-23 15:38:35 +00:00
|
|
|
if (type == 'weekday') {
|
2019-10-01 11:45:43 +00:00
|
|
|
let wdays = [];
|
2020-05-08 11:23:06 +00:00
|
|
|
if (weekday) wdays[weekday] = true;
|
2019-11-18 15:31:37 +00:00
|
|
|
|
|
|
|
this.selected = {
|
|
|
|
type: 'indefinitely',
|
|
|
|
wdays
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
this.selected = {
|
|
|
|
type: 'day',
|
|
|
|
dated: days[0]
|
|
|
|
};
|
|
|
|
}
|
2019-10-01 11:45:43 +00:00
|
|
|
|
2022-05-12 11:53:13 +00:00
|
|
|
this.$.includeDialog.show();
|
2019-09-25 18:06:42 +00:00
|
|
|
}
|
|
|
|
|
2019-10-30 15:57:14 +00:00
|
|
|
onIncludeResponse(response) {
|
|
|
|
switch (response) {
|
|
|
|
case 'accept': {
|
2019-10-23 15:38:35 +00:00
|
|
|
let selected = this.selected;
|
2019-11-18 15:31:37 +00:00
|
|
|
let type = selected.type;
|
2019-09-25 18:06:42 +00:00
|
|
|
|
2019-11-18 15:31:37 +00:00
|
|
|
selected.weekDays = this.vnWeekDays.toSet(selected.wdays);
|
2019-09-25 18:06:42 +00:00
|
|
|
|
2019-11-18 15:31:37 +00:00
|
|
|
if (type == 'day')
|
2019-10-23 15:38:35 +00:00
|
|
|
selected.weekDays = '';
|
2019-11-18 15:31:37 +00:00
|
|
|
else
|
|
|
|
selected.dated = null;
|
|
|
|
|
|
|
|
if (type != 'range') {
|
|
|
|
selected.started = null;
|
|
|
|
selected.ended = null;
|
2019-09-25 18:06:42 +00:00
|
|
|
}
|
|
|
|
|
2019-10-23 15:38:35 +00:00
|
|
|
let req;
|
2019-09-25 18:06:42 +00:00
|
|
|
|
2019-10-23 15:38:35 +00:00
|
|
|
if (this.isNew)
|
|
|
|
req = this.$http.post(this.path, selected);
|
|
|
|
else
|
|
|
|
req = this.$http.put(`${this.path}/${selected.id}`, selected);
|
2019-09-25 18:06:42 +00:00
|
|
|
|
2019-10-30 15:57:14 +00:00
|
|
|
return req.then(() => {
|
2019-10-23 15:38:35 +00:00
|
|
|
this.selected = null;
|
|
|
|
this.isNew = null;
|
|
|
|
this.refresh();
|
|
|
|
});
|
2019-10-30 15:57:14 +00:00
|
|
|
}
|
2019-11-18 15:31:37 +00:00
|
|
|
case 'delete':
|
2019-10-30 15:57:14 +00:00
|
|
|
return this.onDelete(this.selected.id)
|
|
|
|
.then(response => response == 'accept');
|
2019-10-23 15:38:35 +00:00
|
|
|
}
|
2019-09-25 18:06:42 +00:00
|
|
|
}
|
|
|
|
|
2022-05-12 11:53:13 +00:00
|
|
|
onExcludeResponse(response) {
|
|
|
|
switch (response) {
|
|
|
|
case 'accept': {
|
|
|
|
let selected = this.selected;
|
|
|
|
let type = selected.type;
|
|
|
|
if (type == 'all')
|
|
|
|
this.exclusionCreate(this.days);
|
|
|
|
else {
|
|
|
|
const params = [{
|
|
|
|
zoneExclusionFk: 1,
|
|
|
|
geoFk: 1
|
|
|
|
}];
|
|
|
|
this.$http.post(`ZoneExclusionGeos`, params).then(() => this.refresh());
|
|
|
|
}
|
|
|
|
// inserta en zoneExclusionGeo el zoneGeo seleccionado
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
case 'delete':
|
|
|
|
return this.exclusionDelete(this.exclusions);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-23 15:38:35 +00:00
|
|
|
onDeleteClick(id, event) {
|
|
|
|
if (event.defaultPrevented) return;
|
2019-09-25 18:06:42 +00:00
|
|
|
event.preventDefault();
|
2019-10-23 15:38:35 +00:00
|
|
|
this.onDelete(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
onDelete(id) {
|
2019-10-30 15:57:14 +00:00
|
|
|
return this.$.confirm.show(
|
|
|
|
response => this.onDeleteResponse(response, id));
|
2019-09-25 18:06:42 +00:00
|
|
|
}
|
|
|
|
|
2019-10-30 15:57:14 +00:00
|
|
|
onDeleteResponse(response, id) {
|
|
|
|
if (response != 'accept' || !id) return;
|
|
|
|
return this.$http.delete(`${this.path}/${id}`)
|
|
|
|
.then(() => this.refresh());
|
2019-09-25 18:06:42 +00:00
|
|
|
}
|
2019-10-23 15:38:35 +00:00
|
|
|
|
|
|
|
exclusionCreate(days) {
|
2019-11-18 15:31:37 +00:00
|
|
|
let exclusions = days.map(dated => {
|
|
|
|
return {dated};
|
2019-10-23 15:38:35 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
this.$http.post(this.exclusionsPath, exclusions)
|
|
|
|
.then(() => this.refresh());
|
|
|
|
}
|
|
|
|
|
2019-11-19 12:49:10 +00:00
|
|
|
exclusionDelete(exclusions) {
|
|
|
|
let reqs = [];
|
2019-10-23 15:38:35 +00:00
|
|
|
|
2019-11-19 12:49:10 +00:00
|
|
|
for (let exclusion of exclusions) {
|
|
|
|
if (!exclusion.id) continue;
|
|
|
|
let path = `${this.exclusionsPath}/${exclusion.id}`;
|
|
|
|
reqs.push(this.$http.delete(path));
|
2019-10-23 15:38:35 +00:00
|
|
|
}
|
|
|
|
|
2019-11-19 12:49:10 +00:00
|
|
|
this.$q.all(reqs)
|
2019-10-23 15:38:35 +00:00
|
|
|
.then(() => this.refresh());
|
|
|
|
}
|
2022-05-11 12:53:52 +00:00
|
|
|
|
|
|
|
onSearch(params) {
|
2022-05-12 11:53:13 +00:00
|
|
|
if (this.selected.type == 'specificLocations') {
|
|
|
|
this.$.model.applyFilter({}, params).then(() => {
|
|
|
|
const data = this.$.model.data;
|
|
|
|
this.$.treeview.data = data;
|
|
|
|
});
|
|
|
|
}
|
2022-05-11 12:53:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onFetch(item) {
|
|
|
|
const params = item ? {parentId: item.id} : null;
|
|
|
|
return this.$.model.applyFilter({}, params)
|
|
|
|
.then(() => this.$.model.data);
|
|
|
|
}
|
|
|
|
|
|
|
|
onSort(a, b) {
|
|
|
|
if (b.selected !== a.selected) {
|
|
|
|
if (a.selected == null)
|
|
|
|
return 1;
|
|
|
|
if (b.selected == null)
|
|
|
|
return -1;
|
|
|
|
return b.selected - a.selected;
|
|
|
|
}
|
|
|
|
|
|
|
|
return a.name.localeCompare(b.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
exprBuilder(param, value) {
|
|
|
|
switch (param) {
|
|
|
|
case 'search':
|
|
|
|
return {name: {like: `%${value}%`}};
|
|
|
|
}
|
|
|
|
}
|
2019-09-25 18:06:42 +00:00
|
|
|
}
|
2019-10-24 10:44:36 +00:00
|
|
|
Controller.$inject = ['$element', '$scope', 'vnWeekDays'];
|
2019-09-25 18:06:42 +00:00
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnZoneEvents', {
|
2019-09-25 18:06:42 +00:00
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller
|
|
|
|
});
|