decentraland-ui
Version:
Decentraland's UI components and styles
158 lines (157 loc) • 7.28 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
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.LoginModal = exports.LoginModalOptionType = void 0;
var React = __importStar(require("react"));
var ModalContent_1 = __importDefault(require("semantic-ui-react/dist/commonjs/modules/Modal/ModalContent"));
var Modal_1 = require("../Modal/Modal");
var ModalNavigation_1 = require("../ModalNavigation/ModalNavigation");
var Loader_1 = require("../Loader/Loader");
require("./LoginModal.css");
var LoginModalOptionType;
(function (LoginModalOptionType) {
LoginModalOptionType["METAMASK"] = "metamask";
LoginModalOptionType["DAPPER"] = "dapper";
LoginModalOptionType["FORTMATIC"] = "fortmatic";
LoginModalOptionType["COINBASE"] = "coinbase";
LoginModalOptionType["SAMSUNG"] = "samsung-blockchain-wallet";
LoginModalOptionType["WALLET_CONNECT"] = "wallet-connect";
LoginModalOptionType["WALLET_LINK"] = "wallet-link";
LoginModalOptionType["METAMASK_MOBILE"] = "metamask-mobile";
})(LoginModalOptionType = exports.LoginModalOptionType || (exports.LoginModalOptionType = {}));
var LoginModalOption = /** @class */ (function (_super) {
__extends(LoginModalOption, _super);
function LoginModalOption() {
return _super !== null && _super.apply(this, arguments) || this;
}
LoginModalOption.prototype.render = function () {
var _a = this.props, type = _a.type, onClick = _a.onClick, i18n = _a.i18n;
var title = '';
var subtitle = '';
switch (type) {
case LoginModalOptionType.METAMASK_MOBILE:
title = 'MetaMask';
subtitle = i18n.metamask_mobile || i18n.mobile;
break;
case LoginModalOptionType.METAMASK:
title = 'MetaMask';
subtitle = i18n.browser_extension;
break;
case LoginModalOptionType.DAPPER:
title = 'Dapper';
subtitle = i18n.browser_extension;
break;
case LoginModalOptionType.COINBASE:
title = 'Coinbase';
subtitle = i18n.browser_extension;
break;
case LoginModalOptionType.FORTMATIC:
title = 'Fortmatic';
subtitle = i18n.email;
break;
case LoginModalOptionType.SAMSUNG:
title = 'Samsung Blockchain Wallet';
subtitle = i18n.mobile;
break;
case LoginModalOptionType.WALLET_CONNECT:
title = 'WalletConnect';
subtitle = i18n.mobile;
break;
case LoginModalOptionType.WALLET_LINK:
title = 'Coinbase Wallet';
subtitle = i18n.mobile_and_browser;
break;
}
return (React.createElement("div", { className: "dcl option ".concat(type), onClick: onClick },
React.createElement("div", { className: "image" }),
React.createElement("div", { className: "info" },
React.createElement("div", { className: "title" }, title),
React.createElement("div", { className: "subtitle" }, subtitle))));
};
LoginModalOption.defaultProps = {
i18n: {
browser_extension: 'Using a browser extension',
email: 'Using your email',
mobile: 'Using your mobile wallet',
mobile_and_browser: 'Using your mobile or browser extension',
metamask_mobile: 'Using the MetaMask app'
}
};
return LoginModalOption;
}(React.PureComponent));
var LoginModal = /** @class */ (function (_super) {
__extends(LoginModal, _super);
function LoginModal() {
return _super !== null && _super.apply(this, arguments) || this;
}
LoginModal.prototype.render = function () {
var _a = this.props, open = _a.open, className = _a.className, message = _a.message, hasError = _a.hasError, loading = _a.loading, onClose = _a.onClose, i18n = _a.i18n, children = _a.children;
var errorClasses = 'error';
if (hasError) {
errorClasses += ' visible';
}
return (React.createElement(Modal_1.Modal, { open: open, className: "dcl login-modal ".concat(className).trim() },
React.createElement(ModalNavigation_1.ModalNavigation, { title: i18n.title, subtitle: i18n.subtitle, onClose: onClose }),
React.createElement(ModalContent_1.default, null,
children,
message ? React.createElement("small", { className: "message" }, message) : null),
hasError ? React.createElement("p", { className: errorClasses }, i18n.error) : null,
loading ? (React.createElement(React.Fragment, null,
React.createElement(Loader_1.Loader, { size: "big", active: true }),
React.createElement("div", { className: "loader-background" }))) : null));
};
LoginModal.defaultProps = {
className: '',
hasError: false,
loading: false,
i18n: {
title: 'Sign In',
subtitle: 'Choose a method to connect',
message: '',
error: 'Could not connect wallet'
}
};
LoginModal.Option = LoginModalOption;
return LoginModal;
}(React.Component));
exports.LoginModal = LoginModal;