class.js 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. import httpRequestApi from '../../../utils/APIClient';
  2. import {
  3. formatDate
  4. } from '../../../utils/util';
  5. const app = getApp()
  6. Page({
  7. data: {
  8. fullScreenBtn: false,
  9. playBtn: true,
  10. gesture: true,
  11. centerBtn: true,
  12. controls: true,
  13. videoLoad: false,
  14. autoPlay: true,
  15. videoUrl: '',
  16. poster: '',
  17. works: [],
  18. total: '',
  19. title: '',
  20. id: '',
  21. iconImg: '',
  22. pageNo: 1,
  23. totalNo: 0,
  24. collectFlag: false,
  25. goBackHome: false,
  26. lazyVideoUrl: '',
  27. isIOS: app.globalData.isIOS,
  28. modalType: "text",
  29. modalText: [{
  30. text: '您还不是本课程的会员',
  31. type: 'bigOrange'
  32. },
  33. {
  34. text: '您可以开团,拼团成功获得使用权',
  35. type: 'normal'
  36. }
  37. ],
  38. modalBtnText:'去开团',
  39. isModalShow: false,
  40. productId: 0,
  41. },
  42. onLoad: function (option) {
  43. console.log(option);
  44. if (option.scene || option.shareCard) {
  45. this.setData({
  46. goBackHome: true
  47. })
  48. }
  49. this.setData({
  50. // title: option.title,
  51. id: option.id
  52. })
  53. this.uid = wx.getStorageSync('uid');;
  54. httpRequestApi.getClassDetail(this.uid, option.id).success(res => {
  55. console.log(res);
  56. const classId = this.data.id;
  57. // let productId = 0
  58. // httpRequestApi.checkLesson(classId).success(res => {
  59. // productId = res.data.data[0];
  60. // });
  61. this.setData({
  62. title: res.data.data.lesson.title,
  63. videoUrl: res.data.data.lesson.playUrl,
  64. iconImg: res.data.data.lesson.iconImg,
  65. productId: res.data.data.product.id
  66. })
  67. wx.setNavigationBarTitle({
  68. title: res.data.data.lesson.title //页面标题为路由参数
  69. })
  70. this.getReadInfo(1, 10);
  71. this.checkLike();
  72. })
  73. },
  74. // video组件在获得url时迅速退出页面会导致小程序闪退,官方还没修复(11/28),处理办法:懒加载思路,在用户点击时再获取videoUrl
  75. // setVideoUrl: function(){
  76. // console.log('视频地址>>>>>>>>',this.data.lazyVideoUrl)
  77. // this.setData({
  78. // videoUrl: this.data.lazyVideoUrl,
  79. // })
  80. // },
  81. videoPlayHandler: function () {
  82. this.setData({
  83. videoLoad: true
  84. }, () => {
  85. this.videoCtx = wx.createVideoContext('classVideo', this);
  86. this.videoCtx.play();
  87. })
  88. },
  89. // 检查是否收藏
  90. checkLike: function () {
  91. httpRequestApi.classIsLike(this.uid, {
  92. targetCode: this.data.id
  93. }).success(res => {
  94. this.setData({
  95. collectFlag: res.data.data
  96. })
  97. })
  98. },
  99. goToReading: function () {
  100. let classId = this.data.id;
  101. // httpRequestApi.checkLesson(classId).success(res => {
  102. // const productId = res.data.data[0];
  103. // this.setData({
  104. // productId
  105. // })
  106. // });
  107. httpRequestApi.areYouSuper(this.data.productId).success(res => {
  108. if (res.data.success) {
  109. wx.navigateTo({
  110. url: `../../main/reading/reading?id=${this.data.id}`
  111. })
  112. } else {
  113. // ios用户 并且没有购买过此书
  114. // if (app.globalData.isIOS) {
  115. // wx.showModal({
  116. // title: '暂不支持',
  117. // content: '十分抱歉,由于相关规定,您暂时无法在这里朗读',
  118. // success(res) {
  119. // if (res.confirm) {
  120. // console.log('用户点击确定')
  121. // } else if (res.cancel) {
  122. // console.log('用户点击取消')
  123. // }
  124. // }
  125. // })
  126. // return;
  127. // }
  128. this.setData({
  129. isModalShow: true
  130. })
  131. // wx.showModal({
  132. // title: '您未购买过本书,不能朗读',
  133. // content: '超值团购进行中,快去看看',
  134. // success(res) {
  135. // if (res.confirm) {
  136. // console.log('用户点击确定')
  137. // wx.navigateTo({
  138. // url: `../../groupPage/grade-details/grade-details?productId=${productId}`
  139. // })
  140. // } else if (res.cancel) {
  141. // console.log('用户点击取消')
  142. // }
  143. // }
  144. // })
  145. }
  146. })
  147. },
  148. modalConfirmHandler: function () {
  149. this.setData({
  150. isModalShow: false
  151. })
  152. wx.navigateTo({
  153. url: `../../groupPage/grade-details/grade-details?productId=${this.data.productId}`
  154. })
  155. },
  156. modalCloseHandler: function (){
  157. this.setData({
  158. isModalShow: false
  159. })
  160. },
  161. openShare: function (e) {
  162. // this.setData({
  163. // shareFlag: !this.data.shareFlag
  164. // })
  165. this.shareDialog = this.selectComponent("#share-dialog");
  166. const data = {
  167. avatar: this.data.authorAvatar,
  168. author: this.data.author,
  169. iconImg: this.data.iconImg,
  170. title: this.data.title,
  171. path: `pages/social/works/works?id=${this.data.id}&title=${this.data.title}`
  172. // tip: this.data.tip,
  173. }
  174. this.shareDialog.share(data);
  175. },
  176. onShareAppMessage: function (res) {
  177. console.log(this.data.productId)
  178. if (res.from === 'button') {
  179. // 来自页面内转发按钮
  180. console.log(res.target)
  181. }
  182. return {
  183. title: '老师同学都在玩的配音show,你还在等什么?',
  184. path: `pages/main/class/class?id=${this.data.id}&title=${this.data.title}&shareCard=true`,
  185. imageUrl: `https://efunbox.lingjiao.cn/reader/resource/share/lesson_${this.data.productId}.jpg`
  186. }
  187. },
  188. goToWorks: function (e) {
  189. console.log(this.data.works)
  190. // this.videoCtx = wx.createVideoContext('myVideo', this);
  191. if (this.videoCtx) {
  192. this.videoCtx.stop();
  193. }
  194. console.log(e);
  195. let readId = e.currentTarget.dataset.id;
  196. let title = this.data.title;
  197. wx.navigateTo({
  198. url: `../../social/works/works?id=${readId}&title=${title}`
  199. })
  200. },
  201. collect: function (e) {
  202. // let uid = wx.getStorageSync('uid');
  203. let data = {
  204. targetCode: this.data.id,
  205. // title: this.data.title,
  206. // iconImg: this.data.iconImg
  207. }
  208. httpRequestApi.collectClass(this.uid, data).success(res => {
  209. this.setData({
  210. collectFlag: !this.data.collectFlag
  211. })
  212. })
  213. },
  214. getReadInfo: function (pageNo, pageSize) {
  215. // const uid = wx.getStorageSync('uid');
  216. const data = {
  217. lessonId: this.data.id,
  218. pageNo: this.data.pageNo,
  219. pageSize: 10
  220. };
  221. httpRequestApi.getClassRead(this.uid, data).success(res => {
  222. const readInfo = res.data.data.list;
  223. const readTemp = [];
  224. readInfo.forEach(item => {
  225. const temp = {};
  226. temp.nickName = item.user.wechatName;
  227. temp.time = formatDate(item.userRead.gmtModified, 3);
  228. temp.avatar = item.user.avatar;
  229. temp.likes = item.userRead.likeAmount ? item.userRead.likeAmount : 0;
  230. temp.uid = item.userRead.uid;
  231. temp.id = item.userRead.id;
  232. console.log(item.userRead)
  233. this.data.works.push(temp);
  234. });
  235. this.setData({
  236. totalNo: res.data.data.totalNo,
  237. total: res.data.data.totalSize,
  238. works: this.data.works
  239. })
  240. });
  241. },
  242. // 下拉加载
  243. onReachBottom: function (e) {
  244. console.log(this.data.totalNo);
  245. this.setData({
  246. pageNo: this.data.pageNo + 1
  247. })
  248. if (this.data.pageNo <= this.data.totalNo) {
  249. this.getReadInfo();
  250. }
  251. },
  252. onHide: function () {
  253. let videoCtx = wx.createVideoContext('classVideo', this);
  254. videoCtx.stop();
  255. },
  256. })