gitlab-org--gitlab-foss/app/assets/javascripts/dropzone_input.js.coffee

205 lines
6.5 KiB
CoffeeScript
Raw Normal View History

#= require markdown_preview
2015-01-15 05:43:31 +00:00
class @DropzoneInput
constructor: (form) ->
Dropzone.autoDiscover = false
alertClass = "alert alert-danger alert-dismissable div-dropzone-alert"
alertAttr = "class=\"close\" data-dismiss=\"alert\"" + "aria-hidden=\"true\""
divHover = "<div class=\"div-dropzone-hover\"></div>"
divSpinner = "<div class=\"div-dropzone-spinner\"></div>"
divAlert = "<div class=\"" + alertClass + "\"></div>"
iconPaperclip = "<i class=\"fa fa-paperclip div-dropzone-icon\"></i>"
2015-01-15 05:43:31 +00:00
iconSpinner = "<i class=\"fa fa-spinner fa-spin div-dropzone-icon\"></i>"
2015-08-10 07:18:02 +00:00
uploadProgress = $("<div class=\"div-dropzone-progress\"></div>")
2015-01-15 05:43:31 +00:00
btnAlert = "<button type=\"button\"" + alertAttr + ">&times;</button>"
2015-02-16 18:58:40 +00:00
project_uploads_path = window.project_uploads_path or null
max_file_size = gon.max_file_size or 10
2015-01-15 05:43:31 +00:00
form_textarea = $(form).find("textarea.markdown-area")
form_textarea.wrap "<div class=\"div-dropzone\"></div>"
form_textarea.on 'paste', (event) =>
handlePaste(event)
$(form).setupMarkdownPreview()
2015-01-15 05:43:31 +00:00
form_dropzone = $(form).find('.div-dropzone')
form_dropzone.parent().addClass "div-dropzone-wrapper"
form_dropzone.append divHover
form_dropzone.find(".div-dropzone-hover").append iconPaperclip
2015-01-15 05:43:31 +00:00
form_dropzone.append divSpinner
form_dropzone.find(".div-dropzone-spinner").append iconSpinner
2015-08-10 07:18:02 +00:00
form_dropzone.find(".div-dropzone-spinner").append uploadProgress
form_dropzone.find(".div-dropzone-spinner").css
2015-01-15 05:43:31 +00:00
"opacity": 0
"display": "none"
dropzone = form_dropzone.dropzone(
2015-02-16 18:58:40 +00:00
url: project_uploads_path
2015-01-15 05:43:31 +00:00
dictDefaultMessage: ""
clickable: true
2015-02-16 18:58:40 +00:00
paramName: "file"
maxFilesize: max_file_size
2015-01-15 05:43:31 +00:00
uploadMultiple: false
headers:
"X-CSRF-Token": $("meta[name=\"csrf-token\"]").attr("content")
previewContainer: false
processing: ->
$(".div-dropzone-alert").alert "close"
dragover: ->
form_textarea.addClass "div-dropzone-focus"
form.find(".div-dropzone-hover").css "opacity", 0.7
return
dragleave: ->
form_textarea.removeClass "div-dropzone-focus"
form.find(".div-dropzone-hover").css "opacity", 0
return
drop: ->
form_textarea.removeClass "div-dropzone-focus"
form.find(".div-dropzone-hover").css "opacity", 0
form_textarea.focus()
return
success: (header, response) ->
link_markdown = response.link.markdown
2015-01-15 05:43:31 +00:00
child = $(dropzone[0]).children("textarea")
cursor_pos = child.prop "selectionStart"
value = $(child).val()
new_text = "#{value.substring(0, cursor_pos)}#{link_markdown}#{value.substring(cursor_pos, value.length)}"
$(child).val new_text + "\n"
2015-01-15 05:43:31 +00:00
return
error: (temp, errorMessage) ->
errorAlert = $(form).find('.error-alert')
checkIfMsgExists = errorAlert.children().length
2015-01-15 05:43:31 +00:00
if checkIfMsgExists is 0
errorAlert.append divAlert
2015-01-15 05:43:31 +00:00
$(".div-dropzone-alert").append btnAlert + errorMessage
return
2015-08-10 07:18:02 +00:00
totaluploadprogress: (totalUploadProgress) ->
uploadProgress.text Math.round(totalUploadProgress) + "%"
return
2015-01-15 05:43:31 +00:00
sending: ->
form_dropzone.find(".div-dropzone-spinner").css
"opacity": 0.7
"display": "inherit"
return
2015-08-10 07:18:02 +00:00
queuecomplete: ->
uploadProgress.text ""
2015-01-15 05:43:31 +00:00
$(".dz-preview").remove()
$(".markdown-area").trigger "input"
$(".div-dropzone-spinner").css
"opacity": 0
"display": "none"
return
)
child = $(dropzone[0]).children("textarea")
handlePaste = (event) ->
pasteEvent = event.originalEvent
if pasteEvent.clipboardData and pasteEvent.clipboardData.items
image = isImage(pasteEvent)
if image
event.preventDefault()
filename = getFilename(pasteEvent) or "image.png"
text = "{{" + filename + "}}"
pasteText(text)
uploadFile image.getAsFile(), filename
2015-01-15 05:43:31 +00:00
isImage = (data) ->
i = 0
while i < data.clipboardData.items.length
item = data.clipboardData.items[i]
if item.type.indexOf("image") isnt -1
return item
i++
return false
pasteText = (text) ->
caretStart = $(child)[0].selectionStart
caretEnd = $(child)[0].selectionEnd
textEnd = $(child).val().length
beforeSelection = $(child).val().substring 0, caretStart
afterSelection = $(child).val().substring caretEnd, textEnd
$(child).val beforeSelection + text + afterSelection
form_textarea.trigger "input"
getFilename = (e) ->
if window.clipboardData and window.clipboardData.getData
value = window.clipboardData.getData("Text")
else if e.clipboardData and e.clipboardData.getData
value = e.clipboardData.getData("text/plain")
value = value.split("\r")
value.first()
uploadFile = (item, filename) ->
formData = new FormData()
2015-02-16 18:58:40 +00:00
formData.append "file", item, filename
2015-01-15 05:43:31 +00:00
$.ajax
2015-02-16 18:58:40 +00:00
url: project_uploads_path
2015-01-15 05:43:31 +00:00
type: "POST"
data: formData
dataType: "json"
processData: false
contentType: false
headers:
"X-CSRF-Token": $("meta[name=\"csrf-token\"]").attr("content")
beforeSend: ->
showSpinner()
closeAlertMessage()
success: (e, textStatus, response) ->
2016-01-07 12:37:14 +00:00
insertToTextArea(filename, response.responseJSON.link.markdown)
2015-01-15 05:43:31 +00:00
error: (response) ->
showError(response.responseJSON.message)
complete: ->
closeSpinner()
insertToTextArea = (filename, url) ->
$(child).val (index, val) ->
val.replace("{{" + filename + "}}", url + "\n")
appendToTextArea = (url) ->
$(child).val (index, val) ->
val + url + "\n"
showSpinner = (e) ->
form.find(".div-dropzone-spinner").css
"opacity": 0.7
"display": "inherit"
closeSpinner = ->
form.find(".div-dropzone-spinner").css
"opacity": 0
"display": "none"
showError = (message) ->
errorAlert = $(form).find('.error-alert')
checkIfMsgExists = errorAlert.children().length
2015-01-15 05:43:31 +00:00
if checkIfMsgExists is 0
errorAlert.append divAlert
2015-01-15 05:43:31 +00:00
$(".div-dropzone-alert").append btnAlert + message
closeAlertMessage = ->
form.find(".div-dropzone-alert").alert "close"
form.find(".markdown-selector").click (e) ->
e.preventDefault()
$(@).closest('.gfm-form').find('.div-dropzone').click()
return