CourseTitle.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. import React, { Component } from "react";
  2. import {
  3. Platform,
  4. StyleSheet,
  5. Text,
  6. View,
  7. Image,
  8. TouchableOpacity,
  9. ImageBackground,
  10. Button,
  11. Dimensions,
  12. DeviceEventEmitter
  13. } from "react-native";
  14. /** 因没有图,所以Image先用颜色代替,有图可替换 */
  15. const instructions = Platform.select({
  16. ios: "Press Cmd+R to reload,\n" + "Cmd+D or shake for dev menu",
  17. android:
  18. "Double tap R on your keyboard to reload,\n" +
  19. "Shake or press menu button for dev menu"
  20. });
  21. type Props = {};
  22. var width = Dimensions.get("window").width;
  23. var height = Dimensions.get("window").height;
  24. export default class CourseTitle extends Component<Props> {
  25. render() {
  26. return (
  27. <View
  28. style={{
  29. flex: 1,
  30. width: this.props.width,
  31. height: this.props.height,
  32. flexDirection: "column"
  33. }}
  34. >
  35. <View
  36. style={{
  37. flex: 1
  38. }}
  39. />
  40. <View
  41. style={{
  42. flex: 1,
  43. flexDirection: "row"
  44. }}
  45. >
  46. <View
  47. style={{
  48. flex: 1,
  49. alignItems: "center",
  50. justifyContent: "center"
  51. }}
  52. >
  53. <TouchableOpacity activeOpacity={1} onPress={this.props.backPress}>
  54. {this.selectleftIcon()}
  55. </TouchableOpacity>
  56. </View>
  57. <View
  58. style={{
  59. flex: 5,
  60. alignItems: "center",
  61. justifyContent: "center"
  62. }}
  63. >
  64. <Text
  65. style={{
  66. width: "100%",
  67. fontSize: 20,
  68. fontWeight: "bold",
  69. color: this.props.textcolor,
  70. textAlign: "center"
  71. }}
  72. >
  73. {this.props.title}
  74. </Text>
  75. </View>
  76. <View
  77. style={{
  78. flex: 1,
  79. alignItems: "center",
  80. justifyContent: "center"
  81. }}
  82. >
  83. <TouchableOpacity activeOpacity={1} onPress={this.props.rightPress}>
  84. {this.selectRightIcon()}
  85. </TouchableOpacity>
  86. </View>
  87. </View>
  88. <View
  89. style={{
  90. flex: 1
  91. }}
  92. />
  93. </View>
  94. );
  95. }
  96. selectleftIcon() {
  97. let type = this.props.lefttype;
  98. let back = "";
  99. switch (type) {
  100. case 1:
  101. //左侧返回图片1
  102. back = require("../images/userInfo/back_white.png");
  103. break;
  104. case 2:
  105. //左侧返回图片2
  106. back = require("../images/userInfo/back_white.png");
  107. break;
  108. }
  109. return (
  110. <Image
  111. source={back}
  112. style={{
  113. width: 20,
  114. height: 20,
  115. resizeMode: "contain"
  116. }}
  117. />
  118. );
  119. }
  120. selectRightIcon() {
  121. let type = this.props.righttype;
  122. switch (type) {
  123. case 1:
  124. //课程表标题,右侧是分享
  125. return (
  126. <Image
  127. style={{
  128. width: 20,
  129. height: 20,
  130. backgroundColor: "blue"
  131. }}
  132. />
  133. );
  134. break;
  135. case 2:
  136. //个人中心,右侧是设置
  137. return (
  138. <Image
  139. style={{
  140. width: 20,
  141. height: 20,
  142. backgroundColor: "red"
  143. }}
  144. />
  145. );
  146. break;
  147. }
  148. }
  149. }
  150. /**
  151. <CourseTitle
  152. width={this.getWindowWidth()}
  153. title="第12周 爱上幼儿园"
  154. //设置左侧按钮样式
  155. lefttype={2}
  156. //设置右侧按钮样式
  157. righttype={1}
  158. //设置文字颜色
  159. textcolor={"red"}
  160. // backPress={() => this.goBack()}
  161. //左侧按钮方法
  162. backPress={() => alert("点击返回")}
  163. //右侧按钮方法
  164. rightPress={() => alert("点击分享")}
  165. />
  166. </View>
  167. */