1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-05 00:27:25 +00:00
mailinabox/management/reporting/ui/index.js
downtownallday 763cdfcd7e remove /admin/me call, which is no longer available, and use the new api_credentials Object, which used to be a String.
add X-Requested-With header to requests so 401's are not returned by daemon.py.
2021-09-14 10:00:17 -04:00

79 lines
1.9 KiB
JavaScript

/*
* reports index page
*/
import page_settings from "./page-settings.js";
import page_reports_main from "./page-reports-main.js";
import { Me, init_authentication_interceptors } from "../../ui-common/authentication.js";
import { AuthenticationError } from "../../ui-common/exceptions.js";
import UserSettings from "./settings.js";
const app = {
router: new VueRouter({
routes: [
{ path: '/', component: page_reports_main },
{ path: '/settings', component: page_settings },
{ path: '/:panel', component: page_reports_main },
],
scrollBehavior: function(to, from, savedPosition) {
if (savedPosition) {
return savedPosition
}
},
}),
components: {
'page-settings': page_settings,
'page-reports-main': page_reports_main,
},
data: {
},
mounted: function() {
this.ensure_authenticated();
},
methods: {
ensure_authenticated: function() {
axios.get('reports/uidata/user-list')
.catch(error => {
this.handleError(error);
});
},
handleError: function(error) {
if (error instanceof AuthenticationError) {
console.log(error);
window.location = '/admin';
return;
}
console.error(error);
if (error instanceof ReferenceError) {
// uncaught coding bug, ignore
return;
}
if (error.status && error.reason)
{
// axios
error = error.reason;
}
this.$nextTick(() => {alert(''+error) });
}
}
};
init_authentication_interceptors();
UserSettings.load().then(settings => {
new Vue(app).$mount('#app');
}).catch(error => {
alert('' + error);
});