mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
89 lines
No EOL
2.6 KiB
CoffeeScript
89 lines
No EOL
2.6 KiB
CoffeeScript
define [
|
|
"base"
|
|
], (App) ->
|
|
App.directive 'fineUpload', ($timeout) ->
|
|
return {
|
|
scope: {
|
|
multiple: "="
|
|
endpoint: "@"
|
|
waitingForResponseText: "@"
|
|
failedUploadText: "@"
|
|
uploadButtonText: "@"
|
|
dragAreaText: "@"
|
|
hintText: "@"
|
|
allowedExtensions: "="
|
|
onCompleteCallback: "="
|
|
onUploadCallback: "="
|
|
onValidateBatch: "="
|
|
onErrorCallback: "="
|
|
onSubmitCallback: "="
|
|
onCancelCallback: "="
|
|
autoUpload: "="
|
|
params: "="
|
|
control: "="
|
|
}
|
|
link: (scope, element, attrs) ->
|
|
multiple = scope.multiple or false
|
|
endpoint = scope.endpoint
|
|
if scope.allowedExtensions?
|
|
validation =
|
|
allowedExtensions: scope.allowedExtensions
|
|
else
|
|
validation = {}
|
|
text =
|
|
waitingForResponse: scope.waitingForResponseText or "Processing..."
|
|
failUpload: scope.failedUploadText or "Failed :("
|
|
uploadButton: scope.uploadButtonText or "Upload"
|
|
dragAreaText = scope.dragAreaText or "drag here"
|
|
hintText = scope.hintText or ""
|
|
maxConnections = scope.maxConnections or 1
|
|
onComplete = scope.onCompleteCallback or () ->
|
|
onUpload = scope.onUploadCallback or () ->
|
|
onError = scope.onErrorCallback or () ->
|
|
onValidateBatch = scope.onValidateBatch or () ->
|
|
onSubmit = scope.onSubmitCallback or () ->
|
|
onCancel = scope.onCancelCallback or () ->
|
|
if !scope.autoUpload?
|
|
autoUpload = true
|
|
else
|
|
autoUpload = scope.autoUpload
|
|
params = scope.params or {}
|
|
params._csrf = window.csrfToken
|
|
|
|
q = new qq.FineUploader
|
|
element: element[0]
|
|
multiple: multiple
|
|
autoUpload: autoUpload
|
|
disabledCancelForFormUploads: true
|
|
validation: validation
|
|
maxConnections: maxConnections
|
|
request:
|
|
endpoint: endpoint
|
|
forceMultipart: true
|
|
params: params
|
|
paramsInBody: false
|
|
callbacks:
|
|
onComplete: onComplete
|
|
onUpload: onUpload
|
|
onValidateBatch: onValidateBatch
|
|
onError: onError
|
|
onSubmit: onSubmit
|
|
onCancel: onCancel
|
|
text: text
|
|
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">#{dragAreaText}</span>
|
|
<span class="qq-drop-processing"><span>{dropProcessingText}</span><span class="qq-drop-processing-spinner"></span></span>
|
|
<div class="small">#{hintText}</div>
|
|
<ul class="qq-upload-list"></ul>
|
|
</div>
|
|
"""
|
|
window.q = q
|
|
scope.control?.q = q
|
|
return q
|
|
} |