TopicTitle.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /**
  2. * @param:
  3. * title: 标题
  4. * summary: 标题下的灰字简介
  5. * background: 背景色
  6. * tubeColor: 左边小长条背景色
  7. * ifTubeShow: 左侧icon是否显示,默认不显示 boolean
  8. */
  9. import React, { Component } from "react";
  10. import {
  11. StyleSheet,
  12. Text,
  13. View,
  14. } from "react-native";
  15. import Dimensions from '../utils/dimensions'
  16. const styles = StyleSheet.create({
  17. wrapper: {
  18. width: Dimensions.width,
  19. height: 45,
  20. paddingLeft: 14,
  21. justifyContent: "center",
  22. flexDirection: 'column',
  23. backgroundColor: 'yellow'
  24. },
  25. line1: {
  26. flex: 1,
  27. alignItems: "center",
  28. flexDirection: 'row'
  29. },
  30. line2: {
  31. // 123
  32. flex: 1
  33. },
  34. tube: {
  35. width: 4,
  36. height: 14,
  37. marginRight: 6,
  38. backgroundColor: 'red'
  39. },
  40. title: {
  41. color: '#373737',
  42. fontSize: 18
  43. },
  44. summary: {
  45. color: '#787878',
  46. fontSize: 16
  47. }
  48. })
  49. export default class TopicTitle extends Component {
  50. constructor(props) {
  51. super(props);
  52. }
  53. render() {
  54. let line2 = <View></View>;
  55. if (this.props.summary) {
  56. line2 = <View style={styles.line2}>
  57. <Text style={styles.summary}>{this.props.summary}</Text>
  58. </View>
  59. }
  60. let tube = <View></View>;
  61. if (this.props.ifTubeShow) {
  62. tube = 1
  63. }
  64. const tubeColor = this.props.tubeColor ? this.props.tubeColor : '#ffd101';
  65. console.log('背景色', this.props)
  66. return (
  67. <View
  68. style={{
  69. width: Dimensions.width,
  70. height: this.props.background ? 45 : 66,
  71. paddingLeft: 14,
  72. paddingTop: this.props.background ? 0: 20,
  73. // justifyContent: "center",
  74. flexDirection: 'column',
  75. backgroundColor: this.props.background ? this.props.background : '#fff'
  76. }}>
  77. <View
  78. style={styles.line1}>
  79. <View
  80. style={this.props.ifTubeShow ? {
  81. width: 4,
  82. height: 14,
  83. marginRight: 6,
  84. backgroundColor: tubeColor
  85. } : null}></View>
  86. <Text style={styles.title}>{this.props.title}</Text>
  87. </View>
  88. {line2}
  89. </View>
  90. );
  91. }
  92. }