react-native-navigation的迁移库

CustomTransitionDestination.js 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. const React = require('react');
  2. const { Component } = require('react');
  3. const { View, TouchableOpacity, Image, Text } = require('react-native');
  4. const { Navigation } = require('react-native-navigation');
  5. import ViewOverflow from 'react-native-view-overflow';
  6. class CustomTransitionDestination extends Component {
  7. constructor(props) {
  8. super(props);
  9. this.pop = this.pop.bind(this);
  10. this.push = this.push.bind(this);
  11. }
  12. static get options() {
  13. return {
  14. topBar: {
  15. title: {
  16. text: 'Shared Element Transition',
  17. fontFamily: 'HelveticaNeue-Italic'
  18. },
  19. backButton: {
  20. transition: 'custom'
  21. },
  22. largeTitle: {
  23. visible: false
  24. }
  25. },
  26. animations: {
  27. pop: {
  28. content: {
  29. alpha: {
  30. from: 1,
  31. to: 0,
  32. duration: 250
  33. }
  34. }
  35. }
  36. }
  37. };
  38. }
  39. push() {
  40. Navigation.push(this.props.componentId, {
  41. component: {
  42. name: 'navigation.playground.OptionsScreen'
  43. }
  44. });
  45. }
  46. pop() {
  47. Navigation.pop(this.props.componentId, {
  48. customTransition: {
  49. animations: [
  50. { type: 'sharedElement', fromId: 'title2', toId: 'title1', startDelay: 0, springVelocity: 0.2, duration: 0.5 },
  51. { type: 'sharedElement', toId: 'image1', fromId: 'customDestinationImage', startDelay: 0, springVelocity: 0.2, duration: 0.5 },
  52. { type: 'sharedElement', toId: 'image2', fromId: 'customDestinationImage2', startDelay: 0, duration: 0.8 },
  53. { fromId: 'image4', x: { from: 50 }, y: { from: 50 }, startAlpha: 0, startDelay: 0, duration: 0.8, springVelocity: 0.5 },
  54. { fromId: 'customDestinationParagraph', y: { to: 50 }, x: { to: 50 }, endAlpha: 0, startAlpha: 1, startDelay: 0, duration: 0.8 }
  55. ],
  56. duration: 0.8
  57. }
  58. });
  59. }
  60. render() {
  61. return (
  62. <View style={styles.root}>
  63. <View>
  64. <Navigation.Element resizeMode={'contain'} elementId={'customDestinationImage'}>
  65. <Image resizeMode={'contain'} style={{ width: 300, height: 300 }} source={require('../../img/400.jpeg')} />
  66. </Navigation.Element>
  67. <View style={{ width: 120, height: 120, margin: 15, alignItems: 'center', justifyContent: 'center' }}>
  68. <Navigation.Element elementId={'customDestinationImage2'} style={{ width: 100, height: 100, zIndex: 1 }}>
  69. <Image resizeMode={'contain'} style={{ width: 100, height: 100 }} source={require('../../img/2048.jpeg')} />
  70. </Navigation.Element>
  71. <ViewOverflow>
  72. <Navigation.Element elementId='image2bgDestination' style={{ width: 120, height: 120, marginTop: -110 }}>
  73. <View style={{ width: 120, height: 120, backgroundColor: 'yellow' }} />
  74. </Navigation.Element>
  75. </ViewOverflow>
  76. </View>
  77. </View>
  78. <TouchableOpacity testID={'shared_image2'} onPress={this.pop}>
  79. <Navigation.Element elementId={'title2'}>
  80. <Text style={[{color: 'red', textAlign: 'center'}, styles.h1]}>{`Custom Transition Screen`}</Text>
  81. </Navigation.Element>
  82. </TouchableOpacity>
  83. <Navigation.Element elementId={'customDestinationParagraph'}>
  84. <Text style={styles.p}>{`Lorem ipsum dolor sit amet, consectetur adipiscing elit,
  85. sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
  86. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
  87. nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit
  88. in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
  89. cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum`}
  90. </Text>
  91. </Navigation.Element>
  92. </View>
  93. );
  94. }
  95. }
  96. module.exports = CustomTransitionDestination;
  97. const styles = {
  98. root: {
  99. flexGrow: 1,
  100. justifyContent: 'center',
  101. alignItems: 'center',
  102. backgroundColor: '#f5fcff'
  103. },
  104. h1: {
  105. fontSize: 24,
  106. textAlign: 'left',
  107. margin: 10
  108. },
  109. p: {
  110. fontSize: 14,
  111. margin: 10,
  112. textAlign: 'left'
  113. },
  114. footer: {
  115. fontSize: 10,
  116. color: '#888',
  117. marginTop: 10
  118. }
  119. };