salix/modules/zone/front/events/index.js

291 lines
7.3 KiB
JavaScript
Raw Normal View History

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';
2022-05-16 05:17:29 +00:00
import './style.scss';
2019-09-25 18:06:42 +00:00
2019-11-18 15:31:37 +00:00
class Controller extends Section {
constructor($element, $, vnWeekDays) {
super($element, $);
2019-10-23 15:38:35 +00:00
this.vnWeekDays = vnWeekDays;
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`;
}
2022-05-12 13:02:07 +00:00
get checked() {
const geos = this.$.model.data || [];
const checkedLines = [];
for (let geo of geos) {
if (geo.checked)
checkedLines.push(geo);
}
return checkedLines;
}
2019-09-25 18:06:42 +00:00
refresh() {
2021-11-02 06:55:35 +00:00
this.$.data = null;
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
this.create(type, days, weekday);
2019-10-23 15:38:35 +00:00
} else {
2022-05-16 05:17:29 +00:00
this.excludeSelected = {
type: 'all',
dated: days[0]
};
2022-05-12 11:53:13 +00:00
this.exclusions = exclusions;
this.days = days;
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
}
create(type, days, weekday) {
2019-09-25 18:06:42 +00:00
this.isNew = true;
2019-10-23 15:38:35 +00:00
if (type == 'weekday') {
let wdays = [];
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]
};
}
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': {
2022-05-16 05:17:29 +00:00
let excludeSelected = this.excludeSelected;
let type = excludeSelected.type;
2022-05-12 11:53:13 +00:00
if (type == 'all')
2022-05-16 05:17:29 +00:00
return this.exclusionCreate(this.days);
2022-05-12 11:53:13 +00:00
else {
2022-05-16 05:17:29 +00:00
const geoIds = [];
for (let zoneGeo of this.checked) {
geoIds.push({
id: zoneGeo.id
});
}
const params = {
zoneFk: parseInt(this.$params.id),
date: this.days[0],
geoIds: geoIds
};
return this.$http.post(`Zones/exclusionGeo`, params)
.then(() => this.refresh());
2022-05-12 11:53:13 +00:00
}
}
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-12 13:02:07 +00:00
set excludeSearch(value) {
this._excludeSearch = value;
if (!value) this.onSearch();
}
get excludeSearch() {
return this._excludeSearch;
}
onKeyDown(event) {
if (event.key == 'Enter') {
event.preventDefault();
this.onSearch();
}
}
onSearch() {
const params = {search: this._excludeSearch};
2022-05-16 05:17:29 +00:00
if (this.excludeSelected.type == 'specificLocations') {
2022-05-12 11:53:13 +00:00
this.$.model.applyFilter({}, params).then(() => {
const data = this.$.model.data;
this.$.treeview.data = data;
});
}
}
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}%`}};
}
}
2022-05-12 13:02:07 +00:00
onSelection2(value, item) {
if (value == null)
value = undefined;
const params = {geoId: item.id, isIncluded: value};
const path = `zones/${this.zone.id}/toggleIsIncluded`;
this.$http.post(path, params);
}
2019-09-25 18:06:42 +00:00
}
Controller.$inject = ['$element', '$scope', 'vnWeekDays'];
2019-09-25 18:06:42 +00:00
ngModule.vnComponent('vnZoneEvents', {
2019-09-25 18:06:42 +00:00
template: require('./index.html'),
2022-05-12 13:02:07 +00:00
controller: Controller,
bindings: {
zone: '<'
},
require: {
card: '^vnZoneCard'
}
2019-09-25 18:06:42 +00:00
});