2023-03-14 13:18:55 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2020-06-23 09:12:04 +00:00
|
|
|
export default (clickable, confirmation) => (actions, scope) => {
|
|
|
|
return actions.reduce(
|
|
|
|
(prev, item) => {
|
|
|
|
const itemScope = `[data-test-${item}-action]`;
|
|
|
|
return {
|
|
|
|
...prev,
|
|
|
|
[item]: clickable(`${itemScope} [role='menuitem']`),
|
|
|
|
[`confirm${item.charAt(0).toUpperCase()}${item.substr(1)}`]: clickable(
|
|
|
|
`${itemScope} [role='menu'] button`
|
|
|
|
),
|
|
|
|
};
|
|
|
|
},
|
|
|
|
{
|
|
|
|
actions: clickable('label'),
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|