This commit is contained in:
Shane Kilkelly 2018-06-08 09:35:52 +01:00
parent d36dbfda07
commit 60ca298db3
5 changed files with 80 additions and 15 deletions

View file

@ -345,7 +345,7 @@ script(type='text/ng-template', id='newDocModalTemplate')
// Project Linked Files Modal
script(type='text/ng-template', id='projectLinkedFileModalTemplate')
.modal-header
h3 New file from Project
h3 New file from Project ({{ isOutputFiles }})
.modal-body
div

View file

@ -73,6 +73,10 @@ aside#left-menu.full-size(
a(href="#" ng-click="openProjectLinkedFileModal()")
i.fa.fa-exclamation.fa-fw
| Project-Linked-File Modal
li
a(href="#" ng-click="openProjectOutputLinkedFileModal()")
i.fa.fa-exclamation.fa-fw
| Project-Output-Linked-File Modal
li
a(href="#" ng-click="openLinkedFileModal()")
i.fa.fa-exclamation.fa-fw

View file

@ -53,6 +53,21 @@ define [
scope: $scope
resolve: {
parent_folder: () -> ide.fileTreeManager.getCurrentFolder()
isOutputFiles: () -> false
}
)
$scope.openProjectOutputLinkedFileModal = window.openProjectOutputLinkedFileModal = () ->
unless 'project_output_file' in window.data.enabledLinkedFileTypes
console.warn("Project linked output files are not enabled")
return
$modal.open(
templateUrl: "projectLinkedFileModalTemplate"
controller: "ProjectLinkedFileModalController"
scope: $scope
resolve: {
parent_folder: () -> ide.fileTreeManager.getCurrentFolder()
isOutputFiles: () -> true
}
)
@ -215,24 +230,32 @@ define [
]
App.controller "ProjectLinkedFileModalController", [
"$scope", "ide", "$modalInstance", "$timeout", "parent_folder",
($scope, ide, $modalInstance, $timeout, parent_folder) ->
"$scope", "ide", "$modalInstance", "$timeout", "parent_folder", "isOutputFiles",
($scope, ide, $modalInstance, $timeout, parent_folder, isOutputFiles) ->
$scope.isOutputFiles = isOutputFiles
console.log ">>>> LINKED", isOutputFiles
$scope.data =
projects: null # or []
selectedProjectId: null
projectEntities: null # or []
projectOutputFiles: null # or []
selectedProjectEntity: null
name: null
$scope.state =
inFlight:
projects: false
entities: false
compile: false
create: false
error: false
$scope.$watch 'data.selectedProjectId', (newVal, oldVal) ->
return if !newVal
$scope.data.selectedProjectEntity = null
if isOutputFiles
$scope.compileProjectAndGetOutputFiles($scope.data.selectedProjectId)
else
$scope.getProjectEntities($scope.data.selectedProjectId)
# auto-set filename based on selected file
@ -248,7 +271,7 @@ define [
_reset = (opts) ->
isError = opts.err == true
inFlight = $scope.state.inFlight
inFlight.projects = inFlight.entities = inFlight.create = false
inFlight.projects = inFlight.entities = inFlight.compile = inFlight.create = false
$scope.state.error = isError
$scope.shouldEnableProjectSelect = () ->
@ -259,6 +282,10 @@ define [
{ state, data } = $scope
return !state.inFlight.projects && !state.inFlight.entities && data.projects && data.selectedProjectId
$scope.shouldEnableProjectOutputFileSelect = () ->
{ state, data } = $scope
return !state.inFlight.projects && !state.inFlight.compile && data.projects && data.selectedProjectId
$scope.shouldEnableCreateButton = () ->
state = $scope.state
data = $scope.data
@ -266,8 +293,18 @@ define [
!state.inFlight.entities &&
data.projects &&
data.selectedProjectId &&
(
(
!isOutputFiles &&
data.projectEntities &&
data.selectedProjectEntity &&
data.selectedProjectEntity
) ||
(
isOutputFiles &&
data.projectOutputFiles &&
data.selectedProjectOutputFile
)
) &&
data.name
$scope.getUserProjects = () ->
@ -295,23 +332,43 @@ define [
.catch (err) ->
_reset(err: true)
window._C = $scope.compileProjectAndGetOutputFiles = (project_id) =>
_setInFlight('compile')
$http.post("/project/${project_id}/compile", {
check: "silent",
draft: false,
incrementalCompilesEnabled: false
_csrf: window.csrfToken
})
.then (data) ->
console.log ">> COMPILE", data
_reset(err: false)
.catch (err) ->
console.error(err)
_reset(err: true)
$scope.init = () ->
$scope.getUserProjects()
$timeout($scope.init, 0)
$scope.create = () ->
projectId = $scope.data.selectedProjectId
path = $scope.data.selectedProjectEntity
name = $scope.data.name
if !name || !path || !projectId
_reset(err: true)
return
if isOutputFiles
provider = 'project_output_file'
payload = {
source_project_id: projectId,
source_output_file_path: $scope.data.selectedProjectOutputFile
}
else
provider = 'project_file'
payload = {
source_project_id: projectId,
source_entity_path: $scope.data.selectedProjectEntity
}
_setInFlight('create')
ide.fileTreeManager
.createLinkedFile(name, parent_folder, 'project_file', {
source_project_id: projectId,
source_entity_path: path
})
.createLinkedFile(name, parent_folder, provider, payload)
.then () ->
_reset(err: false)
$modalInstance.close()

View file

@ -524,6 +524,7 @@ define [
{ data } = response
$scope.pdf.view = "pdf"
$scope.pdf.compiling = false
console.log ">>", data
parseCompileResponse(data)
.catch (response) ->
{ data, status } = response

View file

@ -7,6 +7,9 @@ define [
$scope.openProjectLinkedFileModal = () ->
window.openProjectLinkedFileModal()
$scope.openProjectOutputLinkedFileModal = () ->
window.openProjectOutputLinkedFileModal()
$scope.openLinkedFileModal = () ->
window.openLinkedFileModal()