forked from lochmueller/calendarize
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace pagination widget in backend module
Instead of using the be.widget.paginate, the events are now paginated with the new pagination API. Additionally the option action is now part of the list action. Related lochmueller#542 Fixes lochmueller#535
- Loading branch information
Showing
7 changed files
with
196 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,43 @@ | ||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true"> | ||
|
||
<f:be.widget.paginate objects="{indices}" as="indexBlock" configuration="{itemsPerPage: 50, insertBelow: 1}"> | ||
<div class="table-fit"> | ||
<table class="table table-striped table-hover"> | ||
<thead> | ||
<tr> | ||
<th class="col-title"> | ||
Title | ||
</th> | ||
<th class="col-title"> | ||
Date | ||
</th> | ||
<th class="col-title"> | ||
Type | ||
</th> | ||
<th class="col-title"> | ||
Language | ||
</th> | ||
<th class="col-title"> | ||
ID | ||
</th> | ||
<th class="col-title"> | ||
Action | ||
</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<f:for each="{indexBlock}" as="index"> | ||
<f:render partial="Backend/Row" arguments="{index: index}"/> | ||
</f:for> | ||
</tbody> | ||
<tfoot> | ||
<tr> | ||
<td colspan="5"> | ||
<f:count subject="{indices}"/> | ||
items | ||
</td> | ||
</tr> | ||
</tfoot> | ||
</table> | ||
</div> | ||
</f:be.widget.paginate> | ||
<div class="table-fit"> | ||
<table class="table table-striped table-hover"> | ||
<thead> | ||
<tr> | ||
<th class="col-title"> | ||
Title | ||
</th> | ||
<th class="col-title"> | ||
Date | ||
</th> | ||
<th class="col-title"> | ||
Type | ||
</th> | ||
<th class="col-title"> | ||
Language | ||
</th> | ||
<th class="col-title"> | ||
ID | ||
</th> | ||
<th class="col-title"> | ||
Action | ||
</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<f:for each="{paginator.paginatedItems}" as="index"> | ||
<f:render partial="Backend/Row" arguments="{index: index}"/> | ||
</f:for> | ||
</tbody> | ||
<tfoot> | ||
<tr> | ||
<td colspan="5"> | ||
{totalAmount} | ||
items | ||
</td> | ||
</tr> | ||
</tfoot> | ||
</table> | ||
</div> | ||
<f:render partial="Backend/Pagination" arguments="{paginator:paginator, pagination:pagination}" /> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
<nav class="pagination-wrap"> | ||
<ul class="pagination"> | ||
<f:if condition="{pagination.previousPageNumber} && {pagination.previousPageNumber} >= {pagination.firstPageNumber}"> | ||
<f:then> | ||
<li class="page-item"> | ||
<a href="{f:uri.action(arguments:{currentPage: 1})}" title="{f:translate(key:'pagination.first')}" class="page-link"> | ||
<core:icon identifier="actions-view-paging-first" /> | ||
</a> | ||
</li> | ||
<li class="page-item"> | ||
<a href="{f:uri.action(arguments:{currentPage: pagination.previousPageNumber})}" title="{f:translate(key:'pagination.previous')}" class="page-link"> | ||
<core:icon identifier="actions-view-paging-previous" /> | ||
</a> | ||
</li> | ||
</f:then> | ||
<f:else> | ||
<li class="page-item disabled"> | ||
<span class="page-link"> | ||
<core:icon identifier="actions-view-paging-first" /> | ||
</span> | ||
</li> | ||
<li class="page-item disabled"> | ||
<span class="page-link"> | ||
<core:icon identifier="actions-view-paging-previous" /> | ||
</span> | ||
</li> | ||
</f:else> | ||
</f:if> | ||
<li class="page-item"> | ||
<span class="page-link"> | ||
<f:translate key="pagination.records" /> {pagination.startRecordNumber} - {pagination.endRecordNumber} | ||
</span> | ||
</li> | ||
<li class="page-item"> | ||
<span class="page-link"> | ||
<f:translate key="pagination.page" /> | ||
<form style="display:inline;" | ||
data-global-event="submit" | ||
data-action-navigate="$form=~s/$value/" | ||
data-navigate-value="{f:uri.action(arguments:'{currentPage: \'$[value]\'}')}" | ||
data-value-selector="input[name='paginator-target-page']"> | ||
<input | ||
min="{pagination.firstPageNumber}" | ||
max="{pagination.lastPageNumber}" | ||
data-number-of-pages="{paginator.numberOfPages}" | ||
name="paginator-target-page" | ||
class="form-control form-control-sm paginator-input" | ||
size="5" | ||
value="{paginator.currentPageNumber}" | ||
type="number" | ||
/> | ||
</form> | ||
/ {pagination.lastPageNumber} | ||
</span> | ||
</li> | ||
|
||
<f:if condition="{pagination.nextPageNumber} && {pagination.nextPageNumber} <= {pagination.lastPageNumber}"> | ||
<f:then> | ||
<li class="page-item"> | ||
<a href="{f:uri.action(arguments:{currentPage: pagination.nextPageNumber})}" title="{f:translate(key:'pagination.next')}" class="page-link"> | ||
<core:icon identifier="actions-view-paging-next" /> | ||
</a> | ||
</li> | ||
<li class="page-item"> | ||
<a href="{f:uri.action(arguments:{currentPage: pagination.lastPageNumber})}" title="{f:translate(key:'pagination.last')}" class="page-link"> | ||
<core:icon identifier="actions-view-paging-last" /> | ||
</a> | ||
</li> | ||
</f:then> | ||
<f:else> | ||
<li class="page-item disabled"> | ||
<span class="page-link"> | ||
<core:icon identifier="actions-view-paging-next" /> | ||
</span> | ||
</li> | ||
<li class="page-item disabled"> | ||
<span class="page-link"> | ||
<core:icon identifier="actions-view-paging-last" /> | ||
</span> | ||
</li> | ||
</f:else> | ||
</f:if> | ||
<li class="page-item"> | ||
<a href="{f:uri.action(arguments:{currentPage: paginator.currentPageNumber})}" title="{f:translate(key:'pagination.refresh')}" class="page-link"> | ||
<core:icon identifier="actions-refresh" /> | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters