taiga-front/app/modules/components/attachment/attachment.controller.coffee

61 lines
2.0 KiB
CoffeeScript

###
# Copyright (C) 2014-2018 Taiga Agile LLC
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# File: components/attachment/attachment.controller.coffee
###
class AttachmentController
@.$inject = [
'tgAttachmentsService',
'$translate'
]
constructor: (@attachmentsService, @translate) ->
@.form = {}
@.form.description = @.attachment.getIn(['file', 'description'])
@.form.is_deprecated = @.attachment.get(['file', 'is_deprecated'])
@.title = @translate.instant("ATTACHMENT.TITLE", {
fileName: @.attachment.get('name'),
date: moment(@.attachment.get('created_date')).format(@translate.instant("ATTACHMENT.DATE"))
})
editMode: (mode) ->
attachment = @.attachment.set('editable', mode)
@.onUpdate({attachment: attachment})
delete: () ->
@.onDelete({attachment: @.attachment})
save: () ->
attachment = @.attachment.set('loading', true)
@.onUpdate({attachment: attachment})
attachment = @.attachment.merge({
editable: false,
loading: false
})
attachment = attachment.mergeIn(['file'], {
description: @.form.description,
is_deprecated: !!@.form.is_deprecated
})
@.onUpdate({attachment: attachment})
angular.module('taigaComponents').controller('Attachment', AttachmentController)