Skip to content

Commit

Permalink
chore: changed imports to relative
Browse files Browse the repository at this point in the history
  • Loading branch information
alduzy committed Oct 16, 2024
1 parent 3ca3486 commit a518402
Show file tree
Hide file tree
Showing 16 changed files with 31 additions and 32 deletions.
2 changes: 1 addition & 1 deletion src/components/Screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Animated, View, Platform } from 'react-native';

import TransitionProgressContext from '../TransitionProgressContext';
import DelayedFreeze from './helpers/DelayedFreeze';
import { ScreenProps } from 'react-native-screens';
import { ScreenProps } from '../types';

import {
freezeEnabled,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Screen.web.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import { ScreenProps } from 'react-native-screens';
import { ScreenProps } from '../types';
import { Animated, View } from 'react-native';
import React from 'react';

Expand Down
2 changes: 1 addition & 1 deletion src/components/ScreenContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { Platform, View } from 'react-native';
import React from 'react';
import { ScreenContainerProps } from 'react-native-screens';
import { ScreenContainerProps } from '../types';
import { isNativePlatformSupported, screensEnabled } from '../core';

// Native components
Expand Down
3 changes: 2 additions & 1 deletion src/components/ScreenStack.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
'use client';

import React from 'react';
import { ScreenStackProps, freezeEnabled } from 'react-native-screens';
import { ScreenStackProps } from '../types';
import { freezeEnabled } from '../core';
import DelayedFreeze from './helpers/DelayedFreeze';

// Native components
Expand Down
2 changes: 1 addition & 1 deletion src/components/ScreenStackHeaderConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
HeaderSubviewTypes,
ScreenStackHeaderConfigProps,
SearchBarProps,
} from 'react-native-screens';
} from '../types';
import { Image, ImageProps, StyleSheet, ViewProps } from 'react-native';

// Native components
Expand Down
2 changes: 1 addition & 1 deletion src/components/ScreenStackHeaderConfig.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
HeaderSubviewTypes,
ScreenStackHeaderConfigProps,
SearchBarProps,
} from 'react-native-screens';
} from '../types';

export const ScreenStackHeaderBackButtonImage = (
props: ImageProps,
Expand Down
7 changes: 2 additions & 5 deletions src/components/SearchBar.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
'use client';

import React from 'react';
import {
isSearchBarAvailableForCurrentPlatform,
SearchBarCommands,
SearchBarProps,
} from 'react-native-screens';
import { SearchBarCommands, SearchBarProps } from '../types';
import { isSearchBarAvailableForCurrentPlatform } from '../utils';
import { View } from 'react-native';

// Native components
Expand Down
2 changes: 1 addition & 1 deletion src/gesture-handler/GestureDetectorProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { GHContext } from 'react-native-screens';
import { GHContext } from '../native-stack/contexts/GHContext';
import ScreenGestureDetector from './ScreenGestureDetector';
import type { GestureProviderProps } from '../native-stack/types';

Expand Down
2 changes: 1 addition & 1 deletion src/native-stack/types.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
ScreenProps,
ScreenStackHeaderConfigProps,
SearchBarProps,
} from 'react-native-screens';
} from '../types';

export type NativeStackNavigationEventMap = {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/native-stack/utils/getDefaultHeaderHeight.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Platform } from 'react-native';
import { StackPresentationTypes } from 'react-native-screens';
import { StackPresentationTypes } from '../../types';
type Layout = { width: number; height: number };

const formSheetModalHeight = 56;
Expand Down
2 changes: 1 addition & 1 deletion src/native-stack/views/FooterComponent.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { ScreenFooter } from 'react-native-screens';
import ScreenFooter from '../../components/ScreenFooter';

type FooterProps = {
children?: React.ReactNode;
Expand Down
12 changes: 7 additions & 5 deletions src/native-stack/views/HeaderConfig.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import { Route, useTheme } from '@react-navigation/native';
import * as React from 'react';
import { Platform } from 'react-native';
import { SearchBarProps } from '../../types';
import {
isSearchBarAvailableForCurrentPlatform,
executeNativeBackPress,
} from '../../utils';
import {
ScreenStackHeaderBackButtonImage,
ScreenStackHeaderCenterView,
ScreenStackHeaderConfig,
ScreenStackHeaderLeftView,
ScreenStackHeaderRightView,
ScreenStackHeaderSearchBarView,
SearchBar,
SearchBarProps,
isSearchBarAvailableForCurrentPlatform,
executeNativeBackPress,
} from 'react-native-screens';
} from '../../components/ScreenStackHeaderConfig';
import SearchBar from '../../components/SearchBar';
import { NativeStackNavigationOptions } from '../types';
import { useBackPressSubscription } from '../utils/useBackPressSubscription';
import { processFonts } from './FontProcessor';
Expand Down
13 changes: 5 additions & 8 deletions src/native-stack/views/NativeStackView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ import { Animated, Platform, StyleSheet, ViewProps } from 'react-native';
// eslint-disable-next-line import/no-named-as-default, import/default, import/no-named-as-default-member, import/namespace
import AppContainer from 'react-native/Libraries/ReactNative/AppContainer';
import warnOnce from 'warn-once';
import {
ScreenStack,
StackPresentationTypes,
ScreenContext,
GHContext,
GestureDetectorBridge,
ScreenContentWrapper,
} from 'react-native-screens';
import { StackPresentationTypes, GestureDetectorBridge } from '../../types';
import ScreenStack from '../../components/ScreenStack';
import ScreenContentWrapper from '../../components/ScreenContentWrapper';
import { GHContext } from '../contexts/GHContext';
import { ScreenContext } from '../../components/Screen';
import {
ParamListBase,
StackActions,
Expand Down
4 changes: 2 additions & 2 deletions src/reanimated/ReanimatedNativeStackScreen.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react';
import { Platform } from 'react-native';
import { InnerScreen } from '../components/Screen';
import {
HeaderHeightChangeEventType,
InnerScreen,
ScreenProps,
TransitionProgressEventType,
} from 'react-native-screens';
} from '../types';

// @ts-ignore file to be used only if `react-native-reanimated` available in the project
import Animated, { useEvent, useSharedValue } from 'react-native-reanimated';
Expand Down
3 changes: 2 additions & 1 deletion src/reanimated/ReanimatedScreen.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react';
import { InnerScreen, ScreenProps } from 'react-native-screens';
import { InnerScreen } from '../components/Screen';
import { ScreenProps } from '../types';

// @ts-ignore file to be used only if `react-native-reanimated` available in the project
import Animated from 'react-native-reanimated';
Expand Down
3 changes: 2 additions & 1 deletion src/reanimated/ReanimatedScreenProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React, { PropsWithChildren } from 'react';
import { View } from 'react-native';
import { ScreenProps, ScreenContext } from 'react-native-screens';
import { ScreenContext } from '../components/Screen';
import { ScreenProps } from '../types';
import ReanimatedNativeStackScreen from './ReanimatedNativeStackScreen';
import AnimatedScreen from './ReanimatedScreen';

Expand Down

0 comments on commit a518402

Please sign in to comment.