UNPKG

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