first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-06-08 17:09:23 -04:00
commit df3a033196
17887 changed files with 8637778 additions and 0 deletions
@@ -0,0 +1,79 @@
<?php
/**
* @file classes/components/listPanels/DoiListPanel.php
*
* Copyright (c) 2014-2020 Simon Fraser University
* Copyright (c) 2000-2020 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class DoiListPanel
*
* @ingroup classes_components_list
*
* @brief A ListPanel component for viewing and editing DOIs
*/
namespace APP\components\listPanels;
use APP\components\forms\FieldSelectIssues;
use APP\core\Application;
use APP\template\TemplateManager;
use PKP\components\listPanels\PKPDoiListPanel;
use PKP\core\PKPApplication;
class DoiListPanel extends PKPDoiListPanel
{
/** @var bool Whether objects being passed to DOI List Panel are submissions or not */
public $isSubmission = true;
/** @var boolean Whether to show issue filters */
public $includeIssuesFilter = false;
/**
* Add any application-specific config to the list panel setup
*/
protected function setAppConfig(array &$config): void
{
if ($this->isSubmission) {
$config['executeActionApiUrl'] = $this->doiApiUrl . '/submissions';
} else {
$config['executeActionApiUrl'] = $this->doiApiUrl . '/issues';
// Overwrite default submission published statuses for issue-specific ones
$config['publishedStatuses'] = [
'name' => 'isPublished',
'published' => 1,
'unpublished' => 0,
];
}
if ($this->includeIssuesFilter) {
$request = Application::get()->getRequest();
$issueAutosuggestField = new FieldSelectIssues('issueIds', [
'label' => __('issue.issues'),
'value' => [],
'apiUrl' => $request->getDispatcher()->url($request, PKPApplication::ROUTE_API, $request->getContext()->getPath(), 'issues'),
]);
$config['filters'][] = [
'filters' => [
[
'title' => __('issue.issues'),
'param' => 'issueIds',
'value' => [],
'filterType' => 'pkp-filter-autosuggest',
'component' => 'field-select-issues',
'autosuggestProps' => $issueAutosuggestField->getConfig(),
]
]
];
}
// Provide required locale keys
$request = Application::get()->getRequest();
$templateMgr = TemplateManager::getManager($request);
$templateMgr->setLocaleKeys([
'article.article',
'issue.issue'
]);
}
}
@@ -0,0 +1,148 @@
<?php
/**
* @file components/listPanels/SubmissionsListPanel.php
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2000-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class SubmissionsListPanel
*
* @ingroup classes_components_listPanels
*
* @brief Instantiates and manages a UI component to list submissions.
*/
namespace APP\components\listPanels;
use APP\components\forms\FieldSelectIssues;
use APP\core\Application;
use APP\facades\Repo;
use PKP\components\forms\FieldAutosuggestPreset;
use PKP\components\listPanels\PKPSubmissionsListPanel;
class SubmissionsListPanel extends PKPSubmissionsListPanel
{
/** @var bool Whether to show inactive section filters */
public $includeActiveSectionFiltersOnly = false;
/** @var bool Whether to show issue filters */
public $includeIssuesFilter = false;
/**
* @copydoc PKPSubmissionsListPanel::getConfig()
*/
public function getConfig()
{
$config = parent::getConfig();
$request = Application::get()->getRequest();
if ($request->getContext()) {
$config['filters'][] = $this->getSectionFilters($this->includeActiveSectionFiltersOnly);
}
if ($this->includeIssuesFilter) {
$issueAutosuggestField = new FieldSelectIssues('issueIds', [
'label' => __('issue.issues'),
'value' => [],
'apiUrl' => $request->getDispatcher()->url($request, Application::ROUTE_API, $request->getContext()->getPath(), 'issues'),
]);
$config['filters'][] = [
'filters' => [
[
'title' => __('issue.issues'),
'param' => 'issueIds',
'value' => [],
'filterType' => 'pkp-filter-autosuggest',
'component' => 'field-select-issues',
'autosuggestProps' => $issueAutosuggestField->getConfig(),
]
]
];
}
return $config;
}
/**
* Get an array of workflow stages supported by the current app
*
* @return array
*/
public function getWorkflowStages()
{
return [
[
'param' => 'stageIds',
'value' => WORKFLOW_STAGE_ID_SUBMISSION,
'title' => __('manager.publication.submissionStage'),
],
[
'param' => 'stageIds',
'value' => WORKFLOW_STAGE_ID_EXTERNAL_REVIEW,
'title' => __('manager.publication.reviewStage'),
],
[
'param' => 'stageIds',
'value' => WORKFLOW_STAGE_ID_EDITING,
'title' => __('submission.copyediting'),
],
[
'param' => 'stageIds',
'value' => WORKFLOW_STAGE_ID_PRODUCTION,
'title' => __('manager.publication.productionStage'),
],
];
}
/**
* Compile the sections for passing as filters
*
* @param bool $excludeInactive show inactive section filters or not
*
* @return array
*/
public function getSectionFilters($excludeInactive = false)
{
$request = Application::get()->getRequest();
$context = $request->getContext();
$sections = Repo::section()->getSectionList($context->getId(), $excludeInactive);
// Use an autosuggest field if the list of submissions is too long
if (count($sections) > 5) {
$autosuggestField = new FieldAutosuggestPreset('sectionIds', [
'label' => __('section.sections'),
'value' => [],
'options' => array_values(array_map(function ($section) {
return [
'value' => (int) $section['id'],
'label' => $section['title'],
];
}, $sections)),
]);
return [
'filters' => [
[
'title' => __('section.sections'),
'param' => 'sectionIds',
'filterType' => 'pkp-filter-autosuggest',
'component' => 'field-autosuggest-preset',
'value' => [],
'autosuggestProps' => $autosuggestField->getConfig(),
]
],
];
}
return [
'heading' => __('section.sections'),
'filters' => array_map(function ($section) {
return [
'param' => 'sectionIds',
'value' => (int) $section['id'],
'title' => $section['title'],
];
}, $sections),
];
}
}