Skip to content

Instantly share code, notes, and snippets.

@wegorich
Created May 17, 2016 01:22
Show Gist options
  • Save wegorich/3415a60ad41f142a06491ad03bb0ad5b to your computer and use it in GitHub Desktop.
Save wegorich/3415a60ad41f142a06491ad03bb0ad5b to your computer and use it in GitHub Desktop.
4front best practice update loadDictionaries ....
updateDictionaries() {
let promise = this.api.getDictionaries(this.lastUpdatedDictionariesTimestamp).then(res => {
let result = res.result;
if (!this.lastUpdatedDictionariesTimestamp) {
....
} else {
this.applyChangesToMap(this.someMap, result.someMapData);
....
}
this.lastUpdatedDictionariesTimestamp = result.date;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment