@metacell/geppetto-meta-ui
Version:
React components from geppetto-meta to create neuroscience applications and visualize data.
181 lines (170 loc) • 6.28 kB
JavaScript
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); }
function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
/**
*
* Creates function from string
*
* @param body
*/
export function strToFunc(body) {
return new Function('x', 'return ' + body + ';');
}
/**
*
* Merge the contents of two or more objects together into the first object.
*
* @param obj1
* @param obj2
*/
export function extend(obj1, obj2) {
Object.assign(obj1, obj2);
return obj1;
}
/**
*
* Gets the current coordinates of element relative to the document.
*
* @param el
*/
export function offset(el) {
var rect = el.getBoundingClientRect();
return {
top: rect.top + document.body.scrollTop,
left: rect.left + document.body.scrollLeft
};
}
/**
*
* Copies the values of all enumerable own and inherited properties from one or more source objects to a target object.
*
* @param target
* @param sources
*/
export function _extend(target) {
var source = [];
for (var _len = arguments.length, sources = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
sources[_key - 1] = arguments[_key];
}
sources.forEach(function (src) {
source = source.concat([src, Object.getPrototypeOf(src)]);
});
return Object.assign.apply(Object, [target].concat(_toConsumableArray(source)));
}
/**
*
* Converts an array of keys and values to an object.
*
* @param array
*/
export function _object(array) {
return array.reduce(function (result, _ref) {
var _ref2 = _slicedToArray(_ref, 2),
key = _ref2[0],
val = _ref2[1];
return Object.assign(result, _defineProperty({}, key, val));
}, {});
}
/**
*
* Produces a duplicate-free version of the array
*
* @param array
*/
export function uniq(array) {
return _toConsumableArray(new Set(array));
}
/**
*
* Creates a new array with the results of getting a property for every element in array.
*
* @param array
* @param property
*/
export function pluck(array, property) {
return array.map(function (x) {
return x[property];
});
}
/**
*
* Creates a new array with the results of calling a function for every array element.
*
* @param array
* @param func
*/
export function map(array, func) {
return array.map(function (x) {
return func(x);
});
}
/**
*
* Creates a new array with all elements that pass the test implemented by the provided function.
*
* @param array
* @param func
*/
export function filter(array, func) {
return array.filter(function (x) {
return func(x);
});
}
/**
*
* Sorts a list into groups and returns a count for the number of objects in each group.
*
* @param list
* @param func
*/
export function countBy(list, func) {
var dict = {};
for (var index in list) {
var key = func(list[index]);
if (key in dict) {
dict[key]++;
} else {
dict[key] = 1;
}
}
return dict;
}
/**
*
* Creates the HTML element specified by tagName,
*
* @param tagName
* @param options
*/
export function createElement(tagName, options) {
var el = document.createElement(tagName, options);
for (var attr in options) {
if (attr === "text") {
el.innerHTML += options[attr];
} else {
el.setAttribute(attr, options[attr]);
}
}
return el;
}
/**
*
* Insert child to the end of the target
*
* @param target
* @param child
*/
export function appendTo(target, child) {
target.appendChild(child);
}