aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/app/assets/javascripts/rails-ujs/start.coffee
blob: 32a915ac0b01b18f12307cf63238cc74c7069a2c (plain) (blame)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
  fire, delegate
  getData, $
  refreshCSRFTokens, CSRFProtection
  enableElement, disableElement, handleDisabledElement
  handleConfirm
  handleRemote, formSubmitButtonClick, handleMetaClick
  handleMethod
} = Rails

# For backward compatibility
if jQuery? and jQuery.ajax?
  throw new Error('If you load both jquery_ujs and rails-ujs, use rails-ujs only.') if jQuery.rails
  jQuery.rails = Rails
  jQuery.ajaxPrefilter (options, originalOptions, xhr) ->
    CSRFProtection(xhr) unless options.crossDomain

Rails.start = ->
  # Cut down on the number of issues from people inadvertently including
  # rails-ujs twice by detecting and raising an error when it happens.
  throw new Error('rails-ujs has already been loaded!') if window._rails_loaded

  # This event works the same as the load event, except that it fires every
  # time the page is loaded.
  # See https://github.com/rails/jquery-ujs/issues/357
  # See https://developer.mozilla.org/en-US/docs/Using_Firefox_1.5_caching
  window.addEventListener 'pageshow', ->
    $(Rails.formEnableSelector).forEach (el) ->
      enableElement(el) if getData(el, 'ujs:disabled')
    $(Rails.linkDisableSelector).forEach (el) ->
      enableElement(el) if getData(el, 'ujs:disabled')

  delegate document, Rails.linkDisableSelector, 'ajax:complete', enableElement
  delegate document, Rails.linkDisableSelector, 'ajax:stopped', enableElement
  delegate document, Rails.buttonDisableSelector, 'ajax:complete', enableElement
  delegate document, Rails.buttonDisableSelector, 'ajax:stopped', enableElement

  delegate document, Rails.linkClickSelector, 'click', handleDisabledElement
  delegate document, Rails.linkClickSelector, 'click', handleConfirm
  delegate document, Rails.linkClickSelector, 'click', handleMetaClick
  delegate document, Rails.linkClickSelector, 'click', disableElement
  delegate document, Rails.linkClickSelector, 'click', handleRemote
  delegate document, Rails.linkClickSelector, 'click', handleMethod

  delegate document, Rails.buttonClickSelector, 'click', handleDisabledElement
  delegate document, Rails.buttonClickSelector, 'click', handleConfirm
  delegate document, Rails.buttonClickSelector, 'click', disableElement
  delegate document, Rails.buttonClickSelector, 'click', handleRemote

  delegate document, Rails.inputChangeSelector, 'change', handleDisabledElement
  delegate document, Rails.inputChangeSelector, 'change', handleConfirm
  delegate document, Rails.inputChangeSelector, 'change', handleRemote

  delegate document, Rails.formSubmitSelector, 'submit', handleDisabledElement
  delegate document, Rails.formSubmitSelector, 'submit', handleConfirm
  delegate document, Rails.formSubmitSelector, 'submit', handleRemote
  # Normal mode submit
  # Slight timeout so that the submit button gets properly serialized
  delegate document, Rails.formSubmitSelector, 'submit', (e) -> setTimeout((-> disableElement(e)), 13)
  delegate document, Rails.formSubmitSelector, 'ajax:send', disableElement
  delegate document, Rails.formSubmitSelector, 'ajax:complete', enableElement

  delegate document, Rails.formInputClickSelector, 'click', handleDisabledElement
  delegate document, Rails.formInputClickSelector, 'click', handleConfirm
  delegate document, Rails.formInputClickSelector, 'click', formSubmitButtonClick

  document.addEventListener('DOMContentLoaded', refreshCSRFTokens)
  window._rails_loaded = true

if window.Rails is Rails and fire(document, 'rails:attachBindings')
  Rails.start()