Skip to content

Commit 5df6e67

Browse files
pkp/pkp-lib#10290 Refine ParticipantManager permission logic (#509)
1 parent e65555c commit 5df6e67

5 files changed

+95
-19
lines changed

src/managers/GalleyManager/GalleyManager.vue

+2-6
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
v-bind="action.props || {}"
88
v-for="(action, i) in galleyManagerStore.topItems"
99
:key="i"
10-
>
11-
{{ action.label }}
12-
</component>
10+
></component>
1311
</template>
1412
<TableHeader>
1513
<TableColumn v-for="(column, i) in galleyManagerStore.columns" :key="i">
@@ -35,9 +33,7 @@
3533
v-bind="action.props || {}"
3634
v-for="(action, i) in galleyManagerStore.bottomActions"
3735
:key="i"
38-
>
39-
{{ action.label }}
40-
</component>
36+
></component>
4137
</div>
4238
</template>
4339
</PkpTable>

src/managers/ParticipantManager/ParticipantManager.vue

+13-4
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@
44
<h3 class="text-2xl-bold uppercase text-heading">
55
{{ t('editor.submission.stageParticipants') }}
66
</h3>
7-
<PkpButton @click="participantManagerStore.participantAssign()">
8-
{{ t('common.assign') }}
9-
</PkpButton>
7+
<div class="flex gap-x-2">
8+
<component
9+
:is="Components[action.component] || action.component"
10+
v-bind="action.props || {}"
11+
v-for="(action, i) in participantManagerStore.topItems"
12+
:key="i"
13+
></component>
14+
</div>
1015
</div>
1116
<ul
1217
v-if="participantManagerStore.participantsList?.length"
@@ -60,16 +65,20 @@
6065
</template>
6166
<script setup>
6267
import UserAvatar from '@/components/UserAvatar/UserAvatar.vue';
63-
import PkpButton from '@/components/Button/Button.vue';
6468
import {useLocalize} from '@/composables/useLocalize';
6569
import {useParticipantManagerStore} from './participantManagerStore';
6670
import DropdownActions from '@/components/DropdownActions/DropdownActions.vue';
71+
import ParticipantManagerActionButton from './ParticipantManagerActionButton.vue';
6772
6873
const props = defineProps({
6974
submission: {type: Object, required: true},
7075
submissionStageId: {type: String, required: true},
7176
});
7277
78+
const Components = {
79+
ParticipantManagerActionButton,
80+
};
81+
7382
const participantManagerStore = useParticipantManagerStore(props);
7483
7584
const {t} = useLocalize();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<template>
2+
<PkpButton
3+
:is-primary="isPrimary"
4+
:is-secondary="isSecondary"
5+
:is-warnable="isWarnable"
6+
:is-link="isLink"
7+
@click="() => participantManagerStore[action](actionArgs)"
8+
>
9+
{{ label }}
10+
</PkpButton>
11+
</template>
12+
<script setup>
13+
import PkpButton from '@/components/Button/Button.vue';
14+
15+
import {useParticipantManagerStore} from './participantManagerStore';
16+
17+
const participantManagerStore = useParticipantManagerStore();
18+
19+
defineProps({
20+
isPrimary: {type: Boolean, required: false, default: false},
21+
isSecondary: {type: Boolean, required: false, default: false},
22+
isWarnable: {type: Boolean, required: false, default: false},
23+
action: {type: String, required: true},
24+
actionArgs: {type: Object, required: false, default: () => {}},
25+
isLink: {type: Boolean, default: false},
26+
label: {type: String, required: true},
27+
});
28+
</script>

src/managers/ParticipantManager/participantManagerStore.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,19 @@ export const useParticipantManagerStore = defineComponentStore(
7474

7575
const _actionFns = useParticipantManagerActions();
7676

77-
const itemActions = computed(() => _actionFns.getItemActions({}));
77+
const topItems = computed(() =>
78+
_actionFns.getTopItems({
79+
submission: props.submission,
80+
submissionStageId: props.submissionStageId,
81+
}),
82+
);
83+
84+
const itemActions = computed(() =>
85+
_actionFns.getItemActions({
86+
submission: props.submission,
87+
submissionStageId: props.submissionStageId,
88+
}),
89+
);
7890

7991
function enrichActionArg(args) {
8092
return {
@@ -122,6 +134,7 @@ export const useParticipantManagerStore = defineComponentStore(
122134
return {
123135
participantsList,
124136
_actionFns,
137+
topItems,
125138
itemActions,
126139
participantAssign,
127140
participantRemove,

src/managers/ParticipantManager/useParticipantManagerActions.js

+38-8
Original file line numberDiff line numberDiff line change
@@ -169,19 +169,48 @@ export function useParticipantManagerActions() {
169169
});
170170
}
171171

172-
function getItemActions() {
172+
function getTopItems({submission, submissionStageId}) {
173173
const {t} = useLocalize();
174174

175175
const actions = [];
176176

177-
// [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN, Role::ROLE_ID_SUB_EDITOR],
178-
const {hasCurrentUserAtLeastOneRole} = useCurrentUser();
177+
const {hasCurrentUserAtLeastOneAssignedRoleInStage} = useCurrentUser();
179178

180-
const canAdminister = hasCurrentUserAtLeastOneRole([
181-
pkp.const.ROLE_ID_MANAGER,
182-
pkp.const.ROLE_ID_SITE_ADMIN,
183-
pkp.const.ROLE_ID_SUB_EDITOR,
184-
]);
179+
const canAdminister = hasCurrentUserAtLeastOneAssignedRoleInStage(
180+
submission,
181+
submissionStageId,
182+
[
183+
pkp.const.ROLE_ID_MANAGER,
184+
pkp.const.ROLE_ID_SITE_ADMIN,
185+
pkp.const.ROLE_ID_SUB_EDITOR,
186+
],
187+
);
188+
189+
if (canAdminister) {
190+
actions.push({
191+
component: 'ParticipantManagerActionButton',
192+
props: {label: t('common.assign'), action: Actions.PARTICIPANT_ASSIGN},
193+
});
194+
}
195+
return actions;
196+
}
197+
198+
function getItemActions({submission, submissionStageId}) {
199+
const {t} = useLocalize();
200+
201+
const actions = [];
202+
203+
const {hasCurrentUserAtLeastOneAssignedRoleInStage} = useCurrentUser();
204+
205+
const canAdminister = hasCurrentUserAtLeastOneAssignedRoleInStage(
206+
submission,
207+
submissionStageId,
208+
[
209+
pkp.const.ROLE_ID_MANAGER,
210+
pkp.const.ROLE_ID_SITE_ADMIN,
211+
pkp.const.ROLE_ID_SUB_EDITOR,
212+
],
213+
);
185214

186215
if (canAdminister) {
187216
actions.push({
@@ -217,6 +246,7 @@ export function useParticipantManagerActions() {
217246
}
218247

219248
return {
249+
getTopItems,
220250
getItemActions,
221251
participantAssign,
222252
participantRemove,

0 commit comments

Comments
 (0)