1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/assets/javascripts/services/dialogs.coffee.erb
2016-03-23 18:39:41 +01:00

28 lines
967 B
Plaintext

'use strict'
Application.Services.factory 'dialogs', ["$uibModal", ($uibModal) ->
confirm: (options, success, error)->
defaultOpts =
templateUrl: '<%= asset_path "shared/confirm_modal.html" %>'
size: 'sm'
resolve:
object: ->
title: 'Titre de confirmation'
msg: 'Message de confirmation'
controller: ['$scope', '$uibModalInstance', '$state', 'object', ($scope, $uibModalInstance, $state, object) ->
$scope.object = object
$scope.ok = (info) ->
$uibModalInstance.close( info )
$scope.cancel = ->
$uibModalInstance.dismiss('cancel')
]
angular.extend(defaultOpts, options) if angular.isObject options
$uibModal.open defaultOpts
.result['finally'](null).then (info)->
if angular.isFunction(success)
success(info)
, (reason)->
if angular.isFunction(error)
error(reason)
]