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

Add a pagination component #832

Merged
merged 175 commits into from
Jan 14, 2023
Merged

Add a pagination component #832

merged 175 commits into from
Jan 14, 2023

Commits on Jan 13, 2023

  1. Configuration menu
    Copy the full SHA
    f383826 View commit details
    Browse the repository at this point in the history
  2. Create PaginationServiceTest.php

    Update PaginationService.php
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    288d1bd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    def9e53 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5002941 View commit details
    Browse the repository at this point in the history
  5. Revert "Add pagination settings getter"

    This reverts commit 475996a.
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    ab7ce8b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9c198be View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a451f05 View commit details
    Browse the repository at this point in the history
  8. Add developer note

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    97db3a3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    334e926 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a71ecee View commit details
    Browse the repository at this point in the history
  11. Add $currentPage property

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    2f3369d View commit details
    Browse the repository at this point in the history
  12. Add some helper methods

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    aee20a1 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    b881754 View commit details
    Browse the repository at this point in the history
  14. Add todo

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    05fb316 View commit details
    Browse the repository at this point in the history
  15. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    5205fd0 View commit details
    Browse the repository at this point in the history
  16. Change public generator to protected void and run it in constructor

    This simplifies the class usage, and since the class is completely useless before generation there is no reason the developer should have to call the method manually.
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    1238049 View commit details
    Browse the repository at this point in the history
  17. Refactor class to be publication type agnostic

    Hopefully this class can be used outside of publications as well
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    88d799a View commit details
    Browse the repository at this point in the history
  18. Use the helper method

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    9f07022 View commit details
    Browse the repository at this point in the history
  19. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    e8489f0 View commit details
    Browse the repository at this point in the history
  20. Add fluent setter

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    c3bd95d View commit details
    Browse the repository at this point in the history
  21. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    0af55bb View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    3c24344 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    5e4b0ea View commit details
    Browse the repository at this point in the history
  24. Extract method

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    fe7f41d View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    f1fc9bf View commit details
    Browse the repository at this point in the history
  26. Rename method pagesTotal to totalPages

    Breaks with the Laravel naming rules in favour of fluency
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    0ab9358 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    000d587 View commit details
    Browse the repository at this point in the history
  28. Add pageCollection option

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    2ea3e8b View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    ee6d094 View commit details
    Browse the repository at this point in the history
  30. Revert "Add pageCollection option"

    This reverts commit 418d8c5.
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    cfb2451 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    4783dcc View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    671244b View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    26c8a57 View commit details
    Browse the repository at this point in the history
  34. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    425b7dc View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    8b8bb29 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    84e8dd5 View commit details
    Browse the repository at this point in the history
  37. Split variables

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    9bb534c View commit details
    Browse the repository at this point in the history
  38. Rename loop variable

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    d21c27d View commit details
    Browse the repository at this point in the history
  39. Unwrap key from loop as that resets indexing

    Otherwise we need an offset so the list starts at one
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    7311779 View commit details
    Browse the repository at this point in the history
  40. Update todo semantics

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    822d09d View commit details
    Browse the repository at this point in the history
  41. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    6f03eac View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    49dcd91 View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    06cea27 View commit details
    Browse the repository at this point in the history
  44. Support pretty URLs

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    260a875 View commit details
    Browse the repository at this point in the history
  45. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    5a66a65 View commit details
    Browse the repository at this point in the history
  46. Configuration menu
    Copy the full SHA
    2542a76 View commit details
    Browse the repository at this point in the history
  47. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    cda03c4 View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    2840393 View commit details
    Browse the repository at this point in the history
  49. Configuration menu
    Copy the full SHA
    882313b View commit details
    Browse the repository at this point in the history
  50. Configuration menu
    Copy the full SHA
    fe4fa86 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    94772d8 View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    ad32eb6 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    2862914 View commit details
    Browse the repository at this point in the history
  54. Import exceptions

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    6c96fcd View commit details
    Browse the repository at this point in the history
  55. Configuration menu
    Copy the full SHA
    7a20fa9 View commit details
    Browse the repository at this point in the history
  56. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    cf42533 View commit details
    Browse the repository at this point in the history
  57. Configuration menu
    Copy the full SHA
    bd594f0 View commit details
    Browse the repository at this point in the history
  58. Configuration menu
    Copy the full SHA
    a61b01e View commit details
    Browse the repository at this point in the history
  59. Configuration menu
    Copy the full SHA
    a922b62 View commit details
    Browse the repository at this point in the history
  60. Configuration menu
    Copy the full SHA
    5bfa270 View commit details
    Browse the repository at this point in the history
  61. Configuration menu
    Copy the full SHA
    ec9cedd View commit details
    Browse the repository at this point in the history
  62. Remove developer notes

    This reverts the following commits:
    
    0f2b7aa
    eb110a9
    d95446f
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    144fc21 View commit details
    Browse the repository at this point in the history
  63. Move todo

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    fec2c60 View commit details
    Browse the repository at this point in the history
  64. Configuration menu
    Copy the full SHA
    ac6282c View commit details
    Browse the repository at this point in the history
  65. Configuration menu
    Copy the full SHA
    2b4fcd0 View commit details
    Browse the repository at this point in the history
  66. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    c80d4bf View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    b854c0a View commit details
    Browse the repository at this point in the history
  68. Configuration menu
    Copy the full SHA
    4cb5e8a View commit details
    Browse the repository at this point in the history
  69. Rename method itemsStartNumber to firstItemNumberOnPage

    Thanks ChatGPT for suggesting it!
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    99b5fe8 View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    783ebe5 View commit details
    Browse the repository at this point in the history
  71. Expand method names

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    8106793 View commit details
    Browse the repository at this point in the history
  72. Configuration menu
    Copy the full SHA
    fe6d334 View commit details
    Browse the repository at this point in the history
  73. Revert "Rename method to lastNumber"

    This reverts commit 0275bf1.
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    523bc60 View commit details
    Browse the repository at this point in the history
  74. Remove the itemsTotal method to reduce premature class bloat

    And it's really simple to implement without extensions when needed.
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    a3e2b73 View commit details
    Browse the repository at this point in the history
  75. Rename traversal question methods

    Yes, this is very "left-to-right" centric, but so is the code. I'm going for clarity here, and if/when we add support for RTL this is not the place to start. I use LTR, so that's what I'm doing. Open to discussion and collaboration, but like I said, this is not the place to start.
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    19387b5 View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    bd6cff7 View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    65ac7f7 View commit details
    Browse the repository at this point in the history
  78. Configuration menu
    Copy the full SHA
    25a8050 View commit details
    Browse the repository at this point in the history
  79. Configuration menu
    Copy the full SHA
    8944770 View commit details
    Browse the repository at this point in the history
  80. Configuration menu
    Copy the full SHA
    1e1d323 View commit details
    Browse the repository at this point in the history
  81. Change previous/next methods to return link instead number to match r…

    …oute because that just makes sense
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    28d6aba View commit details
    Browse the repository at this point in the history
  82. Configuration menu
    Copy the full SHA
    51feb9b View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    6f94388 View commit details
    Browse the repository at this point in the history
  84. Configuration menu
    Copy the full SHA
    4d7a307 View commit details
    Browse the repository at this point in the history
  85. Inline local variable

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    eb5e6ce View commit details
    Browse the repository at this point in the history
  86. Configuration menu
    Copy the full SHA
    2e34c72 View commit details
    Browse the repository at this point in the history
  87. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    e269df1 View commit details
    Browse the repository at this point in the history
  88. Configuration menu
    Copy the full SHA
    50190a0 View commit details
    Browse the repository at this point in the history
  89. Reorder helper methods

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    f071c29 View commit details
    Browse the repository at this point in the history
  90. Add PHPDoc

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    7a6efc6 View commit details
    Browse the repository at this point in the history
  91. Rename method getPaginatedPageCollection to getPaginatedCollection to…

    … reduce confusion between other usages of the word page
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    22cb074 View commit details
    Browse the repository at this point in the history
  92. Configuration menu
    Copy the full SHA
    d6ba234 View commit details
    Browse the repository at this point in the history
  93. Import used functions

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    bd8ac7f View commit details
    Browse the repository at this point in the history
  94. Configuration menu
    Copy the full SHA
    9ef3de9 View commit details
    Browse the repository at this point in the history
  95. Configuration menu
    Copy the full SHA
    aeab259 View commit details
    Browse the repository at this point in the history
  96. Configuration menu
    Copy the full SHA
    f278a5f View commit details
    Browse the repository at this point in the history
  97. Revert "Rename internal property $chunks to $items"

    This reverts commit cddc353.
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    5329712 View commit details
    Browse the repository at this point in the history
  98. Configuration menu
    Copy the full SHA
    c08604f View commit details
    Browse the repository at this point in the history
  99. Configuration menu
    Copy the full SHA
    409bde0 View commit details
    Browse the repository at this point in the history
  100. Configuration menu
    Copy the full SHA
    381ca94 View commit details
    Browse the repository at this point in the history
  101. Reorder helper methods

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    373ad5e View commit details
    Browse the repository at this point in the history
  102. Configuration menu
    Copy the full SHA
    8dc7f8a View commit details
    Browse the repository at this point in the history
  103. Configuration menu
    Copy the full SHA
    2aaede4 View commit details
    Browse the repository at this point in the history
  104. Extract protected helper

    ...that is useless in it self  (hence why it's not public like the lastPage method) but makes the overall code readable as it's easier to visually diff differences
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    7a87cc2 View commit details
    Browse the repository at this point in the history
  105. Extract method

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    a79da6a View commit details
    Browse the repository at this point in the history
  106. Configuration menu
    Copy the full SHA
    2cb4933 View commit details
    Browse the repository at this point in the history
  107. Extract method

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    d0c2dc4 View commit details
    Browse the repository at this point in the history
  108. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    b4abfa2 View commit details
    Browse the repository at this point in the history
  109. Configuration menu
    Copy the full SHA
    f617557 View commit details
    Browse the repository at this point in the history
  110. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    14673ff View commit details
    Browse the repository at this point in the history
  111. Configuration menu
    Copy the full SHA
    fd39e2d View commit details
    Browse the repository at this point in the history
  112. Configuration menu
    Copy the full SHA
    0237f3d View commit details
    Browse the repository at this point in the history
  113. Configuration menu
    Copy the full SHA
    9adf1bd View commit details
    Browse the repository at this point in the history
  114. Configuration menu
    Copy the full SHA
    1285bfc View commit details
    Browse the repository at this point in the history
  115. Add some top margin

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    89d5bad View commit details
    Browse the repository at this point in the history
  116. Configuration menu
    Copy the full SHA
    602ab9a View commit details
    Browse the repository at this point in the history
  117. Configuration menu
    Copy the full SHA
    9d49cb6 View commit details
    Browse the repository at this point in the history
  118. Configuration menu
    Copy the full SHA
    c013cf8 View commit details
    Browse the repository at this point in the history
  119. Configuration menu
    Copy the full SHA
    4132df5 View commit details
    Browse the repository at this point in the history
  120. Configuration menu
    Copy the full SHA
    5a8da70 View commit details
    Browse the repository at this point in the history
  121. Configuration menu
    Copy the full SHA
    32da5bc View commit details
    Browse the repository at this point in the history
  122. Create PaginationServiceTest.php

    Update PaginationService.php
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    985f46d View commit details
    Browse the repository at this point in the history
  123. Configuration menu
    Copy the full SHA
    be958e1 View commit details
    Browse the repository at this point in the history
  124. Configuration menu
    Copy the full SHA
    c5486d6 View commit details
    Browse the repository at this point in the history
  125. Configuration menu
    Copy the full SHA
    fd44605 View commit details
    Browse the repository at this point in the history
  126. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    b426871 View commit details
    Browse the repository at this point in the history
  127. Configuration menu
    Copy the full SHA
    4ef8fe5 View commit details
    Browse the repository at this point in the history
  128. Revert "Use virtual filesystem to speed up test"

    This reverts commit b2e998b because of b4b3402
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    99e8b01 View commit details
    Browse the repository at this point in the history
  129. Configuration menu
    Copy the full SHA
    51d5183 View commit details
    Browse the repository at this point in the history
  130. Change public generator to protected void and run it in constructor

    This simplifies the class usage, and since the class is completely useless before generation there is no reason the developer should have to call the method manually.
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    d6ebada View commit details
    Browse the repository at this point in the history
  131. Replace mock with actual

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    4690953 View commit details
    Browse the repository at this point in the history
  132. Extract testing helper

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    83833c1 View commit details
    Browse the repository at this point in the history
  133. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    4b30b65 View commit details
    Browse the repository at this point in the history
  134. Refactor class to be publication type agnostic

    Hopefully this class can be used outside of publications as well
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    038689a View commit details
    Browse the repository at this point in the history
  135. Refactor to use simple array instead of full files for mocked data

    Saving about 80ms per test run (now 0.001ms) without affecting the outcome of the test
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    2633757 View commit details
    Browse the repository at this point in the history
  136. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    4a4aad7 View commit details
    Browse the repository at this point in the history
  137. Configuration menu
    Copy the full SHA
    6eef830 View commit details
    Browse the repository at this point in the history
  138. Test setter and getter

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    1e3483f View commit details
    Browse the repository at this point in the history
  139. Configuration menu
    Copy the full SHA
    4e4745d View commit details
    Browse the repository at this point in the history
  140. Configuration menu
    Copy the full SHA
    b0f8d60 View commit details
    Browse the repository at this point in the history
  141. Configuration menu
    Copy the full SHA
    3abff87 View commit details
    Browse the repository at this point in the history
  142. Configuration menu
    Copy the full SHA
    7140a6b View commit details
    Browse the repository at this point in the history
  143. Configuration menu
    Copy the full SHA
    d42d166 View commit details
    Browse the repository at this point in the history
  144. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    bc9e758 View commit details
    Browse the repository at this point in the history
  145. Code formatting

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    6b2da40 View commit details
    Browse the repository at this point in the history
  146. Configuration menu
    Copy the full SHA
    b5bde61 View commit details
    Browse the repository at this point in the history
  147. Configuration menu
    Copy the full SHA
    c7701c1 View commit details
    Browse the repository at this point in the history
  148. Configuration menu
    Copy the full SHA
    1b1e000 View commit details
    Browse the repository at this point in the history
  149. Configuration menu
    Copy the full SHA
    be75f5b View commit details
    Browse the repository at this point in the history
  150. Copilot generate tests

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    dd14b50 View commit details
    Browse the repository at this point in the history
  151. Configuration menu
    Copy the full SHA
    80c2a30 View commit details
    Browse the repository at this point in the history
  152. Configuration menu
    Copy the full SHA
    6967c46 View commit details
    Browse the repository at this point in the history
  153. Configuration menu
    Copy the full SHA
    e1f0f8f View commit details
    Browse the repository at this point in the history
  154. Fix up generated tests

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    2845a16 View commit details
    Browse the repository at this point in the history
  155. Configuration menu
    Copy the full SHA
    9b77046 View commit details
    Browse the repository at this point in the history
  156. Configuration menu
    Copy the full SHA
    fc414f6 View commit details
    Browse the repository at this point in the history
  157. Revert "Inline local test variables"

    This reverts commit b129b6b.
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    82f2038 View commit details
    Browse the repository at this point in the history
  158. Configuration menu
    Copy the full SHA
    d584b21 View commit details
    Browse the repository at this point in the history
  159. Add test stub

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    eb5a166 View commit details
    Browse the repository at this point in the history
  160. Configuration menu
    Copy the full SHA
    487f871 View commit details
    Browse the repository at this point in the history
  161. Rename traversal question methods

    Yes, this is very "left-to-right" centric, but so is the code. I'm going for clarity here, and if/when we add support for RTL this is not the place to start. I use LTR, so that's what I'm doing. Open to discussion and collaboration, but like I said, this is not the place to start.
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    411548e View commit details
    Browse the repository at this point in the history
  162. Configuration menu
    Copy the full SHA
    83efd5d View commit details
    Browse the repository at this point in the history
  163. Rename method getPaginatedPageCollection to getPaginatedCollection to…

    … reduce confusion between other usages of the word page
    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    ae19af7 View commit details
    Browse the repository at this point in the history
  164. Configuration menu
    Copy the full SHA
    41dd822 View commit details
    Browse the repository at this point in the history
  165. Configuration menu
    Copy the full SHA
    9c76c34 View commit details
    Browse the repository at this point in the history
  166. Configuration menu
    Copy the full SHA
    c385f68 View commit details
    Browse the repository at this point in the history
  167. Configuration menu
    Copy the full SHA
    d0543bb View commit details
    Browse the repository at this point in the history
  168. Configuration menu
    Copy the full SHA
    7a20b99 View commit details
    Browse the repository at this point in the history
  169. Apply fixes from StyleCI

    StyleCIBot authored and caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    806063b View commit details
    Browse the repository at this point in the history
  170. Configuration menu
    Copy the full SHA
    bb19b66 View commit details
    Browse the repository at this point in the history
  171. Configuration menu
    Copy the full SHA
    50a3792 View commit details
    Browse the repository at this point in the history
  172. Resolve merge conflicts

    caendesilva committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    440b9ee View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2023

  1. Configuration menu
    Copy the full SHA
    2deaff2 View commit details
    Browse the repository at this point in the history
  2. Update paginator to fall back to route basename prefixed string even …

    …if there are no routes
    
    This means that if you set a route prefix to posts, links will be generated as posts/page-1.html, even if the route does not exist. This allows the pagination links to be generated outside of the kernel (such as in a post build task)
    caendesilva committed Jan 14, 2023
    1 Configuration menu
    Copy the full SHA
    3cac7fa View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8de814b View commit details
    Browse the repository at this point in the history