1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/hooks/useOriginMetadata.js
Erik Marks 35ac762e10
Add Snaps via Flask (#13462)
This PR adds `snaps` under Flask build flags to the extension. This branch is mostly equivalent to the current production version of Flask, excepting some bug fixes and tweaks.

Closes #11626
2022-02-14 16:02:51 -08:00

54 lines
1.4 KiB
JavaScript

import { useSelector } from 'react-redux';
import { getTargetSubjectMetadata } from '../selectors';
import { SUBJECT_TYPES } from '../../shared/constants/app';
/**
* @typedef {Object} OriginMetadata
* @property {string} hostname - The hostname of the origin (host + port)
* @property {string} origin - The original origin string itself
* @property {string} [iconUrl] - The origin's site icon URL, if available
* @property {string} [name] - The registered name of the origin if available
*/
/**
* Gets origin metadata from redux and formats it appropriately.
*
* @param {string} origin - The fully formed url of the site interacting with
* MetaMask
* @returns {OriginMetadata | null} The origin metadata available for the
* current origin
*/
export function useOriginMetadata(origin) {
const targetSubjectMetadata = useSelector((state) =>
getTargetSubjectMetadata(state, origin),
);
if (!origin) {
return null;
}
let minimumOriginMetadata = null;
try {
const url = new URL(origin);
minimumOriginMetadata = {
host: url.host,
hostname: url.hostname,
origin,
subjectType: SUBJECT_TYPES.UNKNOWN,
};
} catch (_) {
// do nothing
}
if (targetSubjectMetadata && minimumOriginMetadata) {
return {
...minimumOriginMetadata,
...targetSubjectMetadata,
};
} else if (targetSubjectMetadata) {
return targetSubjectMetadata;
}
return minimumOriginMetadata;
}