CourseViewController.m 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. //
  2. // CourseViewController.m
  3. // KulexiuForTeacher
  4. //
  5. // Created by Kyle on 2022/3/17.
  6. //
  7. #import "CourseViewController.h"
  8. #import "FSCalendar.h"
  9. #import "CourseNavView.h"
  10. #import "LTSCalendarBottomView.h"
  11. #import <KSToolLibrary/KSFullDatePicker.h>
  12. #import "AccompanyCourseCell.h"
  13. #import "CourseForLiveCell.h"
  14. #import "TableCourseModel.h"
  15. #import "KSChatConversationViewController.h"
  16. #import "KSGroupConversationController.h"
  17. #import "KSEnterLiveroomManager.h"
  18. #import "KSBaseWKWebViewController.h"
  19. #import "AccompanyDetailViewController.h"
  20. #import <KSToolLibrary/NSDate+Transform.h>
  21. #import "MusicRoomCourseCell.h"
  22. #import "MusicRoomViewController.h"
  23. @interface CourseViewController ()<UITableViewDataSource,UITableViewDelegate,FSCalendarDataSource,FSCalendarDelegate,UIGestureRecognizerDelegate>
  24. {
  25. void * _KVOContext;
  26. }
  27. @property (nonatomic, strong) CourseNavView *navHeadView;
  28. @property (nonatomic, strong) NSString *chooseMonth;
  29. @property (nonatomic, strong) NSString *chooseDay;
  30. @property (nonatomic,strong) FSCalendar *calendar;
  31. @property (strong, nonatomic) NSCalendar *gregorian;
  32. @property (nonatomic, strong) UITableView *tableView;
  33. @property (strong, nonatomic) UIPanGestureRecognizer *scopeGesture;
  34. @property (strong, nonatomic) NSDateFormatter *dateFormatter;
  35. @property (nonatomic, strong) LTSCalendarBottomView *calendarBottom;
  36. @property (nonatomic, assign) BOOL cancleRequest;
  37. @property (nonatomic, strong) KSFullDatePicker *datePicker;
  38. @property (nonatomic, assign) BOOL isPickerChoose; // 是否选择的月份
  39. @property (nonatomic, assign) NSInteger practiceStartTime; // 陪练课开课前可进入时间配置(分钟)
  40. @property (nonatomic, assign) NSInteger practiceEndTime; // 陪练课结束后退出时间配置(分钟)
  41. @property (nonatomic, assign) NSInteger liveStartTime; // 直播课开课前可进入时间配置(分钟)
  42. @property (nonatomic, assign) NSInteger liveEndTime; // 直播课结束后退出时间配置(分钟)
  43. @property (nonatomic, assign) NSInteger pianoStartTime; // 琴房课开课前可进入时间配置(分钟)
  44. @property (nonatomic, assign) NSInteger pianoEndTime; // 琴房课结束后退出时间配置(分钟)
  45. @property (nonatomic, strong) NSString *adjustBeginTime; // 可调整开始时间
  46. @property (nonatomic, strong) NSString *adjustEndTime; // 可调整结束时间
  47. @end
  48. @implementation CourseViewController
  49. - (void)viewDidLoad {
  50. [super viewDidLoad];
  51. // Do any additional setup after loading the view.
  52. self.ks_prefersNavigationBarHidden = YES;
  53. [self configUI];
  54. [self loadCalendarInfo];
  55. }
  56. - (void)loadCalendarInfo {
  57. NSDateFormatter *formatter = [NSObject getDateformatter];
  58. [formatter setDateFormat:@"yyyy-MM"];
  59. NSDate *date = [NSDate date];
  60. self.chooseMonth = [formatter stringFromDate:date];
  61. [formatter setDateFormat:@"yyyy-MM-dd"];
  62. self.chooseDay = [NSString stringWithFormat:@"%@ 00:00:00", [formatter stringFromDate:date]];
  63. [self.calendar selectDate:date];
  64. // title 显示
  65. [formatter setDateFormat:@"yyyy年MM月"];
  66. [self.navHeadView.navTitle setText:[formatter stringFromDate:date]];
  67. [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
  68. }
  69. - (void)viewWillAppear:(BOOL)animated {
  70. [super viewWillAppear:animated];
  71. [self loadMonthCourse:self.chooseMonth];
  72. if (![NSString isEmptyString:self.chooseDay]) {
  73. [self getCourseByDate:self.chooseDay];
  74. }
  75. [self requestAdjustConfig];
  76. }
  77. - (void)requestAdjustConfig {
  78. [KSNetworkingManager queryCourseAdjustTimeLimit:KS_GET success:^(NSDictionary * _Nonnull dic) {
  79. if ([dic ks_integerValueForKey:@"code"] == 200 && [dic ks_boolValueForKey:@"status"]) {
  80. NSArray *result = [dic ks_arrayValueForKey:@"data"];
  81. for (NSDictionary *parm in result) {
  82. if ([[parm ks_stringValueForKey:@"paramName"] isEqualToString:@"course_start_setting"]) { // 开始时间
  83. NSString *begTime = [parm ks_stringValueForKey:@"paramValue"];
  84. if (![NSString isEmptyString:begTime]) {
  85. self.adjustBeginTime = [NSString stringWithFormat:@"%@",begTime];
  86. }
  87. }
  88. else if ([[parm ks_stringValueForKey:@"paramName"] isEqualToString:@"course_end_setting"]) { // 结束时间
  89. NSString *endTime = [parm ks_stringValueForKey:@"paramValue"];
  90. if (![NSString isEmptyString:endTime]) {
  91. self.adjustEndTime = [NSString stringWithFormat:@"%@",endTime];
  92. }
  93. }
  94. }
  95. }
  96. else {
  97. }
  98. } faliure:^(NSError * _Nonnull error) {
  99. }];
  100. }
  101. - (void)configEmptyView {
  102. [self setPromptString:@"暂无课程~" imageName:@"empty_course" inView:self.tableView];
  103. }
  104. - (void)configUI {
  105. [self.view addSubview:self.navHeadView];
  106. [self.navHeadView mas_makeConstraints:^(MASConstraintMaker *make) {
  107. make.left.right.top.mas_equalTo(self.view);
  108. make.height.mas_equalTo(kNaviBarHeight);
  109. }];
  110. [self.scrollView mas_remakeConstraints:^(MASConstraintMaker *make) {
  111. make.left.right.mas_equalTo(self.view);
  112. make.top.mas_equalTo(self.navHeadView.mas_bottom);
  113. make.bottom.mas_equalTo(self.view.mas_bottom);
  114. }];
  115. UIView *containerView = [[UIView alloc] initWithFrame:CGRectZero];
  116. containerView.backgroundColor = [UIColor clearColor];
  117. [self.scrollView addSubview:containerView];
  118. [containerView mas_makeConstraints:^(MASConstraintMaker *make) {
  119. make.edges.mas_equalTo(self.scrollView);
  120. make.width.mas_equalTo(self.scrollView);
  121. }];
  122. self.calendar = [[FSCalendar alloc] init];
  123. [self configCalendar];
  124. [containerView addSubview:self.calendar];
  125. [self.calendar mas_makeConstraints:^(MASConstraintMaker *make) {
  126. make.left.right.mas_equalTo(containerView);
  127. make.top.mas_equalTo(containerView.mas_top);
  128. make.height.mas_equalTo(300);
  129. }];
  130. self.calendarBottom = [LTSCalendarBottomView shareInstance];
  131. MJWeakSelf;
  132. [self.calendarBottom changeDisplay:^{
  133. [weakSelf changeDisplay];
  134. }];
  135. [containerView addSubview:self.calendarBottom];
  136. [self.calendarBottom mas_makeConstraints:^(MASConstraintMaker *make) {
  137. make.left.right.mas_equalTo(containerView);
  138. make.top.mas_equalTo(self.calendar.mas_bottom);
  139. make.height.mas_equalTo(40);
  140. }];
  141. [containerView addSubview:self.tableView];
  142. CGFloat tableHeight = kScreenHeight - kNaviBarHeight - kTabBarHeight - 300 - 40;
  143. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  144. make.left.right.mas_equalTo(self.view);
  145. make.top.mas_equalTo(self.calendarBottom.mas_bottom);
  146. make.height.mas_equalTo(tableHeight);
  147. }];
  148. [containerView mas_makeConstraints:^(MASConstraintMaker *make) {
  149. make.bottom.mas_equalTo(self.tableView.mas_bottom);
  150. }];
  151. UIPanGestureRecognizer *panGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self.calendar action:@selector(handleScopeGesture:)];
  152. panGesture.delegate = self;
  153. panGesture.minimumNumberOfTouches = 1;
  154. panGesture.maximumNumberOfTouches = 2;
  155. [self.scrollView addGestureRecognizer:panGesture];
  156. self.scopeGesture = panGesture;
  157. [self.tableView.panGestureRecognizer requireGestureRecognizerToFail:panGesture];
  158. self.scrollView.mj_header = [KSGifRefreshHeader headerWithRefreshingBlock:^{
  159. [weakSelf.calendar setToday:[NSDate date]];
  160. [weakSelf loadMonthCourse:weakSelf.chooseMonth];
  161. if (![NSString isEmptyString:weakSelf.chooseDay]) {
  162. [weakSelf getCourseByDate:weakSelf.chooseDay];
  163. }
  164. }];
  165. self.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
  166. [self configEmptyView];
  167. }
  168. - (void)endRefresh {
  169. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  170. [self.scrollView.mj_header endRefreshing];
  171. });
  172. }
  173. #pragma mark ---- calender action
  174. // 收起或展开日历
  175. - (void)changeDisplay {
  176. FSCalendarScope selectedScope = self.calendar.scope == FSCalendarScopeMonth ? FSCalendarScopeWeek : FSCalendarScopeMonth;
  177. [self.calendar setScope:selectedScope animated:YES];
  178. NSString *imgName = selectedScope == FSCalendarScopeWeek ? @"arrow_down" : @"arrow_up";
  179. [self.calendarBottom.arrowImage setImage:[UIImage imageNamed:imgName]];
  180. [self.calendar reloadData];
  181. }
  182. - (void)configCalendar {
  183. self.calendar.backgroundColor = [UIColor whiteColor];
  184. self.calendar.appearance.titleFont = [UIFont systemFontOfSize:14.0f weight:UIFontWeightMedium];
  185. self.calendar.appearance.titleDefaultColor = HexRGB(0x444444);
  186. self.calendar.appearance.titleTodayColor = HexRGB(0x444444);
  187. self.calendar.appearance.titleSelectionColor = [UIColor whiteColor];
  188. self.calendar.appearance.selectionColor = THEMECOLOR;
  189. self.calendar.appearance.weekdayFont = [UIFont systemFontOfSize:14.0f];
  190. self.calendar.appearance.weekdayTextColor = HexRGB(0x777777);
  191. self.calendar.appearance.titleWeekendColor = THEMECOLOR;
  192. self.calendar.appearance.todaySelectionColor = THEMECOLOR;
  193. self.calendar.appearance.todayColor = [UIColor whiteColor];
  194. self.calendar.appearance.todayBorderColor = [UIColor whiteColor];
  195. self.calendar.appearance.borderRadius = 0.2f;
  196. self.calendar.appearance.borderDefaultColor = [UIColor whiteColor];
  197. self.calendar.appearance.titleHightlightColor = HexRGB(0x444444);
  198. self.calendar.appearance.backgoundHightlightColor = HexRGBAlpha(0xffd7a6, 0.21);
  199. self.calendar.appearance.subtitleFont = [UIFont systemFontOfSize:10.0f];
  200. self.calendar.appearance.subtitleOffset = CGPointMake(0, 3);
  201. self.calendar.appearance.subtitleTodayColor = HexRGB(0xff6363);
  202. self.calendar.appearance.subtitleDefaultColor = HexRGB(0xff6363);
  203. self.calendar.appearance.subtitleSelectionColor = [UIColor whiteColor];
  204. self.calendar.appearance.titleTodayColor = THEMECOLOR;
  205. self.calendar.dataSource = self;
  206. self.calendar.delegate = self;
  207. // self.calendar.firstWeekday = 2;
  208. self.calendar.appearance.caseOptions = FSCalendarCaseOptionsWeekdayUsesSingleUpperCase|FSCalendarCaseOptionsHeaderUsesUpperCase;
  209. self.calendar.calendarHeaderView.hidden = YES;
  210. self.calendar.locale = [NSLocale localeWithLocaleIdentifier:@"zh_CN"];
  211. [self.calendar addObserver:self forKeyPath:@"scope" options:NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld context:_KVOContext];
  212. self.calendar.placeholderType = FSCalendarPlaceholderTypeNone;
  213. self.calendar.scope = FSCalendarScopeMonth;
  214. [self.calendar selectDate:[NSDate date] scrollToDate:YES];
  215. }
  216. #pragma mark - FSCalendarDataSource
  217. - (NSString *)calendar:(FSCalendar *)calendar subtitleForDate:(NSDate *)date {
  218. // 判断有课的日期显示subtitle
  219. if ([calendar.highlightDates containsObject:date]) {
  220. return @"有课";
  221. }
  222. return nil;
  223. }
  224. #pragma mark - FSCalendarDelegate
  225. - (void)calendar:(FSCalendar *)calendar boundingRectWillChange:(CGRect)bounds animated:(BOOL)animated
  226. {
  227. [calendar mas_updateConstraints:^(MASConstraintMaker *make) {
  228. make.height.mas_equalTo(bounds.size.height);
  229. // Do other updates
  230. }];
  231. [self.tableView mas_updateConstraints:^(MASConstraintMaker *make) {
  232. make.height.mas_equalTo(kScreenHeight - kTabBarHeight - bounds.size.height - kNaviBarHeight - 40);
  233. }];
  234. [self.view layoutIfNeeded];
  235. }
  236. - (void)calendar:(FSCalendar *)calendar didSelectDate:(NSDate *)date atMonthPosition:(FSCalendarMonthPosition)monthPosition
  237. {
  238. NSLog(@"did select date %@",[self.dateFormatter stringFromDate:date]);
  239. NSMutableArray *selectedDates = [NSMutableArray arrayWithCapacity:calendar.selectedDates.count];
  240. [calendar.selectedDates enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
  241. [selectedDates addObject:[self.dateFormatter stringFromDate:obj]];
  242. }];
  243. self.navHeadView.navTitle.text = [self.dateFormatter stringFromDate:date];
  244. NSLog(@"selected dates is %@",selectedDates);
  245. if (monthPosition == FSCalendarMonthPositionNext || monthPosition == FSCalendarMonthPositionPrevious) {
  246. [calendar setCurrentPage:date animated:YES];
  247. }
  248. NSDateFormatter *formatter = [NSObject getDateformatter];
  249. [formatter setDateFormat:@"yyyy-MM-dd"];
  250. NSString *dateStr = [formatter stringFromDate:date];
  251. dateStr = [NSString stringWithFormat:@"%@ 00:00:00", dateStr];
  252. self.chooseDay = dateStr;
  253. [self getCourseByDate:dateStr];
  254. }
  255. - (void)calendarCurrentPageDidChange:(FSCalendar *)calendar {
  256. if (_isPickerChoose) {
  257. _isPickerChoose = NO;
  258. return;
  259. }
  260. self.navHeadView.navTitle.text = [self.dateFormatter stringFromDate:calendar.currentPage];
  261. NSLog(@"%s %@", __FUNCTION__, [self.dateFormatter stringFromDate:calendar.currentPage]);
  262. // 获取当前月份信息
  263. NSDateFormatter *formatter = [NSObject getDateformatter];
  264. [formatter setDateFormat:@"yyyy-MM"];
  265. NSString *month = [formatter stringFromDate:calendar.currentPage];
  266. if (![_chooseMonth isEqualToString:month]) {
  267. _chooseMonth = month;
  268. [self loadMonthCourse:month];
  269. }
  270. [formatter setDateFormat:@"yyyy-MM-dd"];
  271. NSString *chooseDay = [formatter stringFromDate:calendar.currentPage];
  272. self.chooseDay = chooseDay;
  273. [self.calendar selectDate:calendar.currentPage];
  274. [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
  275. NSString *currentDate = [formatter stringFromDate:calendar.currentPage];
  276. [self getCourseByDate:currentDate];
  277. }
  278. #pragma mark --- 获取当前月份有课日期
  279. - (void)loadMonthCourse:(NSString *)month {
  280. [KSNetworkingManager queryCourseSchedule:KS_POST classMonth:month success:^(NSDictionary * _Nonnull dic) {
  281. [self endRefresh];
  282. if ([dic ks_integerValueForKey:@"code"] == 200 && [dic ks_boolValueForKey:@"status"]) {
  283. NSArray *courseArray = [dic ks_arrayValueForKey:@"data"];
  284. NSMutableArray *courseDateArray = [NSMutableArray array];
  285. for (NSString *dateString in courseArray) {
  286. NSString *dateStr = [NSString stringWithFormat:@"%@ %@", dateString, @"00:00:00"];
  287. [courseDateArray addObject:dateStr];
  288. }
  289. self.calendar.highlightDates = courseDateArray;
  290. [self.calendar reloadData];
  291. }
  292. else {
  293. [LOADING_MANAGER MBShowAUTOHidingInWindow:MESSAGEKEY];
  294. }
  295. } faliure:^(NSError * _Nonnull error) {
  296. [self endRefresh];
  297. }];
  298. }
  299. #pragma mark --- 获取当日课程
  300. - (void)getCourseByDate:(NSString *)date {
  301. [LOADING_MANAGER showHUD];
  302. [KSNetworkingManager queryCourseForDay:KS_POST classDate:date success:^(NSDictionary * _Nonnull dic) {
  303. [LOADING_MANAGER removeHUD];
  304. if ([dic ks_integerValueForKey:@"code"] == 200 && [dic ks_boolValueForKey:@"status"]) {
  305. // 配置信息
  306. NSDictionary *config = [[dic ks_dictionaryValueForKey:@"data"] ks_dictionaryValueForKey:@"sysConfig"];
  307. self.practiceStartTime = [config ks_integerValueForKey:@"practiceStartTime"];
  308. self.practiceEndTime = [config ks_integerValueForKey:@"practiceEndTime"];
  309. self.liveStartTime = [config ks_integerValueForKey:@"liveStartTime"];
  310. self.liveEndTime = [config ks_integerValueForKey:@"liveEndTime"];
  311. self.pianoStartTime = [config ks_integerValueForKey:@"pianoStartTime"];
  312. self.pianoEndTime = [config ks_integerValueForKey:@"pianoEndTime"];
  313. NSArray *courseArray = [[dic ks_dictionaryValueForKey:@"data"] ks_arrayValueForKey:@"studentList"];
  314. NSMutableArray *lessonArray = [NSMutableArray array];
  315. for (NSDictionary *parm in courseArray) {
  316. TableCourseModel *model = [[TableCourseModel alloc] initWithDictionary:parm];
  317. [lessonArray addObject:model];
  318. }
  319. self.dataArray = [lessonArray mutableCopy];
  320. }
  321. else {
  322. [LOADING_MANAGER MBShowAUTOHidingInWindow:MESSAGEKEY];
  323. }
  324. [self.tableView reloadData];
  325. [self changePromptLabelState];
  326. } faliure:^(NSError * _Nonnull error) {
  327. [LOADING_MANAGER removeHUD];
  328. }];
  329. }
  330. #pragma mark - <UIGestureRecognizerDelegate>
  331. // Whether scope gesture should begin
  332. - (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer
  333. {
  334. BOOL shouldBegin = self.tableView.contentOffset.y <= -self.tableView.contentInset.top;
  335. if (shouldBegin) {
  336. CGPoint velocity = [self.scopeGesture velocityInView:self.view];
  337. switch (self.calendar.scope) {
  338. case FSCalendarScopeMonth:
  339. return velocity.y < 0;
  340. case FSCalendarScopeWeek:
  341. return velocity.y > 0;
  342. }
  343. }
  344. return shouldBegin;
  345. }
  346. #pragma mark - KVO
  347. - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSKeyValueChangeKey,id> *)change context:(void *)context
  348. {
  349. if (context == _KVOContext) {
  350. FSCalendarScope oldScope = [change[NSKeyValueChangeOldKey] unsignedIntegerValue];
  351. FSCalendarScope newScope = [change[NSKeyValueChangeNewKey] unsignedIntegerValue];
  352. NSLog(@"From %@ to %@",(oldScope==FSCalendarScopeWeek?@"week":@"month"),(newScope==FSCalendarScopeWeek?@"week":@"month"));
  353. NSString *imgName = newScope == FSCalendarScopeWeek ? @"arrow_down" : @"arrow_up";
  354. [self.calendarBottom.arrowImage setImage:[UIImage imageNamed:imgName]];
  355. } else {
  356. [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
  357. }
  358. }
  359. #pragma mark --- table data source
  360. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  361. return 1;
  362. }
  363. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  364. return self.dataArray.count;
  365. }
  366. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  367. TableCourseModel *model = self.dataArray[indexPath.row];
  368. if ([model.courseType isEqualToString:@"PIANO_ROOM_CLASS"]) {
  369. return 127.0f;
  370. }
  371. return 147.0f;
  372. }
  373. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  374. TableCourseModel *model = self.dataArray[indexPath.row];
  375. if ([model.courseType isEqualToString:@"PRACTICE"]) { // 陪练课
  376. AccompanyCourseCell *cell = [tableView dequeueReusableCellWithIdentifier:@"AccompanyCourseCell"];
  377. MJWeakSelf;
  378. [cell configWithCourseMessage:model beforeTime:self.practiceStartTime actionCallback:^(ACCOMPANY_TYPE type, TableCourseModel * _Nonnull courseModel) {
  379. [weakSelf accompanyLessonAction:type source:courseModel];
  380. }];
  381. return cell;
  382. }
  383. else if ([model.courseType isEqualToString:@"LIVE"]) { // 直播课
  384. CourseForLiveCell *cell = [tableView dequeueReusableCellWithIdentifier:@"CourseForLiveCell"];
  385. MJWeakSelf;
  386. [cell configWithSource:model beforeTime:self.liveStartTime callback:^(LIVECOURSEACTION action, TableCourseModel *sourceModel) {
  387. [weakSelf liveCourseAction:action source:sourceModel];
  388. }];
  389. return cell;
  390. }
  391. else { // 琴房课 PIANO_ROOM_CLASS
  392. MusicRoomCourseCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MusicRoomCourseCell"];
  393. MJWeakSelf;
  394. [cell configWithSource:model beforeTime:self.pianoStartTime callback:^(NSString * _Nonnull targetId) {
  395. [weakSelf chatAction:targetId groupName:@"" isGroup:YES];
  396. }];
  397. return cell;
  398. }
  399. }
  400. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  401. TableCourseModel *model = self.dataArray[indexPath.row];
  402. if ([model.courseType isEqualToString:@"PRACTICE"]) { // 陪练课
  403. [self showAccompanyDetailAction:model];
  404. }
  405. else if ([model.courseType isEqualToString:@"LIVE"]) { // 直播课详情
  406. [self liveCourseDetail:model.courseId courseGroupId:model.courseGoupId];
  407. }
  408. else {
  409. MusicRoomViewController *ctrl = [[MusicRoomViewController alloc] init];
  410. ctrl.courseId = model.courseId;
  411. ctrl.courseGroupId = model.courseGoupId;
  412. [self.navigationController pushViewController:ctrl animated:YES];
  413. }
  414. }
  415. - (void)accompanyLessonAction:(ACCOMPANY_TYPE)action source:(TableCourseModel *)source {
  416. switch (action) {
  417. case ACCOMPANY_TYPE_CHAT:
  418. {
  419. [self chatAction:source.imUserId groupName:source.name isGroup:NO];
  420. }
  421. break;
  422. case ACCOMPANY_TYPE_ADJUST:
  423. {
  424. [self adjustCourseAction:source];
  425. }
  426. break;
  427. case ACCOMPANY_DETAIL:
  428. {
  429. [self showAccompanyDetailAction:source];
  430. }
  431. break;
  432. default:
  433. break;
  434. }
  435. }
  436. - (void)adjustCourseAction:(TableCourseModel *)source {
  437. // 获取当前课程的时间
  438. NSString *formatString = @"yyyy-MM-dd HH:mm:ss";
  439. NSDateFormatter *dateFormat = [NSObject getDateformatter];
  440. dateFormat.dateFormat = @"yyyy年MM月";
  441. [dateFormat setDateFormat:formatString];
  442. NSDate *courseBeginDate = [dateFormat dateFromString:source.startTime];
  443. if (courseBeginDate == nil) {
  444. courseBeginDate = [NSDate date];
  445. }
  446. KSFullDatePicker *adjustPicker = [[KSFullDatePicker alloc] initWithTitle:@"课程调整" date:courseBeginDate pickMode:KSDATEPICKER_MODE_DAY_TIME sureButtonColor:THEMECOLOR selectDateBlock:^(NSString *date) {
  447. NSString *timeString = [NSString stringWithFormat:@"%@:00", date];
  448. [self adjustCourseWithSource:source time:timeString];
  449. } cancleBlock:^{
  450. }];
  451. [adjustPicker show];
  452. }
  453. - (void)adjustCourseWithSource:(TableCourseModel *)model time:(NSString *)chooseTime {
  454. NSString *formatString = @"yyyy-MM-dd HH:mm:ss";
  455. NSTimeInterval courseDuration = [NSDate countTimesTampWithBeginTime:model.startTime endTime:model.endTime format:formatString];
  456. NSDate *endDate = [NSDate dateWithTimeInterval:courseDuration sinceDate:[NSDate dateFromString:chooseTime format:formatString]];
  457. NSString *endTime = [endDate stringDateWithFormat:formatString];
  458. NSString *classDay = [[chooseTime componentsSeparatedByString:@" "] firstObject];
  459. NSString *classDate = [NSString stringWithFormat:@"%@ 00:00:00", classDay];
  460. // 判断是否能在规定的时间内
  461. if (![NSString isEmptyString:self.adjustBeginTime] && ![NSString isEmptyString:self.adjustEndTime]) {
  462. NSString *limitBegin = [NSString stringWithFormat:@"%@ %@:00",classDay,self.adjustBeginTime];
  463. NSString *limitEnd = [NSString stringWithFormat:@"%@ %@:00",classDay,self.adjustEndTime];
  464. NSTimeInterval beginDuration = [NSDate countTimesTampWithBeginTime:limitBegin endTime:chooseTime format:formatString];
  465. NSTimeInterval endDuration = [NSDate countTimesTampWithBeginTime:endTime endTime:limitEnd format:formatString];
  466. if (beginDuration < 0) {
  467. [LOADING_MANAGER MBShowAUTOHidingInWindow:[NSString stringWithFormat:@"课程开始时间不可早于%@",self.adjustBeginTime]];
  468. return;
  469. }
  470. else if (endDuration < 0) {
  471. [LOADING_MANAGER MBShowAUTOHidingInWindow:[NSString stringWithFormat:@"课程结束时间不可晚于%@",self.adjustEndTime]];
  472. return;
  473. }
  474. }
  475. [LOADING_MANAGER showHUD];
  476. [KSNetworkingManager courseAdjustRequst:KS_POST courseId:model.courseId classDate:classDate startTime:chooseTime endTime:endTime success:^(NSDictionary * _Nonnull dic) {
  477. [LOADING_MANAGER removeHUD];
  478. if ([dic ks_integerValueForKey:@"code"] == 200 && [dic ks_boolValueForKey:@"status"]) {
  479. [LOADING_MANAGER KSShowMsg:@"调整成功" promptCompletion:^{
  480. [self loadMonthCourse:self.chooseMonth];
  481. if (![NSString isEmptyString:self.chooseDay]) {
  482. [self getCourseByDate:self.chooseDay];
  483. }
  484. }];
  485. }
  486. else {
  487. [LOADING_MANAGER MBShowAUTOHidingInWindow:MESSAGEKEY];
  488. }
  489. } faliure:^(NSError * _Nonnull error) {
  490. [LOADING_MANAGER removeHUD];
  491. }];
  492. }
  493. - (void)showAccompanyDetailAction:(TableCourseModel *)source {
  494. AccompanyDetailViewController *detailVC = [[AccompanyDetailViewController alloc] init];
  495. detailVC.courseId = source.courseId;
  496. detailVC.courseGroupId = source.courseGoupId;
  497. detailVC.studentId = source.userId;
  498. [self.navigationController pushViewController:detailVC animated:YES];
  499. }
  500. - (void)liveCourseAction:(LIVECOURSEACTION)action source:(TableCourseModel *)source {
  501. switch (action) {
  502. case LIVECOURSEACTION_CHAT: // 聊天
  503. {
  504. [self chatAction:source.imGroupId groupName:@"" isGroup:YES];
  505. }
  506. break;
  507. case LIVECOURSEACTION_LIVEROOM: // 直播课上课
  508. {
  509. [self liveCourseDetail:source.courseId courseGroupId:source.courseGoupId];
  510. }
  511. break;
  512. default:
  513. break;
  514. }
  515. }
  516. - (void)chatAction:(NSString *)targetId groupName:(NSString *)targetName isGroup:(BOOL)isGroup {
  517. if ([NSString isEmptyString:targetId] && isGroup) {
  518. [LOADING_MANAGER MBShowAUTOHidingInWindow:@"报名未结束,暂无群组"];
  519. return;
  520. }
  521. if (isGroup) {
  522. TUIChatConversationModel *model = [[TUIChatConversationModel alloc] init];
  523. model.groupID = targetId;
  524. KSGroupConversationController *ctrl = [[KSGroupConversationController alloc] init];
  525. ctrl.conversation = model;
  526. [self.navigationController pushViewController:ctrl animated:YES];
  527. }
  528. else {
  529. TUIChatConversationModel *model = [[TUIChatConversationModel alloc] init];
  530. model.userID = targetId;
  531. KSChatConversationViewController *ctrl = [[KSChatConversationViewController alloc] init];
  532. ctrl.conversation = model;
  533. [self.navigationController pushViewController:ctrl animated:YES];
  534. }
  535. }
  536. - (void)liveCourseDetail:(NSString *)courseId courseGroupId:(NSString *)courseGroupId {
  537. KSBaseWKWebViewController *ctrl = [[KSBaseWKWebViewController alloc] init];
  538. ctrl.url = [NSString stringWithFormat:@"%@/#/liveDetail?joinRoom=1&groupId=%@&classId=%@", WEBHOST, courseGroupId,courseId];
  539. [self.navigationController pushViewController:ctrl animated:YES];
  540. }
  541. #pragma mark --- lazying
  542. - (CourseNavView *)navHeadView {
  543. if (!_navHeadView) {
  544. _navHeadView = [CourseNavView shareInstance];
  545. MJWeakSelf;
  546. [_navHeadView chooseNavCallback:^{
  547. [weakSelf displayMounthPicker];
  548. }];
  549. }
  550. return _navHeadView;
  551. }
  552. - (KSFullDatePicker *)datePicker {
  553. if (!_datePicker) {
  554. _datePicker = [[KSFullDatePicker alloc] initWithTitle:@"" date:[NSDate date] pickMode:KSDATEPICKER_MODE_YEAR_MONTH sureButtonColor:THEMECOLOR selectDateBlock:^(NSString *date) {
  555. self.navHeadView.navTitle.text = [self getTimeDisplay:date];
  556. self.chooseMonth = date;
  557. [self resetPickerStatus];
  558. [self scrollCalendarToChooseMonth];
  559. } cancleBlock:^{
  560. [self resetPickerStatus];
  561. }];
  562. }
  563. return _datePicker;
  564. }
  565. - (void)scrollCalendarToChooseMonth {
  566. self.isPickerChoose = YES;
  567. NSDateFormatter *formatter = [NSObject getDateformatter];
  568. [formatter setDateFormat:@"yyyy-MM"];
  569. NSDate *chooseDate = [formatter dateFromString:self.chooseMonth];
  570. [formatter setDateFormat:@"yyyy-MM-dd"];
  571. self.chooseDay = [NSString stringWithFormat:@"%@ 00:00:00", [formatter stringFromDate:chooseDate]];
  572. [self.calendar setCurrentPage:chooseDate animated:YES];
  573. [self loadMonthCourse:self.chooseMonth];
  574. if (![NSString isEmptyString:self.chooseDay]) {
  575. [self.calendar selectDate:chooseDate];
  576. [self getCourseByDate:self.chooseDay];
  577. }
  578. }
  579. - (NSString *)getTimeDisplay:(NSString *)chooseMonth {
  580. [self.dateFormatter setDateFormat:@"yyyy-MM"];
  581. NSDate *chooseDate = [self.dateFormatter dateFromString:chooseMonth];
  582. [self.dateFormatter setDateFormat:@"yyyy年MM月"];
  583. NSString *displayTime = [self.dateFormatter stringFromDate:chooseDate];
  584. return displayTime;
  585. }
  586. - (void)resetPickerStatus {
  587. self.navHeadView.arrowUp = NO;
  588. }
  589. - (void)displayMounthPicker {
  590. [self.datePicker show];
  591. }
  592. - (NSDateFormatter *)dateFormatter {
  593. if (!_dateFormatter) {
  594. _dateFormatter = [NSObject getDateformatter];
  595. _dateFormatter.dateFormat = @"yyyy年MM月";
  596. }
  597. return _dateFormatter;
  598. }
  599. - (UITableView *)tableView {
  600. if (!_tableView) {
  601. _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
  602. _tableView.delegate = self;
  603. _tableView.dataSource = self;
  604. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  605. _tableView.backgroundColor = [UIColor clearColor];
  606. _tableView.showsVerticalScrollIndicator = NO;
  607. _tableView.showsHorizontalScrollIndicator = NO;
  608. [_tableView registerNib:[UINib nibWithNibName:@"AccompanyCourseCell" bundle:[NSBundle mainBundle]] forCellReuseIdentifier:@"AccompanyCourseCell"];
  609. [_tableView registerNib:[UINib nibWithNibName:@"CourseForLiveCell" bundle:[NSBundle mainBundle]] forCellReuseIdentifier:@"CourseForLiveCell"];
  610. [_tableView registerNib:[UINib nibWithNibName:@"MusicRoomCourseCell" bundle:[NSBundle mainBundle]] forCellReuseIdentifier:@"MusicRoomCourseCell"];
  611. UIView *bottomView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, 15)];
  612. bottomView.backgroundColor = [UIColor clearColor];
  613. _tableView.tableFooterView = bottomView;
  614. }
  615. return _tableView;
  616. }
  617. /*
  618. #pragma mark - Navigation
  619. // In a storyboard-based application, you will often want to do a little preparation before navigation
  620. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  621. // Get the new view controller using [segue destinationViewController].
  622. // Pass the selected object to the new view controller.
  623. }
  624. */
  625. @end