@@ -169,19 +169,48 @@ export function useParticipantManagerActions() {
169
169
} ) ;
170
170
}
171
171
172
- function getItemActions ( ) {
172
+ function getTopItems ( { submission , submissionStageId } ) {
173
173
const { t} = useLocalize ( ) ;
174
174
175
175
const actions = [ ] ;
176
176
177
- // [Role::ROLE_ID_MANAGER, Role::ROLE_ID_SITE_ADMIN, Role::ROLE_ID_SUB_EDITOR],
178
- const { hasCurrentUserAtLeastOneRole} = useCurrentUser ( ) ;
177
+ const { hasCurrentUserAtLeastOneAssignedRoleInStage} = useCurrentUser ( ) ;
179
178
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
+ ) ;
185
214
186
215
if ( canAdminister ) {
187
216
actions . push ( {
@@ -217,6 +246,7 @@ export function useParticipantManagerActions() {
217
246
}
218
247
219
248
return {
249
+ getTopItems,
220
250
getItemActions,
221
251
participantAssign,
222
252
participantRemove,
0 commit comments