@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
64 lines • 3.19 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getTokenCurrencyIcon = exports.getCryptoCurrencyIcon = void 0;
const react_1 = __importDefault(require("react"));
const icons = __importStar(require("@ledgerhq/crypto-icons-ui/react"));
const cryptoIcons_1 = require("./currencies/cryptoIcons");
const polyfillMappingCache = new WeakMap();
/**
* thin wrapper from the crypto-icons lib to the format expected by ledger-live-common
* @deprecated prefer using @ledgerhq/crypto-icons-ui directly + mapping provided by @ledgerhq/live-common/currencies/cryptoIcons
*/
function polyfillIconComponent(IconComponent) {
if (!IconComponent)
return IconComponent;
if (polyfillMappingCache.has(IconComponent))
return polyfillMappingCache.get(IconComponent);
const PolyfillIconComponent = (props) => props.color === undefined ? (
// in the previous behavior, we were fallbacking on "currentColor"
// if you need this behavior, it will be preferrable to explicit set it. as we will drop this polyfill implementation.
react_1.default.createElement(IconComponent, { ...props, color: "currentColor" })) : (react_1.default.createElement(IconComponent, { ...props }));
polyfillMappingCache.set(IconComponent, PolyfillIconComponent);
return PolyfillIconComponent;
}
/**
* @deprecated prefer using @ledgerhq/crypto-icons-ui directly + mapping provided by @ledgerhq/live-common/currencies/cryptoIcons
*/
function getCryptoCurrencyIcon(currency) {
return polyfillIconComponent((0, cryptoIcons_1.inferCryptoCurrencyIcon)(icons, currency));
}
exports.getCryptoCurrencyIcon = getCryptoCurrencyIcon;
/**
* @deprecated prefer using @ledgerhq/crypto-icons-ui directly + mapping provided by @ledgerhq/live-common/currencies/cryptoIcons
*/
function getTokenCurrencyIcon(token) {
return polyfillIconComponent((0, cryptoIcons_1.inferCryptoCurrencyIcon)(icons, token));
}
exports.getTokenCurrencyIcon = getTokenCurrencyIcon;
//# sourceMappingURL=react.js.map