79 lines
2.7 KiB
CoffeeScript
79 lines
2.7 KiB
CoffeeScript
###
|
|
# Copyright (C) 2014-2015 Taiga Agile LLC <taiga@taiga.io>
|
|
#
|
|
# 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: watch-project-button.service.coffee
|
|
###
|
|
|
|
taiga = @.taiga
|
|
|
|
class WatchProjectButtonService extends taiga.Service
|
|
@.$inject = [
|
|
"tgResources",
|
|
"tgCurrentUserService",
|
|
"tgProjectService"
|
|
]
|
|
|
|
constructor: (@rs, @currentUserService, @projectService) ->
|
|
|
|
_getProjectIndex: (projectId) ->
|
|
return @currentUserService.projects
|
|
.get('all')
|
|
.findIndex (project) -> project.get('id') == projectId
|
|
|
|
|
|
_updateProjects: (projectId, notifyLevel, isWatcher) ->
|
|
projectIndex = @._getProjectIndex(projectId)
|
|
|
|
projects = @currentUserService.projects
|
|
.get('all')
|
|
.update projectIndex, (project) =>
|
|
totalWatchers = project.get('total_watchers')
|
|
|
|
if isWatcher then totalWatchers++ else totalWatchers--
|
|
|
|
return project.merge({
|
|
is_watcher: isWatcher,
|
|
total_watchers: totalWatchers
|
|
notify_level: notifyLevel
|
|
})
|
|
|
|
@currentUserService.setProjects(projects)
|
|
|
|
_updateCurrentProject: (notifyLevel, isWatcher) ->
|
|
totalWatchers = @projectService.project.get("total_watchers")
|
|
|
|
if isWatcher then totalWatchers++ else totalWatchers--
|
|
|
|
project = @projectService.project.merge({
|
|
is_watcher: isWatcher,
|
|
total_watchers: totalWatchers
|
|
notify_level: notifyLevel
|
|
})
|
|
|
|
@projectService.setProject(project)
|
|
|
|
watch: (projectId, notifyLevel) ->
|
|
return @rs.projects.watchProject(projectId, notifyLevel).then =>
|
|
@._updateProjects(projectId, notifyLevel, true)
|
|
@._updateCurrentProject(notifyLevel, true)
|
|
|
|
unwatch: (projectId) ->
|
|
return @rs.projects.unwatchProject(projectId).then =>
|
|
@._updateProjects(projectId, null, false)
|
|
@._updateCurrentProject(null, false)
|
|
|
|
angular.module("taigaProjects").service("tgWatchProjectButtonService", WatchProjectButtonService)
|