mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
/* eslint-disable
|
|
no-return-assign,
|
|
no-undef,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
'use strict'
|
|
|
|
Application.Services.factory('dialogs', ['$uibModal', function ($uibModal) {
|
|
return ({
|
|
confirm (options, success, error) {
|
|
const defaultOpts = {
|
|
templateUrl: '<%= asset_path "shared/confirm_modal.html" %>',
|
|
size: 'sm',
|
|
resolve: {
|
|
object () {
|
|
return {
|
|
title: 'Titre de confirmation',
|
|
msg: 'Message de confirmation'
|
|
}
|
|
}
|
|
},
|
|
controller: ['$scope', '$uibModalInstance', '$state', 'object', function ($scope, $uibModalInstance, $state, object) {
|
|
$scope.object = object
|
|
$scope.ok = function (info) { $uibModalInstance.close(info) }
|
|
$scope.cancel = function () { $uibModalInstance.dismiss('cancel') }
|
|
}]
|
|
}
|
|
if (angular.isObject(options)) { angular.extend(defaultOpts, options) }
|
|
return $uibModal.open(defaultOpts)
|
|
.result['finally'](null).then(function (info) {
|
|
if (angular.isFunction(success)) {
|
|
return success(info)
|
|
}
|
|
}
|
|
, function (reason) {
|
|
if (angular.isFunction(error)) {
|
|
return error(reason)
|
|
}
|
|
})
|
|
}
|
|
})
|
|
|
|
}])
|