lucid-ui
Version:
A UI component library from Xandr.
103 lines (102 loc) • 4.13 kB
JavaScript
;
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 __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (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 __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Line = void 0;
var lodash_1 = __importDefault(require("lodash"));
var react_1 = __importDefault(require("react"));
var prop_types_1 = __importDefault(require("prop-types"));
var style_helpers_1 = require("../../util/style-helpers");
var chartConstants = __importStar(require("../../constants/charts"));
var cx = style_helpers_1.lucidClassNames.bind('&-Line');
var string = prop_types_1.default.string, object = prop_types_1.default.object, bool = prop_types_1.default.bool;
var defaultProps = {
color: chartConstants.COLOR_0,
isDotted: false,
};
var Line = function (props) {
var _a;
var className = props.className, color = props.color, isDotted = props.isDotted, d = props.d, style = props.style, passThroughs = __rest(props, ["className", "color", "isDotted", "d", "style"]);
var isCustomColor = lodash_1.default.startsWith(color, '#');
var colorStyle = isCustomColor ? { fill: color, stroke: color } : null;
return (react_1.default.createElement("path", __assign({}, passThroughs, { style: __assign(__assign({}, style), colorStyle), className: cx(className, '&', (_a = {},
_a["&-".concat(color)] = !isCustomColor,
_a['&-is-dotted'] = isDotted,
_a)), d: d })));
};
exports.Line = Line;
exports.Line.defaultProps = defaultProps;
exports.Line.displayName = 'Line';
exports.Line.peek = {
description: "*For use within an `svg`*. A `Line` is typically used for line charts and is pretty much a thin wrapper around `svg` paths.",
categories: ['visualizations', 'geoms'],
};
exports.Line.propTypes = {
/**
Passed through to the root element.
*/
style: object,
/**
Appended to the component-specific class names set on the root element.
*/
className: string,
/**
The path for the line.
*/
d: string,
/**
Strings should match an existing color class unless they start with a '#' for specific colors. E.g.:
- \`COLOR_0\`
- \`COLOR_GOOD\`
- \`'#123abc'\`
*/
color: string,
/**
Display a dotted line.
*/
isDotted: bool,
};
exports.default = exports.Line;
//# sourceMappingURL=Line.js.map