SearchViewController.m 8.03 KB
Newer Older
勾芒's avatar
勾芒 committed
1 2 3 4 5 6 7 8 9 10 11
//
//  SearchViewController.m
//  Lighting
//
//  Created by 曹云霄 on 16/5/16.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "SearchViewController.h"
#import "SearchCollectionViewCell.h"
#import "HotCollectionViewCell.h"
勾芒's avatar
勾芒 committed
12 13
#import "ProductLibraryViewController.h"

勾芒's avatar
勾芒 committed
14 15 16 17 18 19

@interface SearchViewController ()<UICollectionViewDelegate,UICollectionViewDataSource>

/**
 * 数据源
 */
勾芒's avatar
勾芒 committed
20
@property (nonatomic,strong) HotFilter *response;
勾芒's avatar
勾芒 committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

/**
 *  本地搜索历史
 */
@property (nonatomic,strong) NSMutableArray *localSearchArray;

@end

@implementation SearchViewController



/**
 *  本地搜索历史初始化
 */
- (NSMutableArray *)localSearchArray
{
    if (_localSearchArray == nil) {
        
        _localSearchArray = [NSMutableArray array];
    }
    return _localSearchArray;
}


- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    [self uiConfigAction];
    [self getHotSearchdatas];
}


55 56 57 58
#pragma mark -渲染完成
- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
曹云霄's avatar
曹云霄 committed
59
    self.navigationController.fd_fullscreenPopGestureRecognizer.enabled = NO;
60 61 62
    if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
        self.navigationController.interactivePopGestureRecognizer.enabled = NO;
    }
63 64 65 66 67 68
}

#pragma mark -视图即将消失
- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
曹云霄's avatar
曹云霄 committed
69
    self.navigationController.fd_fullscreenPopGestureRecognizer.enabled = YES;
70 71 72
    if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
        self.navigationController.interactivePopGestureRecognizer.enabled = YES;
    }
73 74 75
}


勾芒's avatar
勾芒 committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
#pragma mark -布局
- (void)uiConfigAction
{
    self.hotCollectionviewLayout.itemSize = CGSizeMake(120, 44);
    self.hotCollectionviewLayout.minimumLineSpacing = 10;
    self.hotCollectionviewLayout.minimumInteritemSpacing = 10;
    self.hotCollectionviewLayout.sectionInset = UIEdgeInsetsMake(10, 10, 10, 10);
    self.historyLayout.itemSize = CGSizeMake(120, 44);
    self.historyLayout.minimumLineSpacing = 10;
    self.historyLayout.minimumInteritemSpacing = 10;
    self.historyLayout.sectionInset = UIEdgeInsetsMake(10, 10, 10, 10);
    self.historyCollectionView.delegate = self;
    self.historyCollectionView.dataSource = self;
    self.hotCollectionView.dataSource = self;
    self.hotCollectionView.delegate = self;
勾芒's avatar
勾芒 committed
91 92 93 94 95 96 97 98 99 100
    self.hotCollectionView.alwaysBounceVertical = YES;
    self.historyCollectionView.alwaysBounceVertical = YES;
    //保存输入内容
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(searchInputString:) name:SEARCHSTRING object:nil];
}


#pragma mark -输入内容
- (void)searchInputString:(NSNotification *)not
{
曹云霄's avatar
曹云霄 committed
101 102 103
    if (![self.localSearchArray containsObject:not.object]) {
         [self.localSearchArray addObject:not.object];
    }
勾芒's avatar
勾芒 committed
104
    //调用商品控制器
曹云霄's avatar
曹云霄 committed
105
    ProductLibraryViewController *productVC = [[[self class] getMainStoryboardClass] instantiateViewControllerWithIdentifier:@"ProductLibraryViewController"];
勾芒's avatar
勾芒 committed
106
    productVC.selectedCode = not.object;
勾芒's avatar
勾芒 committed
107
    [self.navigationController pushViewController:productVC animated:YES];
勾芒's avatar
勾芒 committed
108 109 110 111 112 113 114
}


#pragma mark -获取本地存储搜索历史
- (void)getlocalsaveDatas
{
    NSString *homeDictionary = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex: 0];
勾芒's avatar
勾芒 committed
115
    NSString *homepath = [homeDictionary stringByAppendingPathComponent:SEARCHHISTORY];//添加储存的文件名
勾芒's avatar
勾芒 committed
116
    self.localSearchArray = [NSKeyedUnarchiver unarchiveObjectWithFile:homepath];
勾芒's avatar
勾芒 committed
117
    [self.historyCollectionView reloadData];
勾芒's avatar
勾芒 committed
118 119 120 121 122 123 124 125
}



#pragma mark -归档搜索历史
- (void)SaveSearchDatas
{
    NSString *homeDictionary = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex: 0];
勾芒's avatar
勾芒 committed
126
    NSString *homepath = [homeDictionary stringByAppendingPathComponent:SEARCHHISTORY];//添加储存的文件名
勾芒's avatar
勾芒 committed
127
    BOOL flag = [NSKeyedArchiver archiveRootObject:self.localSearchArray toFile:homepath];//归档一个字符串
勾芒's avatar
勾芒 committed
128 129 130
    if (flag) {
        NSLog(@"归档成功");
    }
勾芒's avatar
勾芒 committed
131 132 133
}


勾芒's avatar
勾芒 committed
134 135 136
#pragma mark -将要加载前获取本地搜索历史
- (void)viewWillAppear:(BOOL)animated
{
勾芒's avatar
勾芒 committed
137
    [super viewWillAppear:animated];
勾芒's avatar
勾芒 committed
138 139 140 141 142 143 144
    [self getlocalsaveDatas];
}


#pragma mark -视图消失后归档搜索历史
- (void)viewDidDisappear:(BOOL)animated
{
勾芒's avatar
勾芒 committed
145
    [super viewDidDisappear:animated];
勾芒's avatar
勾芒 committed
146 147 148 149 150
    [self.view endEditing:YES];
    [self SaveSearchDatas];
}


勾芒's avatar
勾芒 committed
151 152 153
#pragma mark -获取热门搜索数据
- (void)getHotSearchdatas
{
154
    WS(weakSelf);
曹云霄's avatar
曹云霄 committed
155
    [XBLoadingView showHUDViewWithDefault];
156
    [[NetworkRequestClassManager Manager] NetworkWithDictionaryRequestWithURL:SERVERREQUESTURL(HOTSEARCH)  WithRequestType:ONE WithParameter:nil WithReturnValueBlock:^(id returnValue) {
勾芒's avatar
勾芒 committed
157
        
曹云霄's avatar
曹云霄 committed
158
        [XBLoadingView hideHUDViewWithDefault];
勾芒's avatar
勾芒 committed
159 160
        if ([returnValue[@"code"] isEqualToNumber:@0]) {
            
161 162
             weakSelf.response = [[HotFilter alloc]initWithDictionary:returnValue[@"data"] error:nil];
            [weakSelf.hotCollectionView reloadData];
勾芒's avatar
勾芒 committed
163 164 165
            
        }else
        {
曹云霄's avatar
曹云霄 committed
166
            [XBLoadingView showHUDViewWithText:returnValue[@"message"]];
勾芒's avatar
勾芒 committed
167
        }
168

169
    }WithFailureBlock:^(NSError *error) {
曹云霄's avatar
曹云霄 committed
170
        [XBLoadingView showHUDViewWithText:error.localizedDescription];
勾芒's avatar
勾芒 committed
171 172 173 174 175 176 177 178
    }];
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    if ([collectionView isEqual:self.historyCollectionView]) {
        
         SearchCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"firstcell" forIndexPath:indexPath];
勾芒's avatar
勾芒 committed
179
        cell.searchLabe.text = [self.localSearchArray objectAtIndex_opple:indexPath.item];
勾芒's avatar
勾芒 committed
180 181
        return cell;
    }
曹云霄's avatar
曹云霄 committed
182 183 184
    HotCollectionViewCell  *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"secondcell" forIndexPath:indexPath];
    cell.responseDatas = [self.response.list objectAtIndex_opple:indexPath.item];
    return cell;
勾芒's avatar
勾芒 committed
185 186 187 188 189 190 191 192 193 194
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    
    if ([collectionView isEqual:self.hotCollectionView]) {
        
        return self.response.list.count;
    }
    
勾芒's avatar
勾芒 committed
195
    return self.localSearchArray.count;
勾芒's avatar
勾芒 committed
196 197
}

勾芒's avatar
勾芒 committed
198 199 200 201
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    if ([collectionView isEqual:self.hotCollectionView]) {
        
202 203 204 205 206
        NSString *typeName = [[self.response.list objectAtIndex_opple:indexPath.item] typeName];
        if (![self.localSearchArray containsObject:typeName]) {
            [self.localSearchArray addObject:[[self.response.list objectAtIndex_opple:indexPath.item] typeName]];
        }
        [self callProductControl:[[self.response.list objectAtIndex_opple:indexPath.item] typecode]];
勾芒's avatar
勾芒 committed
207 208 209
    }
    else if ([collectionView isEqual:self.historyCollectionView])
    {
210
        [self callProductControl:[self.localSearchArray objectAtIndex_opple:indexPath.item]];
勾芒's avatar
勾芒 committed
211 212 213
    }
}

214 215 216
#pragma mark - 调用商品控制器
- (void)callProductControl:(NSString *)codeString
{
曹云霄's avatar
曹云霄 committed
217
    ProductLibraryViewController *productVC = [[[self class] getMainStoryboardClass] instantiateViewControllerWithIdentifier:@"ProductLibraryViewController"];
218 219 220 221
    productVC.selectedCode = codeString;
    [self.navigationController pushViewController:productVC animated:NO];
}

勾芒's avatar
勾芒 committed
222 223 224 225 226 227
#pragma mark -释放
- (void)dealloc
{
    [[NSNotificationCenter defaultCenter]removeObserver:self];
}

勾芒's avatar
勾芒 committed
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
#pragma mark -清除搜索历史
- (IBAction)delecteSearchHistoryButtonClick:(UIButton *)sender {
    
    
    NSString *homeDictionary = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex: 0];
    NSString *homepath = [homeDictionary stringByAppendingPathComponent:SEARCHHISTORY];//添加储存的文件名
    NSFileManager *manager = [NSFileManager defaultManager];
    [manager removeItemAtPath:homepath error:nil];
    
    [self.localSearchArray removeAllObjects];
    [self.historyCollectionView reloadData];
    
}


勾芒's avatar
勾芒 committed
243 244 245 246 247 248 249 250 251


- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}



@end