UNPKG

2.49 kBJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = Link;
7var React = _interopRequireWildcard(require("react"));
8var _reactNative = require("react-native");
9var _useLinkProps = _interopRequireDefault(require("./useLinkProps"));
10function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
12function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
13/**
14 * Component to render link to another screen using a path.
15 * Uses an anchor tag on the web.
16 *
17 * @param props.to Absolute path to screen (e.g. `/feeds/hot`).
18 * @param props.action Optional action to use for in-page navigation. By default, the path is parsed to an action based on linking config.
19 * @param props.children Child elements to render the content.
20 */
21function Link(_ref) {
22 let {
23 to,
24 action,
25 ...rest
26 } = _ref;
27 const props = (0, _useLinkProps.default)({
28 to,
29 action
30 });
31 const onPress = e => {
32 if ('onPress' in rest) {
33 var _rest$onPress;
34 (_rest$onPress = rest.onPress) === null || _rest$onPress === void 0 ? void 0 : _rest$onPress.call(rest, e);
35 }
36 props.onPress(e);
37 };
38 return /*#__PURE__*/React.createElement(_reactNative.Text, {
39 ...props,
40 ...rest,
41 ..._reactNative.Platform.select({
42 web: {
43 onClick: onPress
44 },
45 default: {
46 onPress
47 }
48 })
49 });
50}
51//# sourceMappingURL=Link.js.map
\No newline at end of file