Skip to content

Commit

Permalink
FIRST
Browse files Browse the repository at this point in the history
  • Loading branch information
enriquez committed Feb 14, 2013
0 parents commit 6f28aff
Show file tree
Hide file tree
Showing 27 changed files with 1,635 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
@@ -0,0 +1,8 @@
*.mode1
*.mode1v3
*.mode2v3
*.perspective
*.perspectivev3
*.pbxuser
*.xcodeproj/project.xcworkspace/
*.xcodeproj/xcuserdata/
392 changes: 392 additions & 0 deletions CheckMateShopper.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions CheckMateShopper/CMAppDelegate.h
@@ -0,0 +1,22 @@
//
// CMAppDelegate.h
// CheckMateShopper
//
// Created by Michael Enriquez on 2/13/13.
// Copyright (c) 2013 Mike Enriquez. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface CMAppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext;
@property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel;
@property (readonly, strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator;

- (void)saveContext;
- (NSURL *)applicationDocumentsDirectory;

@end
145 changes: 145 additions & 0 deletions CheckMateShopper/CMAppDelegate.m
@@ -0,0 +1,145 @@
//
// CMAppDelegate.m
// CheckMateShopper
//
// Created by Michael Enriquez on 2/13/13.
// Copyright (c) 2013 Mike Enriquez. All rights reserved.
//

#import "CMAppDelegate.h"

@implementation CMAppDelegate

@synthesize managedObjectContext = _managedObjectContext;
@synthesize managedObjectModel = _managedObjectModel;
@synthesize persistentStoreCoordinator = _persistentStoreCoordinator;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application
{
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

- (void)applicationWillTerminate:(UIApplication *)application
{
// Saves changes in the application's managed object context before the application terminates.
[self saveContext];
}

- (void)saveContext
{
NSError *error = nil;
NSManagedObjectContext *managedObjectContext = self.managedObjectContext;
if (managedObjectContext != nil) {
if ([managedObjectContext hasChanges] && ![managedObjectContext save:&error]) {
// Replace this implementation with code to handle the error appropriately.
// abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}
}
}

#pragma mark - Core Data stack

// Returns the managed object context for the application.
// If the context doesn't already exist, it is created and bound to the persistent store coordinator for the application.
- (NSManagedObjectContext *)managedObjectContext
{
if (_managedObjectContext != nil) {
return _managedObjectContext;
}

NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator];
if (coordinator != nil) {
_managedObjectContext = [[NSManagedObjectContext alloc] init];
[_managedObjectContext setPersistentStoreCoordinator:coordinator];
}
return _managedObjectContext;
}

// Returns the managed object model for the application.
// If the model doesn't already exist, it is created from the application's model.
- (NSManagedObjectModel *)managedObjectModel
{
if (_managedObjectModel != nil) {
return _managedObjectModel;
}
NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"CheckMateShopper" withExtension:@"momd"];
_managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];
return _managedObjectModel;
}

// Returns the persistent store coordinator for the application.
// If the coordinator doesn't already exist, it is created and the application's store added to it.
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator
{
if (_persistentStoreCoordinator != nil) {
return _persistentStoreCoordinator;
}

NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"CheckMateShopper.sqlite"];

NSError *error = nil;
_persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:nil error:&error]) {
/*
Replace this implementation with code to handle the error appropriately.
abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
Typical reasons for an error here include:
* The persistent store is not accessible;
* The schema for the persistent store is incompatible with current managed object model.
Check the error message to determine what the actual problem was.
If the persistent store is not accessible, there is typically something wrong with the file path. Often, a file URL is pointing into the application's resources directory instead of a writeable directory.
If you encounter schema incompatibility errors during development, you can reduce their frequency by:
* Simply deleting the existing store:
[[NSFileManager defaultManager] removeItemAtURL:storeURL error:nil]
* Performing automatic lightweight migration by passing the following dictionary as the options parameter:
@{NSMigratePersistentStoresAutomaticallyOption:@YES, NSInferMappingModelAutomaticallyOption:@YES}
Lightweight migration will only work for a limited set of schema changes; consult "Core Data Model Versioning and Data Migration Programming Guide" for details.
*/
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}

return _persistentStoreCoordinator;
}

#pragma mark - Application's Documents directory

// Returns the URL to the application's Documents directory.
- (NSURL *)applicationDocumentsDirectory
{
return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
}

@end
47 changes: 47 additions & 0 deletions CheckMateShopper/CheckMateShopper-Info.plist
@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.mikeenriquez.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIMainStoryboardFile</key>
<string>Storyboard</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
19 changes: 19 additions & 0 deletions CheckMateShopper/CheckMateShopper-Prefix.pch
@@ -0,0 +1,19 @@
//
// Prefix header for all source files of the 'CheckMateShopper' target in the 'CheckMateShopper' project
//

#import <Availability.h>

#ifndef __IPHONE_3_0
#warning "This project uses features only available in iOS SDK 3.0 and later."
#endif

#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#endif

#import "CMCategory.h"
#import "CMItem.h"
#import "CMShopperHTTPClient.h"
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>_XCCurrentVersionName</key>
<string>CheckMateShopper.xcdatamodel</string>
</dict>
</plist>
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<model name="" userDefinedModelVersionIdentifier="" type="com.apple.IDECoreDataModeler.DataModel" documentVersion="1.0" lastSavedToolsVersion="2057" systemVersion="12C60" minimumToolsVersion="Automatic" macOSVersion="Automatic" iOSVersion="Automatic">
<entity name="CMCategory" representedClassName="CMCategory" syncable="YES">
<attribute name="name" optional="YES" attributeType="String" syncable="YES"/>
<relationship name="items" optional="YES" toMany="YES" deletionRule="Nullify" ordered="YES" destinationEntity="CMItem" inverseName="category" inverseEntity="CMItem" syncable="YES"/>
</entity>
<entity name="CMItem" representedClassName="CMItem" syncable="YES">
<attribute name="itemId" optional="YES" attributeType="String" syncable="YES"/>
<attribute name="name" optional="YES" attributeType="String" syncable="YES"/>
<relationship name="category" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="CMCategory" inverseName="items" inverseEntity="CMCategory" syncable="YES"/>
</entity>
<elements>
<element name="CMItem" positionX="160" positionY="192" width="128" height="90"/>
<element name="CMCategory" positionX="160" positionY="192" width="128" height="75"/>
</elements>
</model>
19 changes: 19 additions & 0 deletions CheckMateShopper/Controllers/CMEditItemViewController.h
@@ -0,0 +1,19 @@
//
// CMEditItemViewController.h
// CheckMateShopper
//
// Created by Michael Enriquez on 2/13/13.
// Copyright (c) 2013 Mike Enriquez. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface CMEditItemViewController : UIViewController
- (IBAction)save:(id)sender;
- (IBAction)cancel:(id)sender;
- (IBAction)deleteItem:(id)sender;
@property (weak, nonatomic) IBOutlet UITextField *nameTextField;
@property (weak, nonatomic) IBOutlet UITextField *categoryTextField;
@property (strong, nonatomic) NSManagedObjectContext *context;
@property (strong, nonatomic) CMItem *item;
@end
69 changes: 69 additions & 0 deletions CheckMateShopper/Controllers/CMEditItemViewController.m
@@ -0,0 +1,69 @@
//
// CMEditItemViewController.m
// CheckMateShopper
//
// Created by Michael Enriquez on 2/13/13.
// Copyright (c) 2013 Mike Enriquez. All rights reserved.
//

#import "CMEditItemViewController.h"

@interface CMEditItemViewController ()

@end

@implementation CMEditItemViewController

#pragma mark UIVIewController

- (void)viewDidLoad
{
[super viewDidLoad];
self.nameTextField.text = self.item.name;
self.categoryTextField.text = ((CMCategory *)self.item.category).name;
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
_context = nil;
_item = nil;
}

#pragma mark IBActions

- (IBAction)save:(id)sender {
NSString *itemName = self.nameTextField.text;
NSString *categoryName = self.categoryTextField.text;

if (itemName.length > 0 && categoryName.length > 0) {
CMShopperHTTPClient *httpClient = [CMShopperHTTPClient sharedInstance];
[httpClient updateItemWithId:self.item.itemId name:itemName category:categoryName onComplete:^(NSDictionary *item, NSError *error) {
if (error) {
NSLog(@"TODO: alert");
} else {
[self.context deleteObject:self.item];
[self dismissViewControllerAnimated:YES completion:nil];
}
}];
} else {
NSLog(@"TODO: alert");
}
}

- (IBAction)cancel:(id)sender {
[self dismissViewControllerAnimated:YES completion:nil];
}

- (IBAction)deleteItem:(id)sender {
CMShopperHTTPClient *httpClient = [CMShopperHTTPClient sharedInstance];
[httpClient deleteItemWithId:self.item.itemId onComplete:^(NSError *error) {
if (error) {
NSLog(@"TODO: alert");
} else {
[self.context deleteObject:self.item];
[self dismissViewControllerAnimated:YES completion:nil];
}
}];
}
@end
14 changes: 14 additions & 0 deletions CheckMateShopper/Controllers/CMItemListViewController.h
@@ -0,0 +1,14 @@
//
// CMItemListViewController.h
// CheckMateShopper
//
// Created by Michael Enriquez on 2/13/13.
// Copyright (c) 2013 Mike Enriquez. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface CMItemListViewController : UITableViewController <NSFetchedResultsControllerDelegate, UITableViewDataSource, UITableViewDelegate>
@property (strong, nonatomic) IBOutlet UITableView *table;
@property (strong, nonatomic) NSManagedObjectContext *context;
@end

0 comments on commit 6f28aff

Please sign in to comment.