1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-02 13:24:20 +01:00
fab-manager/app/assets/javascripts/services/help.js.erb

60 lines
1.9 KiB
Plaintext
Raw Normal View History

2020-03-10 16:38:29 +01:00
'use strict';
Application.Services.factory('Help', ['$rootScope', '$uibModal', '$state', 'AuthService',
function ($rootScope, $uibModal, $state, AuthService) {
2020-03-10 16:38:29 +01:00
const TOURS = {
'app.public.home': 'welcome',
'app.public.machines_list': 'machines',
'app.public.spaces_list': 'spaces',
'app.admin.trainings': 'trainings',
'app.admin.calendar': 'calendar',
'app.admin.members': 'members',
'app.admin.invoices': 'invoices',
'app.admin.pricing': 'pricing',
'app.admin.events': 'events',
'app.admin.project_elements': 'project-elements',
2020-03-10 16:38:29 +01:00
'app.admin.statistics': 'statistics',
'app.admin.settings': 'settings',
'app.admin.open_api_clients': 'open-api'
2020-03-10 16:38:29 +01:00
};
return function (e) {
if (!AuthService.isAuthorized(['admin', 'manager'])) return;
2020-03-10 16:38:29 +01:00
if (e.key === 'F1') {
e.preventDefault();
// retrieve the tour name, based on the current location
const tourName = TOURS[$state.current.name];
2020-03-10 16:38:29 +01:00
// if no tour, just open the guide
if (tourName === undefined) {
2020-03-10 16:38:29 +01:00
return window.open('https://github.com/sleede/fab-manager/raw/master/doc/fr/guide_utilisation_fab_manager_v4.3.pdf', '_blank');
}
$uibModal.open({
animation: true,
templateUrl: '<%= asset_path "shared/help_modal.html" %>',
resolve: {
tourName: function () { return tourName; }
},
controller: ['$scope', '$uibModalInstance', 'uiTourService', 'tourName', function ($scope, $uibModalInstance, uiTourService, tourName) {
2020-03-10 16:38:29 +01:00
// start the tour and hide the modal
$scope.onTour = function () {
const tour = uiTourService.getTourByName(tourName);
2020-03-10 16:38:29 +01:00
if (tour) { tour.start(); }
$uibModalInstance.close('tour');
};
// open the user's guide and hide the modal
$scope.onGuide = function () {
$uibModalInstance.close('guide');
};
}]
});
}
};
}]);