I am new to Webix & Jet and just purchased the pro version. I am working on a Jet app that uses Dexie.js to store data on the client side. For each data store I am creating a local service as follows:
this.setService(“localName”, new MyData());
MyData points to a class that creates a new webix.DataCollection and defines the methods used to manipulate the data collection and post the operations through Dexie. All my views are classes where the local service is defnied in the class’ init() method and used in certain methods of the class. Everything is working as expected until I tried to apply the same principles to the Scheduler plugin. It is not clear how I should structure my use of this plugin. As of now, my view looks as follows:
import {JetView} from 'webix-jet';
export default class SchedulerView extends JetView {
config() {
return {
view: 'scheduler',
localId: 'scheduler',
date: new Date(),
override: new Map([
[scheduler.services.Backend, MyBackend]
])
};
} // end of config
I am not sure if the next code block is necessary but was included after reading the documentation for Scheduler.
class MyBackend extends scheduler.services.Backend {
init() {
this.eventData = this.app.getService('localName');
}
events() {
const events = this.eventData.getRecords();
return webix.promise.resolve(events);
}
calendars() {
const calendars = [];
return webix.promise.resolve(calendars);
}
addEvent(event) {
this.eventData.addRecord(event).then(res => res.json());
}
removeEvent(id) {
this.eventData.deleteRecord(id).then(res => res.json());
}
updateEvent(id, obj, mode) {
this.eventData.updateRecord(id, obj).then(res => res.json());
}
}
If this is the correct way to incorporate the local data source with Scheduler, it is not working for me. Any comments are appreciated.