mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-01-12 22:47:31 +08:00
116 lines
4.0 KiB
Objective-C
116 lines
4.0 KiB
Objective-C
//
|
|
// FRPGalleryViewController.m
|
|
// FRP
|
|
//
|
|
// Created by Ash Furrow on 10/13/2013.
|
|
// Copyright (c) 2013 Ash Furrow. All rights reserved.
|
|
//
|
|
|
|
// View Controllers
|
|
#import "FRPGalleryViewController.h"
|
|
#import "FRPFullSizePhotoViewController.h"
|
|
#import "FRPLoginViewController.h"
|
|
|
|
// View models
|
|
#import "FRPGalleryViewModel.h"
|
|
#import "FRPFullSizePhotoViewModel.h"
|
|
|
|
// Views
|
|
#import "FRPCell.h"
|
|
|
|
// Utilities
|
|
#import "FRPGalleryFlowLayout.h"
|
|
|
|
static NSString *CellIdentifier = @"Cell";
|
|
|
|
@interface FRPGalleryViewController ()
|
|
|
|
// Private Properties
|
|
@property (nonatomic, strong) FRPGalleryViewModel *viewModel;
|
|
|
|
@end
|
|
|
|
@implementation FRPGalleryViewController
|
|
|
|
- (id)init
|
|
{
|
|
FRPGalleryFlowLayout *flowLayout = [[FRPGalleryFlowLayout alloc] init];
|
|
|
|
self = [self initWithCollectionViewLayout:flowLayout];
|
|
if (!self) return nil;
|
|
|
|
self.viewModel = [[FRPGalleryViewModel alloc] init];
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
|
|
// Configure self
|
|
self.title = @"Popular on 500px";
|
|
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Log In" style:UIBarButtonItemStylePlain target:nil action:nil];
|
|
|
|
// Configure view
|
|
[self.collectionView registerClass:[FRPCell class] forCellWithReuseIdentifier:CellIdentifier];
|
|
|
|
// Binding to view model
|
|
@weakify(self);
|
|
[RACObserve(self.viewModel, model) subscribeNext:^(id x) {
|
|
@strongify(self);
|
|
[self.collectionView reloadData];
|
|
}];
|
|
|
|
[[self rac_signalForSelector:@selector(userDidScroll:toPhotoAtIndex:) fromProtocol:@protocol(FRPFullSizePhotoViewControllerDelegate)] subscribeNext:^(RACTuple *value) {
|
|
@strongify(self);
|
|
[self.collectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForItem:[value.second integerValue] inSection:0] atScrollPosition:UICollectionViewScrollPositionCenteredVertically animated:NO];
|
|
}];
|
|
|
|
[[self rac_signalForSelector:@selector(collectionView:didSelectItemAtIndexPath:) fromProtocol:@protocol(UICollectionViewDelegate)] subscribeNext:^(RACTuple *arguments) {
|
|
@strongify(self);
|
|
|
|
NSIndexPath *indexPath = arguments.second;
|
|
FRPFullSizePhotoViewModel *viewModel = [[FRPFullSizePhotoViewModel alloc] initWithPhotoArray:self.viewModel.model initialPhotoIndex:indexPath.item];
|
|
|
|
FRPFullSizePhotoViewController *viewController = [[FRPFullSizePhotoViewController alloc] init];
|
|
viewController.viewModel = viewModel;
|
|
viewController.delegate = (id<FRPFullSizePhotoViewControllerDelegate>)self;
|
|
[self.navigationController pushViewController:viewController animated:YES];
|
|
}];
|
|
|
|
self.navigationItem.rightBarButtonItem.rac_command = [[RACCommand alloc] initWithSignalBlock:^RACSignal *(id input) {
|
|
return [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
|
|
@strongify(self);
|
|
FRPLoginViewController *viewController = [[FRPLoginViewController alloc] initWithNibName:@"FRPLoginViewController" bundle:nil];
|
|
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
|
|
|
|
[self presentViewController:navigationController animated:YES completion:^{
|
|
[subscriber sendCompleted];
|
|
}];
|
|
|
|
return nil;
|
|
}];
|
|
}];
|
|
|
|
// Need to "reset" the cached values of respondsToSelector: of UIKit
|
|
self.collectionView.delegate = self;
|
|
}
|
|
|
|
#pragma mark - UICollectionViewDataSource Methods
|
|
|
|
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
|
|
return self.viewModel.model.count;
|
|
}
|
|
|
|
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
|
|
FRPCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CellIdentifier forIndexPath:indexPath];
|
|
|
|
[cell setPhotoModel:self.viewModel.model[indexPath.row]];
|
|
|
|
return cell;
|
|
}
|
|
|
|
|
|
@end
|