Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate all jQuery promises to native ES6 Promise (ref: $.Deferred(), $.when(), $.get() and $.post()) #308

Draft
wants to merge 56 commits into
base: dev
Choose a base branch
from

Commits on Jan 18, 2023

  1. Configuration menu
    Copy the full SHA
    f2f7104 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f67ed66 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    65c9399 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ed7c43b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7603140 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a8a62dd View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    42f826b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a1f9cb4 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    12c6258 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4fded2e View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    acd3404 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    87c3a21 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    4d5e298 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    5c961cf View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    bf06032 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    de6424f View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    370c791 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    f98ceb1 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    7cfb0a3 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    76d1f69 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    dfbe30a View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    17c6476 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    adb68c6 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    619b441 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    68f2b94 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    017f133 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    e5da2d5 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    c2f873e View commit details
    Browse the repository at this point in the history
  29. Replace .fail (Jquery Deferred method) with .catch (Promise Method)

    Replace .always (Jquery Deferred method) with .finally (Promise Method)
    volterra79 committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    5219444 View commit details
    Browse the repository at this point in the history
  30. Replace .catch .fail on $.get

    Replace .finally with always on $.get
    volterra79 committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    5c74da0 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    3534b33 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    d1577eb View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    ae0c0c6 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2023

  1. Configuration menu
    Copy the full SHA
    98a4d12 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f780905 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f658c6a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    977d9f6 View commit details
    Browse the repository at this point in the history
  5. Setter function return directly a value instead a promise as $.Deferr…

    …ed used in g3wobject.js base prototype
    volterra79 committed Jan 19, 2023
    Configuration menu
    Copy the full SHA
    839549a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c7cf200 View commit details
    Browse the repository at this point in the history
  7. Promise resolve has jus one parameter <value>. So need to wrap multi …

    …values in one Object having multi values as Object properties
    volterra79 committed Jan 19, 2023
    Configuration menu
    Copy the full SHA
    7b78192 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2023

  1. Replace $.get with XHR.get and $.post with XHR.post

    Replace .fail with .catch
    volterra79 committed Jan 20, 2023
    Configuration menu
    Copy the full SHA
    cbd94bd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    757e32f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5af9b70 View commit details
    Browse the repository at this point in the history
  4. Add _promise_methods Object to handle resolve and reject from externa…

    …l of current pending workflow Promise
    volterra79 committed Jan 20, 2023
    Configuration menu
    Copy the full SHA
    54f04c8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3873f2b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2508d4b View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2023

  1. Configuration menu
    Copy the full SHA
    a733357 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dc36bc2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8aced3d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2b0da39 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2023

  1. Configuration menu
    Copy the full SHA
    92959b8 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2023

  1. Configuration menu
    Copy the full SHA
    419c113 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. Configuration menu
    Copy the full SHA
    c535906 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

  1. Configuration menu
    Copy the full SHA
    e8ca08e View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2024

  1. wrong method

    Raruto committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    2269a40 View commit details
    Browse the repository at this point in the history
  2. Clean code

    volterra79 committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    f7f4ba3 View commit details
    Browse the repository at this point in the history