1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-25 03:20:23 +01:00
metamask-extension/ui/pages/confirmation/templates/snaps/snap-confirmation/snap-confirmation.js

45 lines
1.2 KiB
JavaScript
Raw Normal View History

import { mapToTemplate } from '../../../../../components/app/snaps/snap-ui-renderer';
import { DelineatorType } from '../../../../../helpers/constants/snaps';
function getValues(pendingApproval, t, actions) {
const {
snapName,
requestData: { content },
} = pendingApproval;
const elementKeyIndex = { value: 0 };
return {
content: [
{
element: 'Box',
key: 'snap-dialog-content-wrapper',
props: {
marginTop: 4,
marginLeft: 4,
marginRight: 4,
},
children: {
element: 'SnapDelineator',
key: 'snap-delineator',
props: {
type: DelineatorType.Content,
snapName,
},
// TODO: Replace with SnapUIRenderer when we don't need to inject the input manually.
children: mapToTemplate(content, elementKeyIndex),
},
},
],
cancelText: t('reject'),
submitText: t('approveButtonText'),
onSubmit: () => actions.resolvePendingApproval(pendingApproval.id, true),
onCancel: () => actions.resolvePendingApproval(pendingApproval.id, false),
};
}
const snapConfirmation = {
getValues,
};
export default snapConfirmation;