diff --git a/cypress/support/commands.js b/cypress/support/commands.js index 1259dde60cc..0223b740f08 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -647,13 +647,13 @@ Cypress.Commands.add('checkTable', (articleDetails, articles, authors, submissio cy.get('h2:contains("' + articleDetails + '")').scrollIntoView(); cy.get(`div:contains("${submissionCount} of ${submissionCount} ${articles}")`); authors.forEach(author => { - cy.get('.pkpStats__panel .pkpTable__cell:contains("' + author + '")'); + cy.get('.pkpStats__panel .pkpStats__itemAuthors:contains("' + author + '")'); }); cy.get('input.pkpSearch__input').type('shouldreturnzeromatches', {delay: 0}); cy.get('div:contains("No ' + articles + ' were found with usage statistics matching these parameters.")'); cy.get('div:contains("0 of 0 ' + articles + '")'); cy.get('input.pkpSearch__input').clear().type(authors[0], {delay: 0}); - cy.get('.pkpStats__panel .pkpTable__cell:contains("' + authors[0] + '")'); + cy.get('.pkpStats__panel .pkpStats__itemAuthors:contains("' + authors[0] + '")'); cy.get(`div:contains("${submissionCountFromAuthor} of ${submissionCountFromAuthor} ${articles}")`); cy.get('input.pkpSearch__input').clear(); }); diff --git a/cypress/tests/integration/Jobs.cy.js b/cypress/tests/integration/Jobs.cy.js index 10f6a3875a4..c4de58d87b5 100644 --- a/cypress/tests/integration/Jobs.cy.js +++ b/cypress/tests/integration/Jobs.cy.js @@ -23,7 +23,7 @@ describe('Jobs tests', function() { cy.waitJQuery(); cy.get('.pkpTable') - .find('span:contains("queuedTestJob")') + .find('td:contains("queuedTestJob")') .should('have.length', 2) .should('be.visible'); @@ -34,7 +34,7 @@ describe('Jobs tests', function() { cy.waitJQuery(); cy.get('.pkpTable') - .find('span:contains("queuedTestJob")') + .find('td:contains("queuedTestJob")') .should('have.length', 0); cy.logout(); @@ -62,7 +62,7 @@ describe('Jobs tests', function() { // check for 4 failed job rows cy.get('.pkpTable') - .find('span:contains("queuedTestJob")') + .find('td:contains("queuedTestJob")') .should('have.length', 4) .should('be.visible'); @@ -71,7 +71,7 @@ describe('Jobs tests', function() { // check for 3 failed job rows cy.get('.pkpTable') - .find('span:contains("queuedTestJob")') + .find('td:contains("queuedTestJob")') .should('have.length', 3) .should('be.visible'); @@ -80,7 +80,7 @@ describe('Jobs tests', function() { // check for 2 failed job rows cy.get('.pkpTable') - .find('span:contains("queuedTestJob")') + .find('td:contains("queuedTestJob")') .should('have.length', 2); // Back to Jobs page @@ -90,7 +90,7 @@ describe('Jobs tests', function() { // Check for one job in queue which just redispatch from failed job page cy.get('.pkpTable') - .find('span:contains("queuedTestJob")') + .find('td:contains("queuedTestJob")') .should('have.length', 1); // Back to failed jobs page @@ -114,7 +114,7 @@ describe('Jobs tests', function() { // check for 0 failed job rows after requeue all action cy.get('.pkpTable') - .find('span:contains("queuedTestJob")') + .find('td:contains("queuedTestJob")') .should('have.length', 0); // Confirm that 'Requeue All Failed Jobs' button has removed from view @@ -127,7 +127,7 @@ describe('Jobs tests', function() { // Check for 2 more jobs(in totla 3) in queue which just redispatch via requeue all action cy.get('.pkpTable') - .find('span:contains("queuedTestJob")') + .find('td:contains("queuedTestJob")') .should('have.length', 3); // purge all existing jobs in the test queue @@ -137,7 +137,7 @@ describe('Jobs tests', function() { cy.waitJQuery(); cy.get('.pkpTable') - .find('span:contains("queuedTestJob")') + .find('td:contains("queuedTestJob")') .should('have.length', 0); cy.logout(); diff --git a/js/load.js b/js/load.js index 4437b860198..c00ae7f1305 100644 --- a/js/load.js +++ b/js/load.js @@ -65,8 +65,12 @@ import Orderer from '@/components/Orderer/Orderer.vue'; import Pagination from '@/components/Pagination/Pagination.vue'; import ProgressBar from '@/components/ProgressBar/ProgressBar.vue'; import Search from '@/components/Search/Search.vue'; -import Table from '@/components/Table/Table.vue'; -import TableCell from '@/components/Table/TableCell.vue'; +import Table from '@/components/TableNext/Table.vue'; +import TableCell from '@/components/TableNext/TableCell.vue'; +import TableColumn from '@/components/TableNext/TableColumn.vue'; +import TableHeader from '@/components/TableNext/TableHeader.vue'; +import TableBody from '@/components/TableNext/TableBody.vue'; +import TableRow from '@/components/TableNext/TableRow.vue'; import Tooltip from '@/components/Tooltip/Tooltip.vue'; // Form components from UI Library @@ -80,7 +84,7 @@ import FieldControlledVocab from '@/components/Form/fields/FieldControlledVocab. import FieldHtml from '@/components/Form/fields/FieldHtml.vue'; import FieldMetadataSetting from '@/components/Form/fields/FieldMetadataSetting.vue'; import FieldOptions from '@/components/Form/fields/FieldOptions.vue'; -import FieldOrcid from "@/components/Form/fields/FieldOrcid.vue"; +import FieldOrcid from '@/components/Form/fields/FieldOrcid.vue'; import FieldPreparedContent from '@/components/Form/fields/FieldPreparedContent.vue'; import FieldPubId from '@/components/Form/fields/FieldPubId.vue'; import FieldRadioInput from '@/components/Form/fields/FieldRadioInput.vue'; @@ -158,7 +162,11 @@ VueRegistry.registerComponent('PkpPagination', Pagination); VueRegistry.registerComponent('PkpProgressBar', ProgressBar); VueRegistry.registerComponent('PkpSearch', Search); VueRegistry.registerComponent('PkpTable', Table); +VueRegistry.registerComponent('PkpTableBody', TableBody); VueRegistry.registerComponent('PkpTableCell', TableCell); +VueRegistry.registerComponent('PkpTableColumn', TableColumn); +VueRegistry.registerComponent('PkpTableHeader', TableHeader); +VueRegistry.registerComponent('PkpTableRow', TableRow); VueRegistry.registerComponent('PkpTooltip', Tooltip); // Register Form components diff --git a/pages/admin/AdminHandler.php b/pages/admin/AdminHandler.php index 32113d5fefa..912cad54523 100644 --- a/pages/admin/AdminHandler.php +++ b/pages/admin/AdminHandler.php @@ -519,10 +519,10 @@ public function jobs($args, $request) 'name' => __('navigation.tools.jobs'), ]; - $templateMgr->setState($this->getJobsTableState($request)); + $templateMgr->setState(['pageInitConfig' => $this->getJobsTableState($request)]); $templateMgr->assign([ - 'pageComponent' => 'JobsPage', + 'pageComponent' => 'Page', 'breadcrumbs' => $breadcrumbs, 'pageTitle' => 'navigation.tools.jobs', ]); @@ -587,10 +587,10 @@ public function failedJobs($args, $request) 'name' => __('navigation.tools.jobs.failed'), ]; - $templateMgr->setState($this->getFailedJobsTableState($request)); + $templateMgr->setState(['pageInitConfig' => $this->getFailedJobsTableState($request)]); $templateMgr->assign([ - 'pageComponent' => 'FailedJobsPage', + 'pageComponent' => 'Page', 'breadcrumbs' => $breadcrumbs, 'pageTitle' => 'navigation.tools.jobs.failed', ]); @@ -677,25 +677,29 @@ public function failedJobDetails($args, $request) 'name' => __('navigation.tools.jobs.failed.details'), ]; - $templateMgr->setState([ - 'label' => __('navigation.tools.job.failed.details.view', ['id' => $failedJob->id]), - 'columns' => [ - [ - 'name' => 'attribute', - 'label' => __('admin.job.failed.list.attribute'), - 'value' => 'attribute', - ], - [ - 'name' => 'value', - 'label' => __('admin.job.failed.list.attribute.value'), - 'value' => 'value', - ], - ], - 'rows' => $rows, - ]); + $templateMgr->setState( + [ + 'pageInitConfig' => [ + 'label' => __('navigation.tools.job.failed.details.view', ['id' => $failedJob->id]), + 'columns' => [ + [ + 'name' => 'attribute', + 'label' => __('admin.job.failed.list.attribute'), + 'value' => 'attribute', + ], + [ + 'name' => 'value', + 'label' => __('admin.job.failed.list.attribute.value'), + 'value' => 'value', + ], + ], + 'rows' => $rows, + ] + ] + ); $templateMgr->assign([ - 'pageComponent' => 'FailedJobDetailsPage', + 'pageComponent' => 'Page', 'breadcrumbs' => $breadcrumbs, 'pageTitle' => 'navigation.tools.jobs.failed.details', ]); diff --git a/templates/admin/failedJobDetails.tpl b/templates/admin/failedJobDetails.tpl index 540e292b147..ff262a6359b 100644 --- a/templates/admin/failedJobDetails.tpl +++ b/templates/admin/failedJobDetails.tpl @@ -13,27 +13,7 @@
{{ row.value }}- - -