Header.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /**
  2. * @param: uri String, username String,flowerNumber String, onPressCallback function
  3. *
  4. */
  5. import React, { Component } from "react";
  6. import {
  7. StyleSheet,
  8. Text,
  9. View,
  10. Image,
  11. TouchableOpacity,
  12. } from "react-native";
  13. import Dimensions from '../utils/dimensions'
  14. /** 因没有图,所以Image先用颜色代替,有图可替换 */
  15. type Props = {};
  16. const styles = StyleSheet.create({
  17. wrapper: {
  18. width: Dimensions.width,
  19. height: 72,
  20. flex: 1,
  21. alignItems: "center",
  22. // backgroundColor: 'red',
  23. justifyContent: "center",
  24. flexDirection: "row"
  25. },
  26. avatar: {
  27. width: 44,
  28. height: 44,
  29. borderRadius: 50,
  30. marginLeft: 11,
  31. marginRight: 11
  32. },
  33. leftBox:{
  34. flex: 1,
  35. flexDirection: "column"
  36. },
  37. userName:{
  38. fontSize: 18,
  39. fontWeight: "bold",
  40. textAlign: "left",
  41. textAlignVertical: "bottom",
  42. color: "#3f3f3f"
  43. },
  44. leftBottomRow: {
  45. flexDirection: "row",
  46. alignItems: "center"
  47. },
  48. flowerIcon:{
  49. marginLeft: 10,
  50. alignItems: "center",
  51. justifyContent: "center",
  52. width: 27,
  53. height: 14
  54. },
  55. flowerNumber:{
  56. textAlignVertical: "center",
  57. marginLeft: 3
  58. }
  59. })
  60. export default class Header extends Component<Props> {
  61. render() {
  62. return (
  63. <TouchableOpacity activeOpacity={1} onPress={this.props.onPress}>
  64. <View
  65. style={styles.wrapper}
  66. >
  67. <Image
  68. source={this.props.uri ? {
  69. uri: this.props.uri
  70. } : require('../images/userInfo/default_photo.png')}
  71. style={styles.avatar}
  72. />
  73. <View
  74. style={styles.leftBox}
  75. >
  76. <View style={styles.leftBottomRow}>
  77. <Text
  78. style={styles.userName}
  79. >
  80. {this.props.username}
  81. </Text>
  82. <Image
  83. source={require("../images/common/vip.png")}
  84. style={styles.flowerIcon}
  85. />
  86. </View>
  87. <Text
  88. style={styles.flowerNumber}
  89. >
  90. {this.props.isVip ? '' : '开通VIP'}
  91. </Text>
  92. </View>
  93. </View>
  94. </TouchableOpacity>
  95. );
  96. }
  97. }
  98. /**
  99. 使用方法
  100. <Header
  101. uri="https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&amp;fm=26&amp;gp=0.jpg"
  102. username="卡通笨笨熊"
  103. flowerNumber="123234"
  104. onPress={() => this.toNextPage("MainActivity")}
  105. />
  106. */