CourseTitle.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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/schedulePage/back_black.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. let right = "";
  123. switch (type) {
  124. case 1:
  125. //课程表标题,右侧是分享
  126. right = require("../images/common/share.png");
  127. break;
  128. case 2:
  129. //个人中心,右侧是设置
  130. break;
  131. }
  132. return (
  133. <Image
  134. source={right}
  135. style={{
  136. width: 20,
  137. height: 20
  138. }}
  139. />
  140. );
  141. }
  142. }
  143. /**
  144. <CourseTitle
  145. width={this.getWindowWidth()}
  146. title="第12周 爱上幼儿园"
  147. //设置左侧按钮样式
  148. lefttype={2}
  149. //设置右侧按钮样式
  150. righttype={1}
  151. //设置文字颜色
  152. textcolor={"red"}
  153. // backPress={() => this.goBack()}
  154. //左侧按钮方法
  155. backPress={() => alert("点击返回")}
  156. //右侧按钮方法
  157. rightPress={() => alert("点击分享")}
  158. />
  159. </View>
  160. */