### # Copyright (C) 2014 Andrey Antukh # Copyright (C) 2014 Jesús Espino Garcia # Copyright (C) 2014 David Barragán Merino # # 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 . # # File: modules/admin/project-profile.coffee ### taiga = @.taiga mixOf = @.taiga.mixOf trim = @.taiga.trim toString = @.taiga.toString joinStr = @.taiga.joinStr groupBy = @.taiga.groupBy bindOnce = @.taiga.bindOnce module = angular.module("taigaAdmin") ############################################################################# ## Project values Controller ############################################################################# class ProjectValuesController extends mixOf(taiga.Controller, taiga.PageMixin) @.$inject = [ "$scope", "$rootScope", "$tgRepo", "$tgConfirm", "$tgResources", "$routeParams", "$q", "$location", "$appTitle" ] constructor: (@scope, @rootscope, @repo, @confirm, @rs, @params, @q, @location, @appTitle) -> @scope.project = {} promise = @.loadInitialData() promise.then () => @appTitle.set("Project values - " + @scope.sectionName + " - " + @scope.project.name) promise.then null, -> console.log "FAIL" #TODO @scope.$on("admin:project-values:move", @.moveValue) loadProject: -> return @rs.projects.get(@scope.projectId).then (project) => @scope.project = project @scope.$emit('project:loaded', project) return project loadValues: => return @rs[@scope.resource].listValues(@scope.projectId, @scope.type).then (values) => @scope.values = values @scope.maxValueOrder = _.max(values, "order").order loadInitialData: -> promise = @repo.resolve({pslug: @params.pslug}).then (data) => @scope.projectId = data.project return data return promise.then( => @q.all([ @.loadProject(), @.loadValues(), ])) moveValue: (ctx, itemValue, itemIndex) => values = @scope.values r = values.indexOf(itemValue) values.splice(r, 1) values.splice(itemIndex, 0, itemValue) _.each values, (value, index) -> value.order = index @repo.saveAll(values) module.controller("ProjectValuesController", ProjectValuesController) ############################################################################# ## Project values directive ############################################################################# ProjectValuesDirective = ($log, $repo, $confirm, $location) -> ######################### ## Drag & Drop Link ######################### linkDragAndDrop = ($scope, $el, $attrs) -> oldParentScope = null newParentScope = null itemEl = null tdom = $el.find(".sortable") tdom.sortable({ handle: ".row.table-main.visualization", dropOnEmpty: true connectWith: ".project-values-body" revert: 400 axis: "y" }) tdom.on "sortstop", (event, ui) -> itemEl = ui.item itemValue = itemEl.scope().value itemIndex = itemEl.index() $scope.$broadcast("admin:project-values:move", itemValue, itemIndex) $scope.$on "$destroy", -> $el.off() ######################### ## Value Link ######################### linkValue = ($scope, $el, $attrs) -> $ctrl = $el.controller() valueType = $attrs.type initializeNewValue = -> $scope.newValue = { "name": "" "is_closed": false } initializeNewValue() submit = => promise = $repo.save($scope.project) promise.then -> $confirm.notify("success") promise.then null, (data) -> $confirm.notify("error", data._error_message) $el.on "submit", "form", (event) -> event.preventDefault() submit() $el.on "click", "form a.button-green", (event) -> event.preventDefault() submit() $el.on "click", ".show-add-new", (event) -> event.preventDefault() $el.find(".new-value").css('display': 'flex') $el.on "click", ".add-new", (event) -> event.preventDefault() form = $el.find(".new-value").parents("form").checksley() return if not form.validate() $scope.newValue.project = $scope.project.id $scope.newValue.order = $scope.maxValueOrder + 1 promise = $repo.create(valueType, $scope.newValue) promise.then => $ctrl.loadValues() $el.find(".new-value").hide() initializeNewValue() promise.then null, (data) -> $confirm.notify("error") form.setErrors(data) $el.on "click", ".delete-new", (event) -> event.preventDefault() $el.find(".new-value").hide() initializeNewValue() $el.on "click", ".edit-value", (event) -> event.preventDefault() target = angular.element(event.currentTarget) row = target.parents(".row.table-main") row.hide() row.siblings(".edition").css("display": "flex") $el.on "click", ".save", (event) -> event.preventDefault() target = angular.element(event.currentTarget) form = target.parents("form").checksley() return if not form.validate() value = target.scope().value promise = $repo.save(value) promise.then => row = target.parents(".row.table-main") row.hide() row.siblings(".visualization").css("display": "flex") promise.then null, (data) -> $confirm.notify("error") form.setErrors(data) $el.on "click", ".cancel", (event) -> event.preventDefault() target = angular.element(event.currentTarget) row = target.parents(".row.table-main") row.hide() row.siblings(".visualization").css("display": "flex") $el.on "click", ".delete-value", (event) -> event.preventDefault() target = angular.element(event.currentTarget) value = target.scope().value #TODO: i18n title = "Delete" subtitle = value.name $confirm.ask(title, subtitle).then => onSucces = -> $ctrl.loadValues() onError = -> $confirm.notify("error") $repo.remove(value).then(onSucces, onError) link = ($scope, $el, $attrs) -> linkDragAndDrop($scope, $el, $attrs) linkValue($scope, $el, $attrs) $scope.$on "$destroy", -> $el.off() return {link:link} module.directive("tgProjectValues", ["$log", "$tgRepo", "$tgConfirm", "$tgLocation", ProjectValuesDirective]) ############################################################################# ## Color selection directive ############################################################################# ColorSelectionDirective = () -> ######################### ## Color selection Link ######################### link = ($scope, $el, $attrs, $model) -> $ctrl = $el.controller() $scope.$watch $attrs.ngModel, (element) -> $scope.color = element.color $el.on "click", ".current-color", (event) -> # Showing the color selector event.preventDefault() event.stopPropagation() target = angular.element(event.currentTarget) $el.find(".select-color").hide() target.siblings(".select-color").show() # Hide when click outside body = angular.element("body") body.on "click", (event) => if angular.element(event.target).parent(".select-color").length == 0 $el.find(".select-color").hide() body.unbind("click") $el.on "click", ".select-color .color", (event) -> # Selecting one color on color selector event.preventDefault() target = angular.element(event.currentTarget) $scope.$apply -> $model.$modelValue.color = target.data("color") $el.find(".select-color").hide() $el.on "click", ".select-color .selected-color", (event) -> event.preventDefault() $scope.$apply -> $model.$modelValue.color = $scope.color $el.find(".select-color").hide() $scope.$on "$destroy", -> $el.off() return { link: link require:"ngModel" } module.directive("tgColorSelection", ColorSelectionDirective)