mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
c716592fd1
* Clean up some code fencing around snaps * Fix code fencing * Fix more fencing issues
42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
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: {
|
|
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),
|
|
},
|
|
},
|
|
],
|
|
submitText: t('ok'),
|
|
onSubmit: () => actions.resolvePendingApproval(pendingApproval.id, null),
|
|
};
|
|
}
|
|
|
|
const snapAlert = {
|
|
getValues,
|
|
};
|
|
|
|
export default snapAlert;
|