-
Notifications
You must be signed in to change notification settings - Fork 174
Working with React
Alex Ilea edited this page May 4, 2017
·
4 revisions
This wiki is deprecated, see Guide to Loris React components instead
As of 16.0, elements of LORIS modules are handled using React for better rendering. Selection Filters and Pagination in Menu Filter pages are key examples.
This page contains tips on working with React for new or existing custom modules, particularly when upgrading custom code to LORIS 16.0
Change
<td align="right">{$page_links}</td>
to
<td align="right" id="pageLinks"></td>
Then add the following script tag to the end of the template file
<script>
var pageLinks = RPaginationLinks(
{
RowsPerPage : {$rowsPerPage},
Total: {$numCandidates},
onChangePage: function(pageNum) {
location.href="{$baseurl}/main.php?test_name=candidate_list&pageID=" + pageNum
},
Active: {$pageID}
});
React.render(pageLinks, document.getElementById("pageLinks"));
</script>
Make sure you change the URL in the location.href to the right module
var pageLinks = RPaginationLinks(
{
RowsPerPage : {$rowsPerPage},
Total: {$numUploads},
onChangePage: function(pageNum) {
location.href="{$baseurl}/imaging_uploader/?filter[order][field]={$filterfield}&filter[order][fieldOrder]={$filterfieldOrder}&pageID=" + pageNum
},
Active: {$pageID}
});
React.render(pageLinks, document.getElementById("pageLinks"));