100 lines
4.0 KiB
JavaScript
100 lines
4.0 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.router = exports.ErrorBoundary = exports.Unmatched = exports.useRouter = exports.Link = void 0;
|
|
exports.usePathname = usePathname;
|
|
exports.useLocalSearchParams = useLocalSearchParams;
|
|
exports.useGlobalSearchParams = useGlobalSearchParams;
|
|
exports.Slot = Slot;
|
|
exports.Stack = Stack;
|
|
exports.Tabs = Tabs;
|
|
exports.Navigator = Navigator;
|
|
exports.Redirect = Redirect;
|
|
exports.ExpoRoot = ExpoRoot;
|
|
exports.useFocusEffect = useFocusEffect;
|
|
exports.useNavigation = useNavigation;
|
|
exports.withLayoutContext = withLayoutContext;
|
|
exports.useNavigationContainerRef = useNavigationContainerRef;
|
|
exports.useSegments = useSegments;
|
|
exports.useRootNavigation = useRootNavigation;
|
|
exports.useRootNavigationState = useRootNavigationState;
|
|
exports.useUnstableGlobalHref = useUnstableGlobalHref;
|
|
const client_1 = require("./router/client");
|
|
Object.defineProperty(exports, "useRouter", { enumerable: true, get: function () { return client_1.useRouter_UNSTABLE; } });
|
|
const host_1 = require("./router/host");
|
|
var client_2 = require("./router/client");
|
|
Object.defineProperty(exports, "Link", { enumerable: true, get: function () { return client_2.Link; } });
|
|
function usePathname() {
|
|
const router = (0, client_1.useRouter_UNSTABLE)();
|
|
return router.path;
|
|
}
|
|
// TODO: This doesn't work the same as the classic version.
|
|
function useLocalSearchParams() {
|
|
const router = (0, client_1.useRouter_UNSTABLE)();
|
|
return Object.fromEntries([...new URLSearchParams(router.query).entries()]);
|
|
}
|
|
function useGlobalSearchParams() {
|
|
const router = (0, client_1.useRouter_UNSTABLE)();
|
|
return Object.fromEntries([...new URLSearchParams(router.query).entries()]);
|
|
}
|
|
function Slot() {
|
|
return <host_1.Children />;
|
|
}
|
|
function Stack() {
|
|
console.warn('Stack is not implemented in React Server Components yet');
|
|
return <host_1.Children />;
|
|
}
|
|
function Tabs() {
|
|
console.warn('Tabs is not implemented in React Server Components yet');
|
|
return <host_1.Children />;
|
|
}
|
|
function Navigator() {
|
|
throw new Error('Navigator is not implemented in React Server Components yet');
|
|
}
|
|
/**
|
|
* Redirects to the `href` as soon as the component is mounted.
|
|
*/
|
|
function Redirect({ href }) {
|
|
const router = (0, client_1.useRouter_UNSTABLE)();
|
|
router.replace(href);
|
|
return null;
|
|
}
|
|
function ExpoRoot() {
|
|
throw new Error('ExpoRoot is not implemented in React Server Components yet');
|
|
}
|
|
function useFocusEffect() {
|
|
console.warn('useFocusEffect is not implemented in React Server Components yet');
|
|
}
|
|
function useNavigation() {
|
|
console.warn('useNavigation is not implemented in React Server Components yet');
|
|
}
|
|
function withLayoutContext() {
|
|
throw new Error('withLayoutContext is not implemented in React Server Components yet');
|
|
}
|
|
function useNavigationContainerRef() {
|
|
throw new Error('useNavigationContainerRef is not implemented in React Server Components yet');
|
|
}
|
|
function useSegments() {
|
|
throw new Error('useSegments is not implemented in React Server Components yet');
|
|
}
|
|
function useRootNavigation() {
|
|
throw new Error('useRootNavigation is not implemented in React Server Components yet');
|
|
}
|
|
function useRootNavigationState() {
|
|
throw new Error('useRootNavigationState is not implemented in React Server Components yet');
|
|
}
|
|
function useUnstableGlobalHref() {
|
|
throw new Error('useUnstableGlobalHref is not implemented in React Server Components yet');
|
|
}
|
|
// Expo Router Views
|
|
var Unmatched_1 = require("../views/Unmatched");
|
|
Object.defineProperty(exports, "Unmatched", { enumerable: true, get: function () { return Unmatched_1.Unmatched; } });
|
|
var ErrorBoundary_1 = require("../views/ErrorBoundary");
|
|
Object.defineProperty(exports, "ErrorBoundary", { enumerable: true, get: function () { return ErrorBoundary_1.ErrorBoundary; } });
|
|
exports.router = new Proxy({}, {
|
|
get(target, prop, receiver) {
|
|
throw new Error(`The router object is not available in React Server Components. Use the useRouter hook instead.`);
|
|
},
|
|
});
|
|
// TODO:
|
|
// export { Redirect } from './link/Link';
|
|
//# sourceMappingURL=exports.js.map
|