UNPKG

ruffer-pattern-portfolio

Version:

This is the end result from https://dev.to/swyx/quick-guide-to-setup-your-react--typescript-storybook-design-system-1c51

67 lines (66 loc) 3.17 kB
"use strict"; 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 (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); var react_1 = __importDefault(require("react")); var react_redux_1 = require("react-redux"); var react_bootstrap_1 = require("react-bootstrap"); var react_bootstrap_2 = require("react-bootstrap"); var Card_1 = require("../../Atoms/Card/Card"); var PortfolioTable = /** @class */ (function (_super) { __extends(PortfolioTable, _super); function PortfolioTable(props) { var _this = _super.call(this, props) || this; _this.state = { loading: true, error: false }; return _this; } PortfolioTable.prototype.render = function () { var _a; if (this.props.loading) return (react_1.default.createElement(react_bootstrap_2.Spinner, { animation: "border", role: "status" }, react_1.default.createElement("span", { className: "sr-only" }, "Loading..."))); var tableHeder = "\n <thead>\n <tr>\n <th> Name </th>\n <th> % of total wealth </th>\n <th> % Yield </th>\n <th> Total </th>\n </tr>\n </thead>"; var tableBody = "\n <tbody>\n " + this.props.Rows.map(function (row) { return "\n <tr>\n <td>" + row.Name + "</td>\n <td>" + row.PtgTotalWealth + "</td>\n <td>" + row.PtgYield + "</td>\n <td>" + row.Total + "</td>\n </tr>"; }) + "\n </tbody>"; var manager = (_a = this.props.manager) !== null && _a !== void 0 ? _a : ''; var card = { header: { title: manager } }; return (react_1.default.createElement(Card_1.Card, __assign({}, card), react_1.default.createElement(react_bootstrap_1.Table, null, tableHeder, tableBody))); }; return PortfolioTable; }(react_1.default.Component)); exports.PortfolioTable = PortfolioTable; exports.default = react_redux_1.connect()(PortfolioTable);