MainPage.js 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow
  7. */
  8. import React, { Component } from "react";
  9. import {
  10. Platform,
  11. StyleSheet,
  12. Text,
  13. View,
  14. Image,
  15. FlatList,
  16. TouchableOpacity,
  17. ImageBackground,
  18. TextInput,
  19. Button,
  20. ViewPagerAndroid,
  21. DeviceEventEmitter,
  22. SectionList,
  23. Animated,
  24. TouchableHighlight
  25. } from "react-native";
  26. import Swiper from "react-native-swiper";
  27. import AndroidUtil from "../../util/AndroidUtil";
  28. import BasePage from "../BasePage";
  29. import Header from "./Header";
  30. import MySwiper from "./Swiper";
  31. import Dimensions from '../utils/dimensions';
  32. import TopicTitle from './TopicTitle';
  33. import ScrollRow from "./ScrollRow";
  34. // import console from 'console';
  35. export default class MainPage extends BasePage {
  36. constructor(props) {
  37. super(props);
  38. }
  39. state = {
  40. grade: '大学',
  41. text: '小伙子',
  42. ifGradeMenuShow: false,
  43. fadeAnim: new Animated.Value(0),
  44. }
  45. render() {
  46. return (
  47. <View style={{ flex: 1 }} onPress={this.hideGradeMenu}>
  48. {/* 尝试切换为sectionList 分组显示 */}
  49. <SectionList
  50. sections={sectionData}
  51. renderItem={({ item }) => {
  52. return this.loadFlatItem(item);
  53. }}
  54. keyExtractor={(item, index) => item.key.toString()}
  55. ListHeaderComponent={() => this.headerorfooterComponent()}
  56. renderSectionHeader={this.sectionTitle}
  57. onScroll={this.hideGradeMenu}
  58. />
  59. {
  60. this.state.ifGradeMenuShow ? (
  61. <Animated.View
  62. style={{
  63. ...styles.callUpGrade,
  64. opacity: this.state.fadeAnim
  65. }}>
  66. <View style={styles.gradeItem}>
  67. <Text style={styles.gradeText}>小学</Text>
  68. </View>
  69. <View style={styles.gradeItemMid}>
  70. <Text style={styles.gradeText}>学前</Text>
  71. </View>
  72. <View style={styles.gradeItem}>
  73. <Text style={styles.gradeText}>中学</Text>
  74. </View>
  75. </Animated.View>
  76. ) : (
  77. null
  78. )
  79. }
  80. </View>
  81. );
  82. }
  83. // 头部组件
  84. headerorfooterComponent() {
  85. return (
  86. <View>
  87. <Header
  88. uri="https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&amp;fm=26&amp;gp=0.jpg"
  89. width={400}
  90. height={150}
  91. username="卡通笨笨熊"
  92. flowerNumber="123234"
  93. onPress={() => this.toNextPage("userCenter")}
  94. />
  95. {/* 搜索区域 */}
  96. <View style={styles.searchSection}>
  97. <TextInput
  98. style={styles.searchBox}
  99. onChangeText={(text) => this.setState({ text })}
  100. value={this.state.text}
  101. />
  102. <TouchableOpacity onPress={this.tabCallOutHandler}>
  103. <View
  104. style={styles.rightBtn}
  105. >
  106. <Image
  107. source={{ uri: 'https://facebook.github.io/react-native/docs/assets/favicon.png' }}
  108. style={styles.rightBtnIcon}
  109. />
  110. <Text
  111. style={styles.rightBtnText}
  112. >
  113. {this.state.grade}
  114. </Text>
  115. </View>
  116. </TouchableOpacity>
  117. </View>
  118. </View>
  119. );
  120. }
  121. // 渲染轮播图
  122. getSwiperElement() {
  123. console.log('进入swiper')
  124. return (
  125. <View
  126. style={{
  127. height: Dimensions.getDp(163),
  128. flex: 1,
  129. justifyContent: "center",
  130. alignItems: "center",
  131. flexDirection: "row",
  132. // backgroundColor: 'red'
  133. }}
  134. >
  135. <View
  136. style={{
  137. // width: Dimensions.width,
  138. width: Dimensions.getWidth(358),
  139. height: Dimensions.getDp(153),
  140. justifyContent: "center",
  141. overflow: 'hidden'
  142. }}
  143. >
  144. <MySwiper
  145. autoplay={true}
  146. loop={true}
  147. ifShowMiddle={true}
  148. />
  149. </View>
  150. </View>
  151. );
  152. }
  153. // 渲染课程表
  154. getScheduleElement(data) {
  155. let arr = [];
  156. let index = 0;
  157. for (let item of data.item.icon_item) {
  158. arr.push(
  159. <TouchableOpacity
  160. style={{ width: 172, height: 86, marginRight: 12 }}
  161. onPress={() => {
  162. alert(Dimensions.width.toString());
  163. }}
  164. key={index}
  165. activeOpacity={1}
  166. >
  167. <Image
  168. source={{
  169. uri: item.icon
  170. }}
  171. key={index}
  172. style={{
  173. flex: 1,
  174. justifyContent: "center",
  175. alignItems: "center",
  176. borderRadius: 10
  177. }}
  178. />
  179. </TouchableOpacity>
  180. );
  181. if (index < data.item.icon_item.length - 1) {
  182. arr.push(
  183. <View
  184. key={item.name}
  185. style={{
  186. flex: 0.1
  187. }}
  188. />
  189. );
  190. }
  191. index++;
  192. }
  193. return (
  194. <View
  195. style={{
  196. flex: 1,
  197. flexDirection: "column",
  198. height: 160,
  199. // backgroundColor: 'blue'
  200. }}
  201. >
  202. <TopicTitle title={'课程表:第一周'} ifTubeShow={true} />
  203. <View
  204. style={{
  205. flex: 2,
  206. flexDirection: "row",
  207. // backgroundColor: 'green',
  208. alignItems: 'center',
  209. paddingLeft: 10
  210. }}
  211. >
  212. {arr}
  213. </View>
  214. </View>
  215. );
  216. }
  217. // 渲染每一个块儿
  218. loadFlatItem(data) {
  219. console.log(data)
  220. console.log(data.typea)
  221. switch (data.typea) {
  222. // 轮播图
  223. case 1:
  224. console.log(1)
  225. return this.getSwiperElement();
  226. break;
  227. // 课程表
  228. case 2:
  229. console.log(2)
  230. return this.getScheduleElement(data);
  231. break;
  232. // 大图主题
  233. case 3:
  234. console.log(3)
  235. return (
  236. <View style={{
  237. flex: 1,
  238. height: 225,
  239. }}>
  240. <TopicTitle title={'五月主题:五月主题,去看看不同的世界'} summary={'每天30分钟'} ifTubeShow={true} />
  241. <ScrollRow itemWidth={352} itemHeight={153} />
  242. </View>
  243. );
  244. break;
  245. // 热门课程
  246. case 4:
  247. return (
  248. <View style={{
  249. flex: 1,
  250. height: 220,
  251. }}>
  252. <TopicTitle title={'热门广场'} ifTubeShow={true} />
  253. <ScrollRow itemWidth={106} itemHeight={150} />
  254. </View>
  255. )
  256. break;
  257. case 5:
  258. return (
  259. <View style={{
  260. flex: 1,
  261. height: 240,
  262. }}>
  263. <TopicTitle title={'生活好榜样'} summary={'死数据不是动态渲染'} />
  264. <ScrollRow itemWidth={106} itemHeight={150} />
  265. </View>
  266. )
  267. break;
  268. default:
  269. break;
  270. }
  271. }
  272. // 渲染每一个section的title
  273. sectionTitle = (info) => {
  274. console.log(info)
  275. switch (info.section.title) {
  276. case 'operation':
  277. console.log('进入运营区头部', info.section.title)
  278. return (
  279. <View
  280. style={{
  281. width: Dimensions.width,
  282. height: 10,
  283. backgroundColor: '#f0f1f5'
  284. }}
  285. />
  286. );
  287. break;
  288. case 'courses':
  289. return <TopicTitle title={'全部课程'} tubeColor={'#7d9fff'} background={'#f0f1f5'} ifTubeShow={true} />
  290. break;
  291. default:
  292. break;
  293. }
  294. }
  295. // 点击呼出学龄菜单
  296. tabCallOutHandler = () => {
  297. this.setState({
  298. ifGradeMenuShow: !this.state.ifGradeMenuShow
  299. }, () => {
  300. Animated.timing(
  301. this.state.fadeAnim,
  302. {
  303. toValue: this.state.ifGradeMenuShow ? 1 : 0,
  304. duration: 300,
  305. }
  306. ).start();
  307. })
  308. }
  309. // 如果切换学龄在显示状态,那么在它失去焦点时将它隐藏
  310. hideGradeMenu = () => {
  311. if (this.state.ifGradeMenuShow) {
  312. this.setState({
  313. ifGradeMenuShow: false
  314. })
  315. }
  316. }
  317. }
  318. const styles = StyleSheet.create({
  319. title_text: {
  320. justifyContent: "center",
  321. alignItems: "center",
  322. color: "red",
  323. fontSize: 30,
  324. textAlign: "center",
  325. marginTop: 30,
  326. marginBottom: 50
  327. },
  328. /* 搜索区域 */
  329. searchSection: {
  330. flex: 1,
  331. width: Dimensions.width,
  332. height: 60,
  333. flexDirection: 'row',
  334. alignItems: 'center',
  335. backgroundColor: '#f0f1f5',
  336. justifyContent: 'space-around',
  337. position: 'relative',
  338. },
  339. searchBox: {
  340. width: 232,
  341. height: 40,
  342. backgroundColor: '#fff',
  343. borderRadius: 20
  344. },
  345. rightBtn: {
  346. width: 113,
  347. height: 40,
  348. backgroundColor: '#fff',
  349. borderRadius: 20,
  350. alignItems: 'center',
  351. justifyContent: 'center',
  352. justifyContent: 'space-around',
  353. flexDirection: 'row',
  354. paddingLeft: 20,
  355. paddingRight: 10,
  356. },
  357. rightBtnIcon: {
  358. width: 14,
  359. height: 14
  360. },
  361. rightBtnText: {
  362. color: '#151515',
  363. fontSize: 18,
  364. },
  365. callUpGrade: {
  366. width: 113,
  367. height: 120,
  368. borderRadius: 20,
  369. position: 'absolute',
  370. right: 9,
  371. top: 125,
  372. zIndex: 999,
  373. elevation: 999,
  374. backgroundColor: '#fff',
  375. flexDirection: 'column'
  376. },
  377. gradeItem: {
  378. zIndex: 999,
  379. flex: 1,
  380. alignItems: 'center',
  381. justifyContent: 'center',
  382. },
  383. gradeItemMid: {
  384. zIndex: 999,
  385. flex: 1,
  386. alignItems: 'center',
  387. justifyContent: 'center',
  388. borderTopWidth: 1,
  389. borderBottomWidth: 1,
  390. borderColor: '#f0f1f5'
  391. },
  392. gradeText: {
  393. color: '#151515',
  394. fontSize: 18,
  395. }
  396. });
  397. const sectionData = [
  398. {
  399. title: 'swiper',
  400. data: [{
  401. //轮播
  402. key: 111,
  403. typea: 1,
  404. text: "第一种类型"
  405. },
  406. {
  407. //只有一个标题下面两个图片
  408. key: 222,
  409. typea: 2,
  410. item: {
  411. item_type: 1,
  412. title: "课程表:第一周",
  413. icon_item: [
  414. {
  415. icon:
  416. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  417. name: "第一张图片文字"
  418. },
  419. {
  420. icon:
  421. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  422. name: "第二张图片文字"
  423. }
  424. ]
  425. }
  426. },]
  427. },
  428. {
  429. title: 'operation',
  430. data: [{
  431. //一个标题,大长图
  432. key: 444,
  433. typea: 3,
  434. title: "五月主题:五一启程,去看看不同世界",
  435. text: "每天30分钟,玩学两不误",
  436. icon_item: [
  437. {
  438. icon:
  439. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  440. name: "第一张图片文字"
  441. },
  442. {
  443. icon:
  444. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  445. name: "第二张图片文字"
  446. },
  447. {
  448. icon:
  449. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  450. name: "第三张图片文字"
  451. },
  452. {
  453. icon:
  454. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  455. name: "第四张图片文字"
  456. },
  457. {
  458. icon:
  459. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  460. name: "第五张图片文字"
  461. }
  462. ]
  463. },
  464. {
  465. key: 555,
  466. typea: 4,
  467. title: "热门课程",
  468. text: "text",
  469. mask: false,
  470. icon_item: [
  471. {
  472. icon:
  473. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  474. name: "第一张图片文字"
  475. },
  476. {
  477. icon:
  478. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  479. name: "第二张图片文字"
  480. },
  481. {
  482. icon:
  483. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  484. name: "第三张图片文字"
  485. },
  486. {
  487. icon:
  488. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  489. name: "第四张图片文字"
  490. },
  491. {
  492. icon:
  493. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  494. name: "第五张图片文字"
  495. }
  496. ]
  497. },]
  498. },
  499. {
  500. title: 'courses',
  501. data: [{
  502. //一个标题,大长图
  503. key: 444,
  504. typea: 5,
  505. title: "五月主题:五一启程,去看看不同世界",
  506. text: "每天30分钟,玩学两不误",
  507. icon_item: [
  508. {
  509. icon:
  510. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  511. name: "第一张图片文字"
  512. },
  513. {
  514. icon:
  515. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  516. name: "第二张图片文字"
  517. },
  518. {
  519. icon:
  520. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  521. name: "第三张图片文字"
  522. },
  523. {
  524. icon:
  525. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  526. name: "第四张图片文字"
  527. },
  528. {
  529. icon:
  530. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  531. name: "第五张图片文字"
  532. }
  533. ]
  534. },
  535. {
  536. key: 555,
  537. typea: 5,
  538. title: "热门课程",
  539. text: "text",
  540. mask: false,
  541. icon_item: [
  542. {
  543. icon:
  544. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  545. name: "第一张图片文字"
  546. },
  547. {
  548. icon:
  549. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  550. name: "第二张图片文字"
  551. },
  552. {
  553. icon:
  554. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  555. name: "第三张图片文字"
  556. },
  557. {
  558. icon:
  559. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  560. name: "第四张图片文字"
  561. },
  562. {
  563. icon:
  564. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  565. name: "第五张图片文字"
  566. }
  567. ]
  568. },]
  569. }
  570. ]