2014-06-16 07:26:35 -04:00
|
|
|
window.ProjectPageApp = angular.module("ProjectPageApp", ['ui.bootstrap'])
|
2014-06-13 08:55:55 -04:00
|
|
|
|
|
|
|
$ () ->
|
|
|
|
$(".js-tags-dropdown-menu input, .js-tags-dropdown-menu a").click (e) ->
|
|
|
|
e.stopPropagation()
|
|
|
|
|
|
|
|
ProjectPageApp.directive 'ngEnter', () ->
|
|
|
|
return (scope, element, attrs) ->
|
|
|
|
element.bind "keydown keypress", (event) ->
|
|
|
|
if event.which == 13
|
|
|
|
scope.$apply () ->
|
|
|
|
scope.$eval(attrs.ngEnter, event: event)
|
|
|
|
event.preventDefault()
|
|
|
|
|
|
|
|
ProjectPageApp.directive 'ngFocusOn', ($timeout) ->
|
|
|
|
return {
|
|
|
|
restrict: 'AC'
|
|
|
|
link: (scope, element, attrs) ->
|
|
|
|
scope.$on attrs.ngFocusOn, () ->
|
|
|
|
element.focus()
|
|
|
|
}
|
2014-06-11 09:52:23 -04:00
|
|
|
|
2014-06-12 10:22:49 -04:00
|
|
|
ProjectPageApp.filter "formatDate", () ->
|
|
|
|
(date, format = "Do MMM YYYY, h:mm a") ->
|
|
|
|
moment(date).format(format)
|
|
|
|
|
2014-06-13 11:05:44 -04:00
|
|
|
ProjectPageApp.controller "ProjectPageController", ($scope, $modal, $http, $q) ->
|
2014-06-12 10:22:49 -04:00
|
|
|
$scope.projects = window.data.projects
|
2014-06-12 11:21:12 -04:00
|
|
|
$scope.visibleProjects = $scope.projects
|
2014-06-12 10:22:49 -04:00
|
|
|
$scope.tags = window.data.tags
|
|
|
|
$scope.allSelected = false
|
2014-06-13 09:28:16 -04:00
|
|
|
$scope.selectedProjects = []
|
2014-06-16 09:45:47 -04:00
|
|
|
$scope.filter = "all"
|
2014-06-12 10:22:49 -04:00
|
|
|
|
2014-06-13 09:14:56 -04:00
|
|
|
# Allow tags to be accessed on projects as well
|
|
|
|
projectsById = {}
|
|
|
|
for project in $scope.projects
|
2014-06-16 09:45:47 -04:00
|
|
|
projectsById[project.id] = project
|
2014-06-13 09:14:56 -04:00
|
|
|
|
|
|
|
for tag in $scope.tags
|
|
|
|
for project_id in tag.project_ids or []
|
|
|
|
project = projectsById[project_id]
|
|
|
|
if project?
|
|
|
|
project.tags ||= []
|
|
|
|
project.tags.push tag
|
|
|
|
|
2014-06-12 10:22:49 -04:00
|
|
|
# Any individual changes to the selection buttons invalidates
|
|
|
|
# our 'select all'
|
|
|
|
$scope.$on "selected:on-change", (e) ->
|
|
|
|
$scope.allSelected = false
|
|
|
|
$scope.$broadcast "selection:change"
|
|
|
|
|
|
|
|
# Selecting or deselecting all should apply to all projects
|
|
|
|
$scope.onSelectAllChange = () ->
|
|
|
|
for project in $scope.visibleProjects
|
|
|
|
project.selected = $scope.allSelected
|
|
|
|
$scope.$broadcast "selection:change"
|
|
|
|
|
2014-06-12 11:21:12 -04:00
|
|
|
$scope.$watch "searchText", (value) ->
|
|
|
|
$scope.updateVisibleProjects()
|
|
|
|
|
2014-06-16 09:45:47 -04:00
|
|
|
$scope.setFilter = (filter) ->
|
|
|
|
$scope.filter = filter
|
|
|
|
$scope.updateVisibleProjects()
|
|
|
|
|
2014-06-12 11:21:12 -04:00
|
|
|
$scope.clearProjectSelections = () ->
|
2014-06-12 10:22:49 -04:00
|
|
|
for project in $scope.projects
|
|
|
|
project.selected = false
|
|
|
|
$scope.allSelected = false
|
|
|
|
$scope.$broadcast "selection:change"
|
|
|
|
|
2014-06-13 09:28:16 -04:00
|
|
|
$scope.updateSelectedProjects = () ->
|
|
|
|
$scope.selectedProjects = $scope.projects.filter (project) -> project.selected
|
|
|
|
|
|
|
|
$scope.getSelectedProjects = () ->
|
|
|
|
$scope.selectedProjects
|
|
|
|
|
|
|
|
$scope.getSelectedProjectIds = () ->
|
2014-06-16 09:45:47 -04:00
|
|
|
$scope.selectedProjects.map (project) -> project.id
|
2014-06-13 09:28:16 -04:00
|
|
|
|
2014-06-13 10:24:20 -04:00
|
|
|
$scope.getFirstSelectedProject = () ->
|
|
|
|
$scope.selectedProjects[0]
|
|
|
|
|
2014-06-13 09:28:16 -04:00
|
|
|
$scope.$on "selection:change", () ->
|
|
|
|
$scope.updateSelectedProjects()
|
|
|
|
|
2014-06-12 10:22:49 -04:00
|
|
|
$scope.updateVisibleProjects = () ->
|
|
|
|
$scope.visibleProjects = []
|
2014-06-12 11:21:12 -04:00
|
|
|
selectedTag = $scope.getSelectedTag()
|
2014-06-12 10:22:49 -04:00
|
|
|
for project in $scope.projects
|
|
|
|
visible = true
|
2014-06-12 11:21:12 -04:00
|
|
|
# Only show if it matches any search text
|
2014-06-12 10:22:49 -04:00
|
|
|
if $scope.searchText? and $scope.searchText != ""
|
|
|
|
if !project.name.toLowerCase().match($scope.searchText.toLowerCase())
|
|
|
|
visible = false
|
2014-06-12 11:21:12 -04:00
|
|
|
# Only show if it matches the selected tag
|
2014-06-16 09:45:47 -04:00
|
|
|
if $scope.filter == "tag" and selectedTag? and project.id not in selectedTag.project_ids
|
|
|
|
visible = false
|
|
|
|
|
|
|
|
# Hide projects we own if we only want to see shared projects
|
|
|
|
if $scope.filter == "shared" and project.accessLevel == "owner"
|
|
|
|
visible = false
|
|
|
|
|
|
|
|
# Hide projects we don't own if we only want to see owned projects
|
|
|
|
if $scope.filter == "owned" and project.accessLevel != "owner"
|
2014-06-12 11:21:12 -04:00
|
|
|
visible = false
|
2014-06-13 09:28:16 -04:00
|
|
|
|
2014-06-16 10:06:58 -04:00
|
|
|
if $scope.filter == "archived"
|
|
|
|
# Only show archived projects
|
|
|
|
if !project.archived
|
|
|
|
visible = false
|
|
|
|
else
|
|
|
|
# Only show non-archived projects
|
|
|
|
if project.archived
|
|
|
|
visible = false
|
|
|
|
|
2014-06-12 10:22:49 -04:00
|
|
|
if visible
|
|
|
|
$scope.visibleProjects.push project
|
2014-06-13 09:14:56 -04:00
|
|
|
else
|
|
|
|
# We don't want hidden selections
|
|
|
|
project.selected = false
|
2014-06-16 10:06:58 -04:00
|
|
|
$scope.updateSelectedProjects()
|
2014-06-12 11:21:12 -04:00
|
|
|
|
|
|
|
$scope.getSelectedTag = () ->
|
|
|
|
for tag in $scope.tags
|
|
|
|
return tag if tag.selected
|
|
|
|
return null
|
|
|
|
|
2014-06-13 10:24:20 -04:00
|
|
|
$scope._removeProjectIdsFromTagArray = (tag, remove_project_ids) ->
|
2014-06-13 09:14:56 -04:00
|
|
|
# Remove project_id from tag.project_ids
|
2014-06-13 08:55:55 -04:00
|
|
|
remaining_project_ids = []
|
|
|
|
removed_project_ids = []
|
|
|
|
for project_id in tag.project_ids
|
2014-06-13 10:24:20 -04:00
|
|
|
if project_id not in remove_project_ids
|
2014-06-13 08:55:55 -04:00
|
|
|
remaining_project_ids.push project_id
|
|
|
|
else
|
|
|
|
removed_project_ids.push project_id
|
|
|
|
tag.project_ids = remaining_project_ids
|
2014-06-16 09:45:47 -04:00
|
|
|
return removed_project_ids
|
2014-06-13 08:55:55 -04:00
|
|
|
|
2014-06-13 10:24:20 -04:00
|
|
|
$scope.removeSelectedProjectsFromTag = (tag) ->
|
|
|
|
selected_project_ids = $scope.getSelectedProjectIds()
|
|
|
|
selected_projects = $scope.getSelectedProjects()
|
|
|
|
|
2014-06-16 09:45:47 -04:00
|
|
|
removed_project_ids = $scope._removeProjectIdsFromTagArray(tag, selected_project_ids)
|
2014-06-13 10:24:20 -04:00
|
|
|
|
2014-06-13 09:14:56 -04:00
|
|
|
# Remove tag from project.tags
|
|
|
|
remaining_tags = []
|
|
|
|
for project in selected_projects
|
|
|
|
project.tags ||= []
|
|
|
|
index = project.tags.indexOf tag
|
|
|
|
if index > -1
|
|
|
|
project.tags.splice(index, 1)
|
|
|
|
|
2014-06-13 08:55:55 -04:00
|
|
|
for project_id in removed_project_ids
|
|
|
|
$http.post "/project/#{project_id}/tag", {
|
|
|
|
deletedTag: tag.name
|
|
|
|
_csrf: window.csrfToken
|
|
|
|
}
|
|
|
|
|
|
|
|
# If we're filtering by this tag then we need to remove
|
|
|
|
# the projects from view
|
|
|
|
$scope.updateVisibleProjects()
|
|
|
|
|
|
|
|
$scope.addSelectedProjectsToTag = (tag) ->
|
2014-06-13 09:14:56 -04:00
|
|
|
selected_projects = $scope.getSelectedProjects()
|
|
|
|
|
|
|
|
# Add project_ids into tag.project_ids
|
2014-06-13 08:55:55 -04:00
|
|
|
added_project_ids = []
|
|
|
|
for project_id in $scope.getSelectedProjectIds()
|
|
|
|
unless project_id in tag.project_ids
|
|
|
|
tag.project_ids.push project_id
|
|
|
|
added_project_ids.push project_id
|
|
|
|
|
2014-06-13 09:14:56 -04:00
|
|
|
# Add tag into each project.tags
|
|
|
|
for project in selected_projects
|
|
|
|
project.tags ||= []
|
2014-06-16 09:45:47 -04:00
|
|
|
unless tag in project.tags
|
|
|
|
project.tags.push tag
|
2014-06-13 09:14:56 -04:00
|
|
|
|
2014-06-13 08:55:55 -04:00
|
|
|
for project_id in added_project_ids
|
|
|
|
# TODO Factor this out into another provider?
|
|
|
|
$http.post "/project/#{project_id}/tag", {
|
|
|
|
tag: tag.name
|
|
|
|
_csrf: window.csrfToken
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.createTag = (name) ->
|
|
|
|
$scope.tags.push {
|
|
|
|
name: name
|
|
|
|
project_ids: []
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.openNewTagModal = () ->
|
|
|
|
modalInstance = $modal.open(
|
|
|
|
templateUrl: "newTagModalTemplate"
|
|
|
|
controller: "NewTagModalController"
|
|
|
|
)
|
|
|
|
|
|
|
|
modalInstance.result.then(
|
|
|
|
(newTagName) ->
|
|
|
|
$scope.createTag(newTagName)
|
|
|
|
)
|
|
|
|
|
2014-06-13 11:05:44 -04:00
|
|
|
$scope.createProject = (name, template = "none") ->
|
|
|
|
deferred = $q.defer()
|
|
|
|
|
|
|
|
$http
|
|
|
|
.post("/project/new", {
|
|
|
|
_csrf: window.csrfToken
|
|
|
|
projectName: name
|
|
|
|
template: template
|
|
|
|
})
|
|
|
|
.success((data, status, headers, config) ->
|
|
|
|
$scope.projects.push {
|
|
|
|
name: name
|
|
|
|
_id: data.project_id
|
|
|
|
accessLevel: "owner"
|
|
|
|
# TODO: Check access level if correct after adding it in
|
|
|
|
# to the rest of the app
|
|
|
|
}
|
|
|
|
$scope.updateVisibleProjects()
|
|
|
|
deferred.resolve(data.project_id)
|
|
|
|
)
|
|
|
|
.error((data, status, headers, config) ->
|
|
|
|
deferred.reject()
|
|
|
|
)
|
|
|
|
|
|
|
|
return deferred.promise
|
|
|
|
|
|
|
|
$scope.openCreateProjectModal = (template = "none") ->
|
|
|
|
modalInstance = $modal.open(
|
|
|
|
templateUrl: "newProjectModalTemplate"
|
|
|
|
controller: "NewProjectModalController"
|
|
|
|
resolve:
|
|
|
|
template: () -> template
|
|
|
|
scope: $scope
|
|
|
|
)
|
|
|
|
|
|
|
|
modalInstance.result.then (project_id) ->
|
|
|
|
window.location = "/project/#{project_id}"
|
|
|
|
|
2014-06-13 10:24:20 -04:00
|
|
|
$scope.renameProject = (project, newName) ->
|
|
|
|
project.name = newName
|
2014-06-16 09:45:47 -04:00
|
|
|
$http.post "/project/#{project.id}/rename", {
|
2014-06-13 10:24:20 -04:00
|
|
|
newProjectName: newName
|
|
|
|
_csrf: window.csrfToken
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.openRenameProjectModal = () ->
|
|
|
|
project = $scope.getFirstSelectedProject()
|
2014-06-16 10:12:10 -04:00
|
|
|
return if !project? or project.accessLevel != "owner"
|
2014-06-13 10:24:20 -04:00
|
|
|
|
|
|
|
modalInstance = $modal.open(
|
|
|
|
templateUrl: "renameProjectModalTemplate"
|
|
|
|
controller: "RenameProjectModalController"
|
|
|
|
resolve:
|
|
|
|
projectName: () -> project.name
|
|
|
|
)
|
|
|
|
|
|
|
|
modalInstance.result.then(
|
|
|
|
(newName) ->
|
|
|
|
$scope.renameProject(project, newName)
|
|
|
|
)
|
|
|
|
|
2014-06-16 10:32:20 -04:00
|
|
|
$scope.cloneProject = (project, cloneName) ->
|
|
|
|
deferred = $q.defer()
|
|
|
|
|
|
|
|
$http
|
|
|
|
.post("/project/#{project.id}/clone", {
|
|
|
|
_csrf: window.csrfToken
|
|
|
|
projectName: cloneName
|
|
|
|
})
|
|
|
|
.success((data, status, headers, config) ->
|
|
|
|
$scope.projects.push {
|
|
|
|
name: cloneName
|
|
|
|
id: data.project_id
|
|
|
|
accessLevel: "owner"
|
|
|
|
# TODO: Check access level if correct after adding it in
|
|
|
|
# to the rest of the app
|
|
|
|
}
|
|
|
|
$scope.updateVisibleProjects()
|
|
|
|
deferred.resolve(data.project_id)
|
|
|
|
)
|
|
|
|
.error((data, status, headers, config) ->
|
|
|
|
deferred.reject()
|
|
|
|
)
|
|
|
|
|
|
|
|
return deferred.promise
|
|
|
|
|
|
|
|
$scope.openCloneProjectModal = () ->
|
|
|
|
project = $scope.getFirstSelectedProject()
|
|
|
|
return if !project?
|
|
|
|
|
|
|
|
modalInstance = $modal.open(
|
|
|
|
templateUrl: "cloneProjectModalTemplate"
|
|
|
|
controller: "CloneProjectModalController"
|
|
|
|
resolve:
|
|
|
|
project: () -> project
|
|
|
|
scope: $scope
|
|
|
|
)
|
|
|
|
|
2014-06-16 10:06:58 -04:00
|
|
|
$scope.archiveSelectedProjects = () ->
|
|
|
|
selected_projects = $scope.getSelectedProjects()
|
|
|
|
selected_project_ids = $scope.getSelectedProjectIds()
|
|
|
|
|
|
|
|
for project in selected_projects
|
|
|
|
project.archived = true
|
|
|
|
|
|
|
|
# Remove project from any tags
|
|
|
|
for tag in $scope.tags
|
|
|
|
$scope._removeProjectIdsFromTagArray(tag, selected_project_ids)
|
|
|
|
|
|
|
|
for project_id in selected_project_ids
|
|
|
|
$http {
|
|
|
|
method: "DELETE"
|
|
|
|
url: "/project/#{project_id}"
|
|
|
|
headers:
|
|
|
|
"X-CSRF-Token": window.csrfToken
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.updateVisibleProjects()
|
|
|
|
|
2014-06-13 10:24:20 -04:00
|
|
|
$scope.deleteSelectedProjects = () ->
|
|
|
|
selected_projects = $scope.getSelectedProjects()
|
|
|
|
selected_project_ids = $scope.getSelectedProjectIds()
|
|
|
|
|
|
|
|
# Remove projects from array
|
|
|
|
for project in selected_projects
|
|
|
|
index = $scope.projects.indexOf(project)
|
|
|
|
if index > -1
|
|
|
|
$scope.projects.splice(index, 1)
|
|
|
|
|
|
|
|
# Remove project from any tags
|
|
|
|
for tag in $scope.tags
|
|
|
|
$scope._removeProjectIdsFromTagArray(tag, selected_project_ids)
|
|
|
|
|
|
|
|
for project_id in selected_project_ids
|
|
|
|
$http {
|
|
|
|
method: "DELETE"
|
2014-06-16 10:06:58 -04:00
|
|
|
url: "/project/#{project_id}?forever=true"
|
|
|
|
headers:
|
|
|
|
"X-CSRF-Token": window.csrfToken
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.updateVisibleProjects()
|
|
|
|
|
|
|
|
$scope.restoreSelectedProjects = () ->
|
|
|
|
selected_projects = $scope.getSelectedProjects()
|
|
|
|
selected_project_ids = $scope.getSelectedProjectIds()
|
|
|
|
|
|
|
|
for project in selected_projects
|
|
|
|
project.archived = false
|
|
|
|
|
|
|
|
for project_id in selected_project_ids
|
|
|
|
$http {
|
|
|
|
method: "POST"
|
|
|
|
url: "/project/#{project_id}/restore"
|
2014-06-13 10:24:20 -04:00
|
|
|
headers:
|
|
|
|
"X-CSRF-Token": window.csrfToken
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.updateVisibleProjects()
|
|
|
|
|
2014-06-13 12:11:36 -04:00
|
|
|
$scope.openUploadProjectModal = () ->
|
|
|
|
modalInstance = $modal.open(
|
|
|
|
templateUrl: "uploadProjectModalTemplate"
|
|
|
|
controller: "UploadProjectModalController"
|
|
|
|
)
|
|
|
|
|
2014-06-12 11:21:12 -04:00
|
|
|
ProjectPageApp.controller "ProjectListItemController", ($scope) ->
|
2014-06-12 10:22:49 -04:00
|
|
|
$scope.onSelectedChange = () ->
|
|
|
|
$scope.$emit "selected:on-change"
|
|
|
|
|
2014-06-16 09:45:47 -04:00
|
|
|
$scope.ownerName = () ->
|
|
|
|
if $scope.project.accessLevel == "owner"
|
|
|
|
return "You"
|
|
|
|
else if $scope.project.owner?
|
|
|
|
return "#{$scope.project.owner.first_name} #{$scope.project.owner.last_name}"
|
|
|
|
else
|
|
|
|
return "?"
|
2014-06-12 11:21:12 -04:00
|
|
|
|
2014-06-16 09:45:47 -04:00
|
|
|
ProjectPageApp.controller "TagListController", ($scope) ->
|
2014-06-16 10:06:58 -04:00
|
|
|
$scope.filterProjects = (filter = "all") ->
|
2014-06-16 09:45:47 -04:00
|
|
|
$scope._clearTags()
|
2014-06-16 10:06:58 -04:00
|
|
|
$scope.setFilter(filter)
|
2014-06-12 11:21:12 -04:00
|
|
|
|
|
|
|
$scope._clearTags = () ->
|
|
|
|
for tag in $scope.tags
|
|
|
|
tag.selected = false
|
|
|
|
|
|
|
|
ProjectPageApp.controller "TagListItemController", ($scope) ->
|
|
|
|
$scope.selectTag = () ->
|
|
|
|
$scope._clearTags()
|
|
|
|
$scope.tag.selected = true
|
2014-06-16 09:45:47 -04:00
|
|
|
$scope.setFilter("tag")
|
2014-06-12 10:22:49 -04:00
|
|
|
|
2014-06-13 08:55:55 -04:00
|
|
|
ProjectPageApp.controller "TagDropdownItemController", ($scope) ->
|
2014-06-12 10:22:49 -04:00
|
|
|
$scope.$on "selection:change", (e, newValue, oldValue) ->
|
|
|
|
$scope.recalculateProjectsInTag()
|
|
|
|
|
|
|
|
$scope.recalculateProjectsInTag = () ->
|
|
|
|
$scope.areSelectedProjectsInTag = false
|
|
|
|
for project_id in $scope.getSelectedProjectIds()
|
|
|
|
if project_id in $scope.tag.project_ids
|
|
|
|
$scope.areSelectedProjectsInTag = true
|
2014-06-16 09:45:47 -04:00
|
|
|
else
|
|
|
|
partialSelection = true
|
|
|
|
|
|
|
|
if $scope.areSelectedProjectsInTag and partialSelection
|
|
|
|
$scope.areSelectedProjectsInTag = "partial"
|
2014-06-12 10:22:49 -04:00
|
|
|
|
|
|
|
$scope.addOrRemoveProjectsFromTag = () ->
|
2014-06-16 09:45:47 -04:00
|
|
|
if $scope.areSelectedProjectsInTag == true
|
2014-06-13 08:55:55 -04:00
|
|
|
$scope.removeSelectedProjectsFromTag($scope.tag)
|
|
|
|
$scope.areSelectedProjectsInTag = false
|
2014-06-16 09:45:47 -04:00
|
|
|
else if $scope.areSelectedProjectsInTag == false or $scope.areSelectedProjectsInTag == "partial"
|
2014-06-13 08:55:55 -04:00
|
|
|
$scope.addSelectedProjectsToTag($scope.tag)
|
|
|
|
$scope.areSelectedProjectsInTag = true
|
2014-06-12 10:22:49 -04:00
|
|
|
|
2014-06-13 08:55:55 -04:00
|
|
|
ProjectPageApp.controller 'NewTagModalController', ($scope, $modalInstance, $timeout) ->
|
|
|
|
$scope.inputs =
|
2014-06-13 10:24:20 -04:00
|
|
|
newTagName: ""
|
2014-06-12 11:47:46 -04:00
|
|
|
|
2014-06-13 08:55:55 -04:00
|
|
|
$modalInstance.opened.then () ->
|
|
|
|
$timeout () ->
|
|
|
|
$scope.$broadcast "open"
|
|
|
|
, 700
|
2014-06-12 11:47:46 -04:00
|
|
|
|
2014-06-13 08:55:55 -04:00
|
|
|
$scope.create = () ->
|
|
|
|
$modalInstance.close($scope.inputs.newTagName)
|
2014-06-12 11:47:46 -04:00
|
|
|
|
2014-06-13 08:55:55 -04:00
|
|
|
$scope.cancel = () ->
|
|
|
|
$modalInstance.dismiss('cancel')
|
2014-06-13 10:24:20 -04:00
|
|
|
|
|
|
|
ProjectPageApp.controller 'RenameProjectModalController', ($scope, $modalInstance, $timeout, projectName) ->
|
|
|
|
$scope.inputs =
|
|
|
|
projectName: projectName
|
|
|
|
|
|
|
|
$modalInstance.opened.then () ->
|
|
|
|
$timeout () ->
|
|
|
|
$scope.$broadcast "open"
|
|
|
|
, 700
|
|
|
|
|
|
|
|
$scope.rename = () ->
|
|
|
|
$modalInstance.close($scope.inputs.projectName)
|
|
|
|
|
|
|
|
$scope.cancel = () ->
|
|
|
|
$modalInstance.dismiss('cancel')
|
2014-06-13 11:05:44 -04:00
|
|
|
|
2014-06-16 10:32:20 -04:00
|
|
|
ProjectPageApp.controller 'CloneProjectModalController', ($scope, $modalInstance, $timeout, project) ->
|
|
|
|
$scope.inputs =
|
|
|
|
projectName: project.name + " (Copy)"
|
|
|
|
$scope.state =
|
|
|
|
inflight: false
|
|
|
|
|
|
|
|
$modalInstance.opened.then () ->
|
|
|
|
$timeout () ->
|
|
|
|
$scope.$broadcast "open"
|
|
|
|
, 700
|
|
|
|
|
|
|
|
$scope.clone = () ->
|
|
|
|
$scope.state.inflight = true
|
|
|
|
$scope
|
|
|
|
.cloneProject(project, $scope.inputs.projectName)
|
|
|
|
.then (project_id) ->
|
|
|
|
$scope.state.inflight = false
|
|
|
|
$modalInstance.close(project_id)
|
|
|
|
|
|
|
|
$scope.cancel = () ->
|
|
|
|
$modalInstance.dismiss('cancel')
|
|
|
|
|
2014-06-13 11:05:44 -04:00
|
|
|
ProjectPageApp.controller 'NewProjectModalController', ($scope, $modalInstance, $timeout, template) ->
|
|
|
|
$scope.inputs =
|
|
|
|
projectName: ""
|
|
|
|
$scope.state =
|
|
|
|
inflight: false
|
|
|
|
|
|
|
|
$modalInstance.opened.then () ->
|
|
|
|
$timeout () ->
|
|
|
|
$scope.$broadcast "open"
|
|
|
|
, 700
|
|
|
|
|
|
|
|
$scope.create = () ->
|
|
|
|
$scope.state.inflight = true
|
|
|
|
$scope
|
|
|
|
.createProject($scope.inputs.projectName, template)
|
|
|
|
.then (project_id) ->
|
|
|
|
$scope.state.inflight = false
|
|
|
|
$modalInstance.close(project_id)
|
|
|
|
|
|
|
|
$scope.cancel = () ->
|
2014-06-13 12:11:36 -04:00
|
|
|
$modalInstance.dismiss('cancel')
|
|
|
|
|
|
|
|
ProjectPageApp.directive 'ngFineUpload', ($timeout) ->
|
|
|
|
return (scope, element, attrs) ->
|
|
|
|
new qq.FineUploader
|
|
|
|
element: element[0]
|
|
|
|
multiple: false
|
|
|
|
disabledCancelForFormUploads: true
|
|
|
|
validation:
|
|
|
|
allowedExtensions: ["zip"]
|
|
|
|
request:
|
|
|
|
endpoint: "/project/new/upload"
|
|
|
|
forceMultipart: true
|
|
|
|
params:
|
|
|
|
_csrf: window.csrfToken
|
|
|
|
callbacks:
|
|
|
|
onComplete: (error, name, response)->
|
|
|
|
if response.project_id?
|
|
|
|
window.location = '/project/'+response.project_id
|
|
|
|
text:
|
|
|
|
waitingForResponse: "Creating project..."
|
|
|
|
failUpload: "Upload failed. Is it a valid zip file?"
|
|
|
|
uploadButton: "Select a .zip file"
|
|
|
|
template: """
|
|
|
|
<div class="qq-uploader">
|
|
|
|
<div class="qq-upload-drop-area"><span>{dragZoneText}</span></div>
|
|
|
|
<div class="qq-upload-button btn btn-primary btn-lg">
|
|
|
|
<div>{uploadButtonText}</div>
|
|
|
|
</div>
|
|
|
|
<span class="or btn-lg"> or </span>
|
|
|
|
<span class="drag-here btn-lg">drag a .zip file</span>
|
|
|
|
<span class="qq-drop-processing"><span>{dropProcessingText}</span><span class="qq-drop-processing-spinner"></span></span>
|
|
|
|
<ul class="qq-upload-list"></ul>
|
|
|
|
</div>
|
|
|
|
"""
|
|
|
|
|
|
|
|
ProjectPageApp.controller 'UploadProjectModalController', ($scope, $modalInstance, $timeout) ->
|
|
|
|
$scope.cancel = () ->
|
|
|
|
$modalInstance.dismiss('cancel')
|