mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-28 23:06:37 +01:00
47f4f4008b
* Remove unused code after snap_confirm was removed * Remove more unused code * Fix lint
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
import { mapToTemplate } from '../../../../../components/app/flask/snap-ui-renderer';
|
|
import { DelineatorType } from '../../../../../helpers/constants/flask';
|
|
|
|
function getValues(pendingApproval, t, actions) {
|
|
const {
|
|
snapName,
|
|
requestData: { content },
|
|
} = pendingApproval;
|
|
|
|
return {
|
|
content: [
|
|
{
|
|
element: 'Box',
|
|
key: 'snap-dialog-content-wrapper',
|
|
props: {
|
|
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),
|
|
},
|
|
},
|
|
],
|
|
cancelText: t('reject'),
|
|
submitText: t('approveButtonText'),
|
|
onSubmit: () => actions.resolvePendingApproval(pendingApproval.id, true),
|
|
onCancel: () => actions.resolvePendingApproval(pendingApproval.id, false),
|
|
};
|
|
}
|
|
|
|
const snapConfirmation = {
|
|
getValues,
|
|
};
|
|
|
|
export default snapConfirmation;
|