Files
Yep/Yep/ViewControllers/EditProfile/EditProfileViewController.swift
T

241 lines
9.2 KiB
Swift

//
// EditProfileViewController.swift
// Yep
//
// Created by NIX on 15/4/24.
// Copyright (c) 2015年 Catch Inc. All rights reserved.
//
import UIKit
import Realm
let YepUpdatedProfileAvatarNotification = "YepUpdatedProfileAvatarNotification"
class EditProfileViewController: UIViewController {
@IBOutlet weak var avatarImageView: UIImageView!
@IBOutlet weak var avatarImageViewWidthConstraint: NSLayoutConstraint!
@IBOutlet weak var mobileLabel: UILabel!
@IBOutlet weak var editProfileTableView: UITableView!
let editProfileLessInfoCellIdentifier = "EditProfileLessInfoCell"
let editProfileMoreInfoCellIdentifier = "EditProfileMoreInfoCell"
let editProfileColoredTitleCellIdentifier = "EditProfileColoredTitleCell"
let intro = "I'm good at iOS Development and Singing. Come here, let me teach you." // TODO: User Intro
let introAttributes = [NSFontAttributeName: YepConfig.EditProfile.introFont]
override func viewDidLoad() {
super.viewDidLoad()
title = NSLocalizedString("Edit Profile", comment: "")
let avatarSize = YepConfig.editProfileAvatarSize()
avatarImageViewWidthConstraint.constant = avatarSize
updateAvatar()
editProfileTableView.registerNib(UINib(nibName: editProfileLessInfoCellIdentifier, bundle: nil), forCellReuseIdentifier: editProfileLessInfoCellIdentifier)
editProfileTableView.registerNib(UINib(nibName: editProfileMoreInfoCellIdentifier, bundle: nil), forCellReuseIdentifier: editProfileMoreInfoCellIdentifier)
editProfileTableView.registerNib(UINib(nibName: editProfileColoredTitleCellIdentifier, bundle: nil), forCellReuseIdentifier: editProfileColoredTitleCellIdentifier)
}
func updateAvatar() {
if let avatarURLString = YepUserDefaults.avatarURLString() {
let avatarSize = YepConfig.editProfileAvatarSize()
self.avatarImageView.alpha = 0
AvatarCache.sharedInstance.roundAvatarWithAvatarURLString(avatarURLString, withRadius: avatarSize * 0.5) { image in
dispatch_async(dispatch_get_main_queue()) {
self.avatarImageView.image = image
UIView.animateWithDuration(0.2, delay: 0.0, options: .CurveEaseOut, animations: { () -> Void in
self.avatarImageView.alpha = 1
}, completion: { (finished) -> Void in
})
}
}
}
}
@IBAction func changeAvatar(sender: UITapGestureRecognizer) {
let alertController = UIAlertController(title: nil, message: nil, preferredStyle: .ActionSheet)
let choosePhotoAction: UIAlertAction = UIAlertAction(title: NSLocalizedString("Choose Photo", comment: ""), style: .Default) { action -> Void in
if UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.SavedPhotosAlbum) {
let imagePicker = UIImagePickerController()
imagePicker.delegate = self
imagePicker.sourceType = UIImagePickerControllerSourceType.SavedPhotosAlbum
imagePicker.allowsEditing = false
self.presentViewController(imagePicker, animated: true, completion: nil)
}
}
alertController.addAction(choosePhotoAction)
let takePhotoAction: UIAlertAction = UIAlertAction(title: NSLocalizedString("Take Photo", comment: ""), style: .Default) { action -> Void in
if UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.Camera){
let imagePicker = UIImagePickerController()
imagePicker.delegate = self
imagePicker.sourceType = UIImagePickerControllerSourceType.Camera
imagePicker.allowsEditing = false
self.presentViewController(imagePicker, animated: true, completion: nil)
}
}
alertController.addAction(takePhotoAction)
let cancelAction: UIAlertAction = UIAlertAction(title: NSLocalizedString("Cancel", comment: ""), style: .Cancel) { action -> Void in
self.dismissViewControllerAnimated(true, completion: nil)
}
alertController.addAction(cancelAction)
self.presentViewController(alertController, animated: true, completion: nil)
}
}
extension EditProfileViewController: UITableViewDataSource, UITableViewDelegate {
enum Section: Int {
case Info
case LogOut
}
enum InfoRow: Int {
case Name = 0
case Intro
}
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 2
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
switch section {
case Section.Info.rawValue:
return 2
case Section.LogOut.rawValue:
return 1
default:
return 0
}
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
switch indexPath.section {
case Section.Info.rawValue:
switch indexPath.row {
case InfoRow.Name.rawValue:
let cell = tableView.dequeueReusableCellWithIdentifier(editProfileLessInfoCellIdentifier) as! EditProfileLessInfoCell
cell.annotationLabel.text = NSLocalizedString("Nickname", comment: "")
cell.infoLabel.text = YepUserDefaults.nickname()
return cell
case InfoRow.Intro.rawValue:
let cell = tableView.dequeueReusableCellWithIdentifier(editProfileMoreInfoCellIdentifier) as! EditProfileMoreInfoCell
cell.annotationLabel.text = NSLocalizedString("Introduction", comment: "")
cell.infoLabel.text = intro
return cell
default:
return UITableViewCell()
}
case Section.LogOut.rawValue:
let cell = tableView.dequeueReusableCellWithIdentifier(editProfileColoredTitleCellIdentifier) as! EditProfileColoredTitleCell
cell.coloredTitleLabel.text = NSLocalizedString("Log out", comment: "")
cell.coloredTitleColor = UIColor.redColor()
return cell
default:
return UITableViewCell()
}
}
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
switch indexPath.section {
case Section.Info.rawValue:
switch indexPath.row {
case InfoRow.Name.rawValue:
return 60
case InfoRow.Intro.rawValue:
let tableViewWidth = CGRectGetWidth(editProfileTableView.bounds)
let introLabelMaxWidth = tableViewWidth - YepConfig.EditProfile.introInset
let rect = intro.boundingRectWithSize(CGSize(width: introLabelMaxWidth, height: CGFloat(FLT_MAX)), options: .UsesLineFragmentOrigin | .UsesFontLeading, attributes: introAttributes, context: nil)
let height = 20 + 22 + 20 + ceil(rect.height) + 20
return height
default:
return 0
}
case Section.LogOut.rawValue:
return 80
default:
return 0
}
}
}
// MARK: UIImagePicker
extension EditProfileViewController: UIImagePickerControllerDelegate, UINavigationControllerDelegate {
func imagePickerController(picker: UIImagePickerController, didFinishPickingImage image: UIImage!, editingInfo: [NSObject : AnyObject]!) {
s3PublicUploadParams(failureHandler: nil) { s3UploadParams in
let image = image.largestCenteredSquareImage().resizeToTargetSize(YepConfig.avatarMaxSize())
var imageData = UIImageJPEGRepresentation(image, YepConfig.avatarCompressionQuality())
// TODO: 等待的菊花
uploadFileToS3(inFilePath: nil, orFileData: imageData, mimeType: "image/jpeg", s3UploadParams: s3UploadParams, completion: { (result, error) in
println("upload avatar to s3 result: \(result), error: \(error)")
if (result) {
let newAvatarURLString = "\(s3UploadParams.url)\(s3UploadParams.key)"
updateMyselfWithInfo(["avatar_url": newAvatarURLString], failureHandler: nil) { success in
dispatch_async(dispatch_get_main_queue()) {
YepUserDefaults.setAvatarURLString(newAvatarURLString)
self.updateAvatar()
if
let myUserID = YepUserDefaults.userID(),
let me = userWithUserID(myUserID) {
let realm = RLMRealm.defaultRealm()
realm.beginWriteTransaction()
me.avatarURLString = newAvatarURLString
realm.commitWriteTransaction()
}
NSNotificationCenter.defaultCenter().postNotificationName(YepUpdatedProfileAvatarNotification, object: nil)
}
}
}
})
}
dismissViewControllerAnimated(true, completion: nil)
}
}