Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gl_form.js.coffee « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d540cc4dc467f1802055bc5a32d06267acd4181d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
class @GLForm
  constructor: (@form) ->
    @textarea = @form.find('textarea.js-gfm-input')

    # Before we start, we should clean up any previous data for this form
    @destroy()

    # Setup the form
    @setupForm()

    @form.data 'gl-form', @

  destroy: ->
    # Clean form listeners
    @clearEventListeners()
    @form.data 'gl-form', null

  setupForm: ->
    isNewForm = @form.is(':not(.gfm-form)')

    @form.removeClass 'js-new-note-form'

    if isNewForm
      @form.find('.div-dropzone').remove()
      @form.addClass('gfm-form')
      disableButtonIfEmptyField @form.find('.js-note-text'), @form.find('.js-comment-button')

      # remove notify commit author checkbox for non-commit notes
      GitLab.GfmAutoComplete.setup()
      new DropzoneInput(@form)

      autosize(@textarea)

      # form and textarea event listeners
      @addEventListeners()

    # hide discard button
    @form.find('.js-note-discard').hide()

    @form.show()

  clearEventListeners: ->
    @textarea.off 'focus'
    @textarea.off 'blur'

  addEventListeners: ->
    @textarea.on 'focus', ->
      $(@).closest('.md-area').addClass 'is-focused'

    @textarea.on 'blur', ->
      $(@).closest('.md-area').removeClass 'is-focused'