salix/front/core/lib/app.js

44 lines
941 B
JavaScript
Raw Normal View History

2018-02-10 15:18:01 +00:00
import ngModule from '../module';
/**
* The main application class.
*
* @property {String} name The application name.
* @property {Snackbar} snackbar The main object to show messages.
*/
export default class App {
constructor() {
2017-11-16 12:47:18 +00:00
this.loaderStatus = 0;
this.loading = false;
2017-11-16 12:47:18 +00:00
}
2018-06-19 06:12:36 +00:00
showMessage(message) {
if (this.snackbar)
this.snackbar.show({message: message});
}
2018-06-19 06:12:36 +00:00
showSuccess(message) {
if (this.snackbar)
this.snackbar.showSuccess({message: message});
}
showError(message) {
if (this.snackbar)
2018-05-31 14:27:06 +00:00
this.snackbar.showError({message: message});
}
2018-06-19 06:12:36 +00:00
2017-11-16 12:47:18 +00:00
pushLoader() {
this.loaderStatus++;
if (this.loaderStatus === 1)
this.loading = true;
2017-11-16 12:47:18 +00:00
}
2018-06-19 06:12:36 +00:00
2017-11-16 12:47:18 +00:00
popLoader() {
this.loaderStatus--;
if (this.loaderStatus === 0)
this.loading = false;
2017-11-16 12:47:18 +00:00
}
}
2017-11-16 12:47:18 +00:00
2018-02-10 15:18:01 +00:00
ngModule.service('vnApp', App);