123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- //
- // KBCommunityLeftController.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/16.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "KBCommunityLeftController.h"
- #import "KBCommunityCell.h"
- #import "UITableView+SDAutoTableViewCellHeight.h"
- #import "KBCommunityModel.h"
- #import "KBCommunityDetailModel.h"
- #import "KBShareGoodsModel.h"
- #import "KBShareGoodsView.h"
- #import "KBGoodDetailViewController.h"
- #import "KBLoginViewController.h"
- #import "KBPopShareGoodView.h"
- #import "KBGoodsRecommendTableViewCell.h"
- #import "KBGoodListViewController.h"
- @interface KBCommunityLeftController ()
- <
- UITableViewDelegate,
- UITableViewDataSource,
- YHCommunityDelegate,
- PhotoContainerViewDelegate,
- KBGoodsRecommendTableViewDelegate
- >
- @property (nonatomic, strong) UITableView *tableView;
- @property (nonatomic, strong) NSMutableArray *dataArr;
- @property (nonatomic ) NSInteger page;
- @property (nonatomic,strong ) UIView *backgroudView;
- @end
- @implementation KBCommunityLeftController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.page=0;
- [self configNavigationBar];
- [self configTableView];
- [self requestData];
- }
- -(void)viewDidAppear:(BOOL)animated{
- [super viewDidAppear:animated];
- [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
- }
- - (void)configNavigationBar{
- [self.navigationBar setNavTitle:@"优选商品"];
- self.view.backgroundColor = [UIColor whiteColor];
- self.navigationBar.navTitleLabel.textColor = [UIColor YHColorWithHex:0x333333];
- self.navigationBar.backgroundColor = [UIColor whiteColor];
- self.navigationBar.showNavigationBarBottomLine = YES;
- }
- - (void)configTableView {
- self.view.backgroundColor = [UIColor yhGrayColor];
- [self.view addSubview:self.tableView];
- [[UIApplication sharedApplication].keyWindow addSubview:self.backgroudView];
- }
- - (void)requestData {
- NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/specialRecommendation",BaseURL];
- self.page++;
- NSDictionary *dic=@{
- @"page":@(self.page)
- };
- [KBHttp post:url params:dic success:^(id json) {
- NSArray *arr=[NSArray yy_modelArrayWithClass:[KBCommunityModel class] json:json[@"data"]];
- if (arr.count>0) {
- if (self.page==1) {
- [self.dataArr removeAllObjects];
- }
- [self.dataArr addObjectsFromArray:arr];
- }
-
- [self setNoDataView:arr];
-
- [self.tableView reloadData];
- [self.tableView.mj_header endRefreshing];
- } failure:^(NSError *error) {
- [self.tableView.mj_header endRefreshing];
- [self.tableView.mj_footer endRefreshing];
- }];
-
- }
- - (void)setNoDataView:(NSArray *)array {
- self.tableView.showNoDataView = YES;
- self.tableView.defaultNoDataText = @"暂无数据";
-
- self.tableView.defaultNoDataImage = [UIImage imageNamed:@"noData"];
- if (array.count > 0) {
- [self.tableView.mj_footer endRefreshing];
- }else {
- [self.tableView.mj_footer endRefreshingWithNoMoreData];
- }
-
- }
- #pragma mark ============ UITableView Delegate && DataSource ==========
- - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
- if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
- cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
- }
-
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
- return 0.1f;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return self.dataArr.count;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- KBCommunityModel *model = self.dataArr[indexPath.row];
- if ([model.show_type integerValue]==1) {
- KBGoodsRecommendTableViewCell *cell=[KBGoodsRecommendTableViewCell cellWithTableView:tableView];
- cell.model=model;
- cell.delegate=self;
- return cell;
- }else{
- KBCommunityCell *cell = [KBCommunityCell cellWithTableView:tableView];
- cell.model = model;
- cell.picContainerView.delegate=self;
- cell.delegate=self;
- return cell;
- }
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- CGFloat a=[self cellHeightForIndexPath:indexPath cellContentViewWidth:SCREEN_WIDTH tableView:tableView];
- NSLog(@"%@----%@",@(indexPath.row),@(a));
- return a;
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
-
-
- }
- #pragma mark -代理 PhotoContainerViewDelegate
- - (void)otherOPByModel:(KBCommunityDetailModel *)model{
- KBGoodDetailViewController *detailVC = [[KBGoodDetailViewController alloc] init];
- DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithCommunityDetailModel:model];
- detailVC.requestModel = requestModel;
- [self.navigationController pushViewController:detailVC animated:YES];
- }
- -(void)jumpByCommunityModel:(KBCommunityModel *)model{
- KBGoodListViewController *list = [[KBGoodListViewController alloc] init];
- list.cate_id = model.Id;
- list.name = model.name;
- [self.navigationController pushViewController:list animated:YES];
- }
- #pragma mark -代理 YHCommunityDelegate
- -(void)oneTouchShareWithModel:(KBCommunityModel *)model{
- // NSArray *arr=model.detail;
- [MobClick event:OneKeyShareRecommend label:@"优选商品"];
- if([AccountTool isLogin]){
- // UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
- // pasteboard.string=model.note;
- NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/oneKeySharing",BaseURL];
- NSDictionary *dic=@{@"id":model.Id};
- [KBHttp post:url params:dic success:^(id json) {
- NSArray *arr=[NSArray yy_modelArrayWithClass:[KBCommunityDetailModel class] json:json[@"data"]];
- NSDictionary *userInfo = json[@"userinfo"];
- if (arr.count>0) {
- __block NSInteger count=0;
- NSMutableArray *imgArr=[NSMutableArray array];
- __block NSInteger max=(arr.count<9?arr.count:9);
- self.backgroudView.hidden=NO;
- [SVProgressHUD showWithStatus:@"生成分享中"];
- for (int i=0;i<max;i++) {
- KBCommunityDetailModel *model=arr[i];
- NSLog(@"model.img--%@",model.img);
- KBShareGoodsModel *goodsModel=[[KBShareGoodsModel alloc]init];
- goodsModel.mainImageUrl=model.img;
- goodsModel.commission_price = model.commission_price;
- if([model.shop_type integerValue]==0){
- goodsModel.shareGoodsFromType=YHShareGoodsFromTypeTaoBao;
- }else if([model.shop_type integerValue]==1){
- goodsModel.shareGoodsFromType=YHShareGoodsFromTypeTianMao;
- }else{
- goodsModel.shareGoodsFromType=YHShareGoodsFromTypeOriginal;
- }
- goodsModel.title=model.title;
- goodsModel.ticketAfterPrice=model.discount_price;
- goodsModel.ticketPrice=model.coupon_price;
- goodsModel.originalPrice=model.price;
- goodsModel.QRcodeImageUrl=model.url;
- if ([model.is_coupon integerValue]==0) {//进入折扣
- goodsModel.shareGoodsPurchaseType=YHShareGoodsPurchaseTypePrice;
- }
-
- KBShareGoodsView *view1=[[KBShareGoodsView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
- view1.model=goodsModel;
- view1.userInfo = userInfo;
- __weak __typeof(view1) weakView1 = view1;
- view1.imgSuccBlock = ^{
- count++;
- [imgArr addObject: [weakView1 changeToImage]];
- if (count==max) {
- count=0;
- [SVProgressHUD dismiss];
- self.backgroudView.hidden=YES;
- UIActivityViewController *activityVC = [[UIActivityViewController alloc]initWithActivityItems:imgArr applicationActivities:nil];
- [self presentViewController:activityVC animated:YES completion:nil];
- }
- };
-
- }
- }else{
- [SVProgressHUD dismiss];
- [MBProgressHUD showMessage:@"没有商品可以分享"];
-
- }
-
- } failure:^(NSError *error) {
- }];
- }else{
- KBLoginViewController *login = [[KBLoginViewController alloc] init];
- login.loginSucc = ^{
- self.page=0;
- [self requestData];
- };
- [self.navigationController presentViewController:login animated:YES completion:nil];
- }
-
-
-
-
-
- }
- #pragma mark ------- layzer ---------
- - (UITableView *)tableView {
- if (!_tableView) {
- _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight-TabbarHeight) style:UITableViewStyleGrouped];
- _tableView.estimatedSectionHeaderHeight = 0;
- _tableView.estimatedSectionFooterHeight = 0;
- _tableView.sectionFooterHeight = 0;
- _tableView.sectionHeaderHeight = 0;
- _tableView.estimatedRowHeight = 0;
- _tableView.delegate = self;
- _tableView.dataSource = self;
- _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
- _tableView.backgroundColor = [UIColor backgroudColor];
- _tableView.bounces = YES;
- _tableView.showsVerticalScrollIndicator = NO;
- _tableView.separatorColor = [UIColor lineColor];
- _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
- _tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
- self.page = 0;
- [_tableView.mj_footer resetNoMoreData];
- [self requestData];
- }];
- MJRefreshBackNormalFooter *footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
- [self requestData];
- }];
- _tableView.mj_footer = footer;
- [_tableView.mj_header beginRefreshing];
-
- }
- return _tableView;
- }
- - (NSMutableArray *)dataArr {
- if (!_dataArr) {
- _dataArr = [NSMutableArray array];
- }
- return _dataArr;
- }
- -(UIView *)backgroudView{
- if (!_backgroudView) {
- _backgroudView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
- _backgroudView.backgroundColor=[[UIColor grayColor] colorWithAlphaComponent:0.2];
- _backgroudView.hidden=YES;
- }
- return _backgroudView;
- }
- @end
|