react-native-navigation的迁移库

Options.ts 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778
  1. // tslint:disable jsdoc-format
  2. import { ImageRequireSource, Insets } from 'react-native';
  3. type Color = string;
  4. type FontFamily = string;
  5. type LayoutOrientation = 'portrait' | 'landscape';
  6. type AndroidDensityNumber = number;
  7. export interface OptionsSplitView {
  8. /**
  9. * Master view display mode
  10. * @default 'auto'
  11. */
  12. displayMode?: 'auto' | 'visible' | 'hidden' | 'overlay';
  13. /**
  14. * Master view side. Leading is left. Trailing is right.
  15. * @default 'leading'
  16. */
  17. primaryEdge?: 'leading' | 'trailing';
  18. /**
  19. * Set the minimum width of master view
  20. */
  21. minWidth?: number;
  22. /**
  23. * Set the maximum width of master view
  24. */
  25. maxWidth?: number;
  26. }
  27. export interface OptionsStatusBar {
  28. /**
  29. * Set the status bar visibility
  30. * @default true
  31. */
  32. visible?: boolean;
  33. /**
  34. * Set the text color of the status bar
  35. * @default 'light'
  36. */
  37. style?: 'light' | 'dark';
  38. /**
  39. * Set the background color of the status bar
  40. * #### (Android specific)
  41. */
  42. backgroundColor?: Color;
  43. /**
  44. * Draw screen behind the status bar
  45. * #### (Android specific)
  46. */
  47. drawBehind?: boolean;
  48. }
  49. export interface OptionsLayout {
  50. /**
  51. * Set the screen background color
  52. */
  53. backgroundColor?: Color;
  54. /**
  55. * Set the allowed orientations
  56. */
  57. orientation?: LayoutOrientation[];
  58. /**
  59. * Layout top margin
  60. * #### (Android specific)
  61. */
  62. topMargin?: number;
  63. }
  64. export enum OptionsModalPresentationStyle {
  65. 'formSheet',
  66. 'pageSheet',
  67. 'overFullScreen',
  68. 'overCurrentContext',
  69. 'currentContext',
  70. 'popOver',
  71. 'fullScreen',
  72. 'none',
  73. }
  74. export interface OptionsTopBarLargeTitle {
  75. /**
  76. * Enable large titles
  77. */
  78. visible?: boolean;
  79. /**
  80. * Set the font size of large title's text
  81. */
  82. fontSize?: number;
  83. /**
  84. * Set the color of large title's text
  85. */
  86. color?: Color;
  87. /**
  88. * Set the font family of large title's text
  89. */
  90. fontFamily?: FontFamily;
  91. }
  92. export interface OptionsTopBarTitle {
  93. /**
  94. * Text to display in the title area
  95. */
  96. text?: string;
  97. /**
  98. * Font size
  99. */
  100. fontSize?: number;
  101. /**
  102. * Text color
  103. */
  104. color?: Color;
  105. /**
  106. * Title font family
  107. *
  108. * Make sure that the font is available
  109. */
  110. fontFamily?: FontFamily;
  111. /**
  112. * Custom component as the title view
  113. */
  114. component?: {
  115. /**
  116. * Component reference id, Auto generated if empty
  117. */
  118. id?: string;
  119. /**
  120. * Name of your component
  121. */
  122. name: string;
  123. /**
  124. * Set component alignment
  125. */
  126. alignment?: 'center' | 'fill';
  127. /**
  128. * Properties to pass down to the component
  129. */
  130. passProps?: object;
  131. };
  132. /**
  133. * Top Bar title height in densitiy pixels
  134. * #### (Android specific)
  135. */
  136. height?: number;
  137. /**
  138. * Title alignment
  139. * #### (Android specific)
  140. */
  141. alignment?: 'center' | 'fill';
  142. }
  143. export interface OptionsTopBarSubtitle {
  144. /**
  145. * Set subtitle text
  146. */
  147. text?: string;
  148. /**
  149. * Set subtitle font size
  150. */
  151. fontSize?: number;
  152. /**
  153. * Set subtitle color
  154. */
  155. color?: Color;
  156. /**
  157. * Set subtitle font family
  158. */
  159. fontFamily?: FontFamily;
  160. /**
  161. * Set subtitle alignment
  162. */
  163. alignment?: 'center';
  164. }
  165. export interface OptionsTopBarBackButton {
  166. /**
  167. * Image to show as the back button
  168. */
  169. icon?: ImageRequireSource;
  170. /**
  171. * Weither the back button is visible or not
  172. * @default true
  173. */
  174. visible?: boolean;
  175. /**
  176. * Set the back button title
  177. * #### (iOS specific)
  178. */
  179. title?: string;
  180. /**
  181. * Show title or just the icon
  182. * #### (iOS specific)
  183. */
  184. showTitle?: boolean;
  185. /**
  186. * Back button icon and text color
  187. */
  188. color?: Color;
  189. }
  190. export interface OptionsTopBarBackground {
  191. /**
  192. * Background color of the top bar
  193. */
  194. color?: Color;
  195. /**
  196. * Clip the top bar background to bounds if set to true.
  197. * #### (iOS specific)
  198. */
  199. clipToBounds?: boolean;
  200. /**
  201. * Set a custom component for the Top Bar background
  202. */
  203. component?: {
  204. name?: string;
  205. };
  206. /**
  207. * Allows the NavBar to be translucent (blurred)
  208. * #### (iOS specific)
  209. */
  210. translucent?: boolean;
  211. /**
  212. * Enable background blur
  213. * #### (iOS specific)
  214. */
  215. blur?: boolean;
  216. }
  217. export interface OptionsTopBarButton {
  218. /**
  219. * Button id for reference press event
  220. */
  221. id: string;
  222. /**
  223. * Set the button icon
  224. */
  225. icon?: ImageRequireSource;
  226. /**
  227. * Set the button as a custom component
  228. */
  229. component?: {
  230. name: string;
  231. };
  232. /**
  233. * Set the button text
  234. */
  235. text?: string;
  236. /**
  237. * Set the button enabled or disabled
  238. * @default true
  239. */
  240. enabled?: boolean;
  241. /**
  242. * Disable icon tinting
  243. */
  244. disableIconTint?: boolean;
  245. /**
  246. * Set text color
  247. */
  248. color?: Color;
  249. /**
  250. * Set text color in disabled state
  251. */
  252. disabledColor?: Color;
  253. /**
  254. * Set testID for reference in E2E tests
  255. */
  256. testID?: string;
  257. }
  258. export interface OptionsTopBar {
  259. /**
  260. * Show or hide the top bar
  261. */
  262. visible?: boolean;
  263. /**
  264. * Controls whether TopBar visibility changes should be animated
  265. */
  266. animate?: boolean;
  267. /**
  268. * Top bar will hide and show based on users scroll direction
  269. */
  270. hideOnScroll?: boolean;
  271. /**
  272. * Change button colors in the top bar
  273. */
  274. buttonColor?: Color;
  275. /**
  276. * Draw behind the navbar
  277. */
  278. drawBehind?: boolean;
  279. /**
  280. * Can be used to reference the top bar in E2E tests
  281. */
  282. testID?: string;
  283. /**
  284. * Title configuration
  285. */
  286. title?: OptionsTopBarTitle;
  287. /**
  288. * Subtitle configuration
  289. */
  290. subtitle?: OptionsTopBarSubtitle;
  291. /**
  292. * Back button configuration
  293. */
  294. backButton?: OptionsTopBarBackButton;
  295. /**
  296. * List of buttons to the left
  297. */
  298. leftButtons?: OptionsTopBarButton[];
  299. /**
  300. * List of buttons to the right
  301. */
  302. rightButtons?: OptionsTopBarButton[];
  303. /**
  304. * Background configuration
  305. */
  306. background?: OptionsTopBarBackground;
  307. /**
  308. * Control the NavBar blur style
  309. * #### (iOS specific)
  310. * @requires translucent: true
  311. * @default 'default'
  312. */
  313. barStyle?: 'default' | 'black';
  314. /**
  315. * Disable the border on bottom of the navbar
  316. * #### (iOS specific)
  317. * @default false
  318. */
  319. noBorder?: boolean;
  320. /**
  321. * Show a UISearchBar in the Top Bar
  322. * #### (iOS 11+ specific)
  323. */
  324. searchBar?: boolean;
  325. /**
  326. * Hides the UISearchBar when scrolling
  327. * #### (iOS 11+ specific)
  328. */
  329. searchBarHiddenWhenScrolling?: boolean;
  330. /**
  331. * The placeholder value in the UISearchBar
  332. * #### (iOS 11+ specific)
  333. */
  334. searchBarPlaceholder?: string;
  335. /**
  336. * Control the Large Title configuration
  337. * #### (iOS 11+ specific)
  338. */
  339. largeTitle?: OptionsTopBarLargeTitle;
  340. /**
  341. * Set the height of the navbar in dp
  342. * #### (Android specific)
  343. */
  344. height?: AndroidDensityNumber;
  345. /**
  346. * Change the navbar border color
  347. * #### (Android specific)
  348. */
  349. borderColor?: Color;
  350. /**
  351. * Set the border height of the navbar in dp
  352. * #### (Android specific)
  353. */
  354. borderHeight?: AndroidDensityNumber;
  355. /**
  356. * Set the elevation of the navbar in dp
  357. * #### (Android specific)
  358. */
  359. elevation?: AndroidDensityNumber;
  360. }
  361. export interface OptionsBottomTabs {
  362. /**
  363. * Show or hide the bottom tabs
  364. */
  365. visible?: boolean;
  366. /**
  367. * Enable animations when toggling visibility
  368. */
  369. animate?: boolean;
  370. /**
  371. * Switch to another screen within the bottom tabs via index (starting from 0)
  372. */
  373. currentTabIndex?: number;
  374. /**
  375. * Switch to another screen within the bottom tabs via screen name
  376. */
  377. currentTabId?: string;
  378. /**
  379. * Set a testID to reference the bottom tabs
  380. */
  381. testID?: string;
  382. /**
  383. * Draw screen component under the tab bar
  384. */
  385. drawBehind?: boolean;
  386. /**
  387. * Set a background color for the bottom tabs
  388. */
  389. backgroundColor?: Color;
  390. /**
  391. * Control the Bottom Tabs blur style
  392. * #### (iOS specific)
  393. * @requires translucent: true
  394. * @default 'default'
  395. */
  396. barStyle?: 'default' | 'black';
  397. /**
  398. * Allows the Bottom Tabs to be translucent (blurred)
  399. * #### (iOS specific)
  400. */
  401. translucent?: boolean;
  402. /**
  403. * Hide the top line of the Tab Bar
  404. * #### (iOS specific)
  405. */
  406. hideShadow?: boolean;
  407. /**
  408. * Control the text display mode below the tab icon
  409. * #### (Android specific)
  410. */
  411. titleDisplayMode?: 'alwaysShow' | 'showWhenActive' | 'alwaysHide';
  412. /**
  413. * Set the elevation of the Bottom Tabs in dp
  414. * #### (Android specific)
  415. */
  416. elevation?: AndroidDensityNumber;
  417. }
  418. export interface OptionsBottomTab {
  419. /**
  420. * Set the text to display below the icon
  421. */
  422. text?: string;
  423. /**
  424. * Set the text in a badge that is overlayed over the component
  425. */
  426. badge?: string;
  427. /**
  428. * Set the background color of the badge that is overlayed over the component
  429. */
  430. badgeColor?: string;
  431. /**
  432. * Set a testID to reference the tab in E2E tests
  433. */
  434. testID?: string;
  435. /**
  436. * Set the tab icon
  437. */
  438. icon?: ImageRequireSource;
  439. /**
  440. * Set the icon tint
  441. */
  442. iconColor?: Color;
  443. /**
  444. * Set the text color
  445. */
  446. textColor?: Color;
  447. /**
  448. * Set the selected icon tint
  449. */
  450. selectedIconColor?: Color;
  451. /**
  452. * Set the selected text color
  453. */
  454. selectedTextColor?: Color;
  455. /**
  456. * Set the text font family
  457. */
  458. fontFamily?: FontFamily;
  459. /**
  460. * Set the text font size
  461. */
  462. fontSize?: number;
  463. /**
  464. * Set the insets of the icon
  465. * #### (iOS specific)
  466. */
  467. iconInsets?: Insets;
  468. /**
  469. * Set selected icon image
  470. * #### (iOS specific)
  471. */
  472. selectedIcon?: ImageRequireSource;
  473. /**
  474. * Set true if you want to disable the icon tinting
  475. * #### (iOS specific)
  476. */
  477. disableIconTint?: boolean;
  478. /**
  479. * Set true if you want to disable the text tinting
  480. * #### (iOS specific)
  481. */
  482. disableSelectedIconTint?: boolean;
  483. /**
  484. * Set the font size for selected tabs
  485. * #### (Android specific)
  486. */
  487. selectedFontSize?: number;
  488. }
  489. export interface SideMenuSide {
  490. /**
  491. * Show or hide the side menu
  492. */
  493. visible?: boolean;
  494. /**
  495. * Enable or disable the side menu
  496. */
  497. enabled?: boolean;
  498. }
  499. export interface OptionsSideMenu {
  500. /**
  501. * Configure the left side menu
  502. */
  503. left?: SideMenuSide;
  504. /**
  505. * Configure the right side menu
  506. */
  507. right?: SideMenuSide;
  508. /**
  509. * Configure how a user is allowed to open a drawer using gestures
  510. * #### (iOS specific)
  511. * @default 'entireScreen'
  512. */
  513. openGestureMode?: 'entireScreen' | 'bezel';
  514. }
  515. export interface OptionsOverlay {
  516. /**
  517. * Capture touches outside of the Component View
  518. */
  519. interceptTouchOutside?: boolean;
  520. }
  521. export interface OptionsPreviewAction {
  522. /**
  523. * Reference ID to get callbacks from
  524. */
  525. id: string;
  526. /**
  527. * Action text
  528. */
  529. title: string;
  530. /**
  531. * Action style
  532. */
  533. style?: 'default' | 'selected' | 'destructive';
  534. /**
  535. * Subactions that will be shown when this action is pressed.
  536. */
  537. actions?: OptionsPreviewAction[];
  538. }
  539. export interface OptionsPreview {
  540. /**
  541. * Pass a react node tag to mark a SourceRect for a specific
  542. * peek and pop preview element.
  543. */
  544. reactTag?: number;
  545. /**
  546. * You can set this property specify the width of the preview.
  547. * If the width is greater than the device width, it will be zoomed in.
  548. */
  549. width?: number;
  550. /**
  551. * Height of the preview
  552. */
  553. height?: 100;
  554. /**
  555. * You can control if the users gesture will result in pushing
  556. * the preview screen into the stack.
  557. */
  558. commit?: boolean;
  559. /**
  560. * List of actions that will appear underneath the preview window.
  561. * They can be nested for sub actions.
  562. */
  563. actions?: OptionsPreviewAction[];
  564. }
  565. export interface OptionsAnimationPropertyConfig {
  566. /**
  567. * Animate from this value, ex. 0
  568. */
  569. from?: number;
  570. /**
  571. * Animate to this value, ex. 1
  572. */
  573. to?: number;
  574. /**
  575. * Animation duration
  576. * @default 300
  577. */
  578. duration?: number;
  579. /**
  580. * Animation delay
  581. * @default 0
  582. */
  583. startDelay?: number;
  584. /**
  585. * Animation interplation
  586. */
  587. interpolation?: 'accelerate' | 'decelerate';
  588. }
  589. export interface OptionsAnimationProperties {
  590. /**
  591. * Animate the element over translateX
  592. */
  593. x?: OptionsAnimationPropertyConfig;
  594. /**
  595. * Animate the element over translateY
  596. */
  597. y?: OptionsAnimationPropertyConfig;
  598. /**
  599. * Animate the element over opacity
  600. */
  601. alpha?: OptionsAnimationPropertyConfig;
  602. /**
  603. * Animate the element over scaleX
  604. */
  605. scaleX?: OptionsAnimationPropertyConfig;
  606. /**
  607. * Animate the element over scaleY
  608. */
  609. scaleY?: OptionsAnimationPropertyConfig;
  610. /**
  611. * Animate the element over rotationX
  612. */
  613. rotationX?: OptionsAnimationPropertyConfig;
  614. /**
  615. * Animate the element over rotationY
  616. */
  617. rotationY?: OptionsAnimationPropertyConfig;
  618. /**
  619. * Animate the element over rotation
  620. */
  621. rotation?: OptionsAnimationPropertyConfig;
  622. }
  623. export interface OptionsAnimationPropertiesId extends OptionsAnimationProperties {
  624. /**
  625. * ID of the Top Bar we want to animate
  626. */
  627. id?: string;
  628. }
  629. export interface OptionsAnimationSeparate {
  630. /**
  631. * Configure animations for the top bar
  632. */
  633. topBar?: OptionsAnimationPropertiesId;
  634. /**
  635. * Configure animations for the bottom tabs
  636. */
  637. bottomTabs?: OptionsAnimationPropertiesId;
  638. /**
  639. * Configure animations for the content (Screen)
  640. */
  641. content?: OptionsAnimationPropertiesId;
  642. }
  643. export interface OptionsAnimations {
  644. /**
  645. * Configure the setRoot animation
  646. */
  647. setRoot?: OptionsAnimationProperties;
  648. /**
  649. * Configure what animates when a screen is pushed
  650. */
  651. push?: OptionsAnimationSeparate;
  652. /**
  653. * Configure what animates when a screen is popped
  654. */
  655. pop?: OptionsAnimationSeparate;
  656. /**
  657. * Configure what animates when modal is shown
  658. */
  659. showModal?: OptionsAnimationProperties;
  660. /**
  661. * Configure what animates when modal is dismissed
  662. */
  663. dismissModal?: OptionsAnimationProperties;
  664. }
  665. export interface Options {
  666. /**
  667. * Configure the status bar
  668. */
  669. statusBar?: OptionsStatusBar;
  670. /**
  671. * Configure the layout
  672. */
  673. layout?: OptionsLayout;
  674. /**
  675. * Configure the presentation style of the modal
  676. */
  677. modalPresentationStyle?: OptionsModalPresentationStyle;
  678. /**
  679. * Configure the top bar
  680. */
  681. topBar?: OptionsTopBar;
  682. /**
  683. * Configure the bottom tabs
  684. */
  685. bottomTabs?: OptionsBottomTabs;
  686. /**
  687. * Configure the bottom tab associated to the screen
  688. */
  689. bottomTab?: OptionsBottomTab;
  690. /**
  691. * Configure the side menu
  692. */
  693. sideMenu?: OptionsSideMenu;
  694. /**
  695. * Configure the overlay
  696. */
  697. overlay?: OptionsOverlay;
  698. /**
  699. * Animation used for navigation commands that modify the layout
  700. * hierarchy can be controlled in options.
  701. *
  702. * Animations can be modified per command and it's also possible
  703. * to change the default animation for each command.
  704. *
  705. * Example:
  706. ```js
  707. setRoot: {
  708. y: {
  709. from: 1000,
  710. to: 0,
  711. duration: 500,
  712. interpolation: 'accelerate',
  713. },
  714. alpha: {
  715. from: 0,
  716. to: 1,
  717. duration: 400,
  718. startDelay: 100,
  719. interpolation: 'accelerate'
  720. }
  721. }
  722. ```
  723. */
  724. animations?: OptionsAnimations;
  725. /**
  726. * Preview configuration for Peek and Pop
  727. * #### (iOS specific)
  728. */
  729. preview?: OptionsPreview;
  730. /**
  731. * Enable or disable swipe back to pop gesture
  732. * #### (iOS specific)
  733. * @default true
  734. */
  735. popGesture?: boolean;
  736. /**
  737. * Background image for the screen
  738. * #### (iOS specific)
  739. */
  740. backgroundImage?: ImageRequireSource;
  741. /**
  742. * Background image for the Navigation View
  743. * #### (iOS specific)
  744. */
  745. rootBackgroundImage?: ImageRequireSource;
  746. /**
  747. * Enable or disable automatically blurring focused input, dismissing keyboard on unmount
  748. * #### (Android specific)
  749. * @default false
  750. */
  751. blurOnUnmount?: boolean;
  752. }