1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/ui/pages/confirmation/templates/index.js
Olaf Tomalka 95c37e1ba3
feat: add yaml feature management (#18125)
* feat: add yaml feature management

Add yaml feature file per build type.
Also add method to parse yaml and set
enabled features env to true. The build
process will then replace any process.env[feature]
that exists on the config by its value

* chore: add example for desktop

* Added initial draft of build features

* [TMP] Sync between computers

* Is able to succesfully build stable extension with snaps feature

* Removing var context from builds.yml

* Add asssets to builds.yml

* Minor bug fixes and removing debug logs

* [WIP] Test changes

* Removed TODOs

* Fix regession bug

Also
* remove debug logs
* merge Variables.set and Variables.setMany with an overload

* Fix build, lint and a bunch of issues

* Update LavaMoat policies

* Re-add desktop build type

* Fix some tests

* Fix desktop build

* Define some env variables used by MV3

* Fix lint

* Fix remove-fenced-code tests

* Fix README typo

* Move new code

* Fix missing asset copy

* Move Jest env setup

* Fix path for test after rebase

* Fix code fences

* Fix fencing and LavaMoat policies

* Fix MMI code-fencing after rebase

* Fix MMI code fencing after merge

* Fix more MMI code fencing

---------

Co-authored-by: cryptotavares <joao.tavares@consensys.net>
Co-authored-by: Frederik Bolding <frederik.bolding@gmail.com>
Co-authored-by: Brad Decker <bhdecker84@gmail.com>
2023-04-25 16:32:51 +02:00

160 lines
5.5 KiB
JavaScript

import { omit, pick } from 'lodash';
import { MESSAGE_TYPE } from '../../../../shared/constants/app';
import {
rejectPendingApproval,
resolvePendingApproval,
setNewNetworkAdded,
upsertNetworkConfiguration,
} from '../../../store/actions';
import addEthereumChain from './add-ethereum-chain';
import switchEthereumChain from './switch-ethereum-chain';
///: BEGIN:ONLY_INCLUDE_IN(snaps)
import snapAlert from './snaps/snap-alert/snap-alert';
import snapConfirmation from './snaps/snap-confirmation/snap-confirmation';
import snapPrompt from './snaps/snap-prompt/snap-prompt';
///: END:ONLY_INCLUDE_IN
const APPROVAL_TEMPLATES = {
[MESSAGE_TYPE.ADD_ETHEREUM_CHAIN]: addEthereumChain,
[MESSAGE_TYPE.SWITCH_ETHEREUM_CHAIN]: switchEthereumChain,
///: BEGIN:ONLY_INCLUDE_IN(snaps)
[MESSAGE_TYPE.SNAP_DIALOG_ALERT]: snapAlert,
[MESSAGE_TYPE.SNAP_DIALOG_CONFIRMATION]: snapConfirmation,
[MESSAGE_TYPE.SNAP_DIALOG_PROMPT]: snapPrompt,
///: END:ONLY_INCLUDE_IN
};
export const TEMPLATED_CONFIRMATION_MESSAGE_TYPES =
Object.keys(APPROVAL_TEMPLATES);
const ALLOWED_TEMPLATE_KEYS = [
'cancelText',
'content',
'onCancel',
'onSubmit',
'networkDisplay',
'submitText',
'loadingText',
];
/**
* @typedef {object} PendingApproval
* @property {string} id - The randomly generated id of the approval
* @property {string} origin - The origin of the site requesting this approval
* @property {number} time - The time the approval was requested
* @property {string} type - The type of approval being requested
* @property {object} requestData - The data submitted with the request
*/
/**
* getTemplateAlerts calls the getAlerts function exported by the template if
* it exists, and then returns the result of that function. In the confirmation
* page the alerts returned from the getAlerts method will be set into the
* alertState state object.
*
* @param {object} pendingApproval - the object representing the confirmation
*/
export async function getTemplateAlerts(pendingApproval) {
const fn = APPROVAL_TEMPLATES[pendingApproval.type]?.getAlerts;
const results = fn ? await fn(pendingApproval) : [];
if (!Array.isArray(results)) {
throw new Error(`Template alerts must be an array, received: ${results}`);
}
if (results.some((result) => result?.id === undefined)) {
throw new Error(
`Template alert entries must be objects with an id key. Received: ${results}`,
);
}
return results;
}
/**
* The function call to return state must be a promise returning function
* this "NOOP" is here to conform to the requirements for templates without
* state.
*/
async function emptyState() {
return {};
}
/**
* getTemplateState calls the getState function exported by the template if
* it exists, and then returns the result of that function. In the confirmation
* page the object returned from the getState method will be set into the
* confirmationState state object. Note, this state is not consumed by the page
* itself.
*
* @param {object} pendingApproval - the object representing the confirmation
*/
export async function getTemplateState(pendingApproval) {
const fn = APPROVAL_TEMPLATES[pendingApproval.type]?.getState ?? emptyState;
const result = await fn(pendingApproval);
if (typeof result !== 'object' || Array.isArray(result)) {
throw new Error(`Template state must be an object, received: ${result}`);
} else if (result === null || result === undefined) {
return {};
}
return result;
}
/**
* We do not want to pass the entire dispatch function to the template.
* This function should return an object of actions that we generally consider
* to be safe for templates to invoke. In the future we could put these behind
* permission sets so that snaps that wish to manipulate state must ask for
* explicit permission to do so.
*
* @param {Function} dispatch - Redux dispatch function
*/
function getAttenuatedDispatch(dispatch) {
return {
rejectPendingApproval: (...args) =>
dispatch(rejectPendingApproval(...args)),
resolvePendingApproval: (...args) =>
dispatch(resolvePendingApproval(...args)),
upsertNetworkConfiguration: (...args) =>
dispatch(upsertNetworkConfiguration(...args)),
setNewNetworkAdded: (...args) => dispatch(setNewNetworkAdded(...args)),
};
}
/**
* Returns the templated values to be consumed in the confirmation page
*
* @param {object} pendingApproval - The pending confirmation object.
* @param {Function} t - Translation function.
* @param {Function} dispatch - Redux dispatch function.
* @param {object} history - The application's history object.
* @param {Function} setInputState - A function that can be used to record the
* state of input fields in the templated component.
*/
export function getTemplateValues(
pendingApproval,
t,
dispatch,
history,
setInputState,
) {
const fn = APPROVAL_TEMPLATES[pendingApproval.type]?.getValues;
if (!fn) {
throw new Error(
`MESSAGE_TYPE: '${pendingApproval.type}' is not specified in approval templates`,
);
}
const safeActions = getAttenuatedDispatch(dispatch);
const values = fn(pendingApproval, t, safeActions, history, setInputState);
const extraneousKeys = omit(values, ALLOWED_TEMPLATE_KEYS);
const safeValues = pick(values, ALLOWED_TEMPLATE_KEYS);
if (extraneousKeys.length > 0) {
throw new Error(
`Received extraneous keys from ${
pendingApproval.type
}.getValues. These keys are not passed to the confirmation page: ${Object.keys(
extraneousKeys,
)}`,
);
}
return safeValues;
}