salix/front/core/services/app.js

44 lines
903 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.logger)
this.logger.showMessage(message);
}
2018-06-19 06:12:36 +00:00
showSuccess(message) {
if (this.logger)
this.logger.showSuccess(message);
2018-06-19 06:12:36 +00:00
}
showError(message) {
if (this.logger)
this.logger.showError(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);