mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 18:07:17 +00:00
Functioning project-linked-file importer
This commit is contained in:
parent
9c33f3f8bc
commit
103832af7d
2 changed files with 34 additions and 10 deletions
|
@ -359,7 +359,7 @@ script(type='text/ng-template', id='projectLinkedFileModalTemplate')
|
|||
ng-model="data.selectedProject"
|
||||
ng-disabled="!shouldEnableProjectSelect()"
|
||||
)
|
||||
option(value="") --
|
||||
option(value="") No Project Selected
|
||||
option(
|
||||
ng-repeat="project in data.projects"
|
||||
value="{{ project._id }}"
|
||||
|
@ -373,13 +373,24 @@ script(type='text/ng-template', id='projectLinkedFileModalTemplate')
|
|||
ng-model="data.selectedProjectEntity"
|
||||
ng-disabled="!shouldEnableProjectEntitySelect()"
|
||||
)
|
||||
option(value="") --
|
||||
option(value="") No File Selected
|
||||
option(
|
||||
ng-repeat="projectEntity in data.projectEntities"
|
||||
value="{{ projectEntity.path }}"
|
||||
) {{ projectEntity.path }}
|
||||
br
|
||||
|
||||
.form-controls
|
||||
label(for="name") File Name In This Project
|
||||
input.form-control(
|
||||
type="text"
|
||||
placeholder="example.tex"
|
||||
required
|
||||
ng-model="data.name"
|
||||
name="name"
|
||||
)
|
||||
br
|
||||
|
||||
.modal-footer
|
||||
span(ng-show="state.inFlight")
|
||||
i.fa.fa-spinner.fa-spin
|
||||
|
|
|
@ -222,6 +222,7 @@ define [
|
|||
selectedProject: null
|
||||
projectEntities: null # or []
|
||||
selectedProjectEntity: null
|
||||
name: null
|
||||
$scope.state =
|
||||
inFlight: false
|
||||
error: false
|
||||
|
@ -231,12 +232,8 @@ define [
|
|||
$scope.data.selectedProjectEntity = null
|
||||
$scope.getProjectEntities($scope.data.selectedProject)
|
||||
|
||||
$scope._reset = () ->
|
||||
$scope.state.inFlight = false
|
||||
$scope.state.error = false
|
||||
|
||||
$scope._resetAfterResponse = (opts) ->
|
||||
isError = !!opts.err
|
||||
isError = opts.err == true
|
||||
$scope.state.inFlight = false
|
||||
$scope.state.error = isError
|
||||
|
||||
|
@ -257,7 +254,8 @@ define [
|
|||
data.projects &&
|
||||
data.selectedProject &&
|
||||
data.projectEntities &&
|
||||
data.selectedProjectEntity
|
||||
data.selectedProjectEntity &&
|
||||
data.name
|
||||
|
||||
$scope.getUserProjects = () ->
|
||||
$scope.state.inFlight = true
|
||||
|
@ -266,7 +264,8 @@ define [
|
|||
})
|
||||
.then (resp) ->
|
||||
$scope.data.projectEntities = null
|
||||
$scope.data.projects = resp.data.projects
|
||||
$scope.data.projects = resp.data.projects.filter (p) ->
|
||||
p._id != ide.project_id
|
||||
$scope._resetAfterResponse(err: false)
|
||||
.catch (err) ->
|
||||
$scope._resetAfterResponse(err: true)
|
||||
|
@ -291,7 +290,21 @@ define [
|
|||
$timeout($scope.init, 100)
|
||||
|
||||
$scope.create = () ->
|
||||
console.log ">> create"
|
||||
project = $scope.data.selectedProject
|
||||
path = $scope.data.selectedProjectEntity
|
||||
name = $scope.data.name
|
||||
$scope.state.inFlight = true
|
||||
ide.fileTreeManager
|
||||
.createLinkedFile(name, parent_folder, 'project_file', {
|
||||
source_project_id: project,
|
||||
source_entity_path: path
|
||||
})
|
||||
.then () ->
|
||||
$scope._resetAfterResponse(err: false)
|
||||
$modalInstance.close()
|
||||
.catch (response)->
|
||||
{ data } = response
|
||||
$scope._resetAfterResponse(err: true)
|
||||
|
||||
$scope.cancel = () ->
|
||||
$modalInstance.dismiss('cancel')
|
||||
|
|
Loading…
Reference in a new issue