| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358 |
- // Copyright (C) 2016 Inigo Valentin
- //
- // This file is part of the Gasteizko Margolariak IOS app.
- //
- // The Gasteizko Margolariak IOS app is free software: you can
- // redistribute it and/or modify it under the terms of the
- // GNU General Public License as published by the Free Software
- // Foundation, either version 3 of the License, or (at your
- // option) any later version.
- //
- // The Gasteizko Margolariak IOS app is distributed in the
- // hope that it will be useful, but WITHOUT ANY WARRANTY;
- // without even the implied warranty of MERCHANTABILITY or
- // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
- // Public License for more details.
- //
- // You should have received a copy of the GNU General Public
- // License along with the Gasteizko Margolariak IOS app.
- // If not, see <http://www.gnu.org/licenses/>.
- import UIKit
- import CoreData
- /**
- The view controller of the app.
- */
- class ViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate, UIGestureRecognizerDelegate {
-
- var delegate: AppDelegate?
-
- //The menu collection.
- var sectionCollection: UICollectionView!
-
- // Need to save the sync segue.
- var syncSegue: UIStoryboardSegue?
- //Each of the sections of the app.
- @IBOutlet var containerViewGallery: GalleryView!
- @IBOutlet var containerViewBlog: BlogView!
- @IBOutlet var containerViewActivities: ActivitiesView!
- @IBOutlet var containerViewLablanca: LablancaView!
- @IBOutlet var containerViewLocation: UIView!
- @IBOutlet var containerViewHome: HomeView!
-
- var passId: Int = -1
-
- /**
- Controller initializer.
- */
- required init?(coder aDecoder: NSCoder) {
- NSLog(":CONTROLLER:DEBUG: Init!")
- super.init(coder: aDecoder)
- }
-
- /**
- Retrieves the application context.
- :return: The application context.
- */
- func getContext () -> NSManagedObjectContext {
- //let appDelegate = UIApplication.shared.delegate as! AppDelegate
- //return appDelegate.persistentContainer.viewContext
- return NSManagedObjectContext(concurrencyType: .mainQueueConcurrencyType)
- }
-
- /**
- Shows a post by loading the controller.
- :param: id The post id.
- */
- func showPost(id: Int){
- NSLog(":CONTROLLER:DEBUG: Showing Post \(id)")
- self.passId = id
- performSegue(withIdentifier: "SeguePost", sender: nil)
- }
-
- /**
- Shows a post by loading the controller.
- :param: id The album id.
- */
- func showAlbum(id: Int){
- NSLog(":CONTROLLER:DEBUG: Showing album \(id)")
- self.passId = id
- performSegue(withIdentifier: "SegueAlbum", sender: nil)
- }
-
- func showSchedule(margolari: Bool){
- NSLog(":CONTROLLER:DEBUG: Showing schedule. Margolari: \(margolari)")
- if margolari == true{
- self.passId = 1
- }
- else{
- self.passId = 0
- }
- // TODO: Uncomment when ready
- performSegue(withIdentifier: "SegueSchedule", sender: nil)
- }
-
- /**
- Handles the initial sync process.
- It can start it, showing the sync screen, or finish it, hidding the screen.
- :param: showScreen True to start the sync, false to end it.
- */
- func initialSync(showScreen: Bool){
- if showScreen == true{
- NSLog(":CONTROLLER:DEBUG: Showing initial sync screen.")
- performSegue(withIdentifier: "SegueSync", sender: nil)
- Sync(synchronous: true)
- }
- else{
- NSLog(":CONTROLLER:DEBUG: Re-populating views and hidding initial sync screen.")
- NSLog(":CONTROLLER:DEBUG: Re-populating disabled: Throws error.")
- //self.populate()
- syncSegue?.destination.dismiss(animated: true, completion: nil)
- }
- }
-
- /**
- Run before performing a segue.
- Assigns id if neccessary.
- :param: segue The segue to perform.
- :sender: The calling view.
- */
- override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
- NSLog(":CONTROLLER:DEBUG: preparing for segue '\(segue.identifier)' with id \(self.passId)")
- if segue.identifier == "SeguePost"{
- (segue.destination as! PostViewController).id = passId
- }
- if segue.identifier == "SegueAlbum"{
- (segue.destination as! AlbumViewController).id = passId
- }
- if segue.identifier == "SegueSchedule"{
- if passId == 1{
- (segue.destination as! ScheduleViewController).margolari = true
- }
- else{
- (segue.destination as! ScheduleViewController).margolari = false
- }
- }
- if segue.identifier == "SegueSync"{
- self.syncSegue = segue
- }
- }
-
- /**
- Run when the app loads.
- */
- override func viewDidLoad() {
-
- //Hide all sections, except for the first one
- self.containerViewLocation.alpha = 0
- self.containerViewLablanca.alpha = 0
- self.containerViewActivities.alpha = 0
- self.containerViewBlog.alpha = 0
- self.containerViewGallery.alpha = 0
-
- NSLog(":CONTROLLER:LOG: viewDidLoad()")
- NSLog(":CONTROLLER:DEBUG: Skyp sync")
- //Sync()
- //self.containerViewBlog.setController(controller: self as ViewController)
-
- self.delegate = UIApplication.shared.delegate as? AppDelegate
- self.delegate?.controller = self
-
- NSLog(":CONTROLLER:DEBUG: NOT Forcing a call to populate")
- //self.populate()
-
- super.viewDidLoad()
-
- }
- func populate(){
- if (self.containerViewHome != nil){
- //(self.containerViewHome as HomeView).populate2()
- //let ng = self.containerViewHome.dbgTxt
- //NSLog("AAAAA \(ng)")
- }
- else{
- NSLog("CONTROLLER:ERROR: containerViewHome couldn't be populated: It is nil.")
- }
- //self.containerLocation.populate()
- //self.containerLablanca.populate()
- //self.containerViewActivities.populate()
- //self.containerViewBlog.populate()
- //self.containerGallery.populate()
- }
-
- /**
- Executed when the view is actually shown.
- Performs the initial sync in the first run.
- It also generates a user id if none exists.
- :param: animated Wether the controller appearance must be animated or not.
- */
- override func viewDidAppear(_ animated: Bool) {
- super.viewDidAppear(animated)
- if UserDefaults.standard.object(forKey: "userId") == nil{
- let newUid = randomString(length: 16)
- let defaults = UserDefaults.standard
- defaults.set(newUid, forKey: "userId")
- initialSync(showScreen: true)
- }
-
- }
-
- /**
- Generates a random string to be used as a user identifier.
- :param: length The length of the generated string.
- :return: A random alphanumeric string with the indicated length.
- */
- func randomString(length: Int) -> String {
-
- let letters : NSString = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
- let len = UInt32(letters.length)
-
- var randomString = ""
-
- for _ in 0 ..< length {
- let rand = arc4random_uniform(len)
- var nextChar = letters.character(at: Int(rand))
- randomString += NSString(characters: &nextChar, length: 1) as String
- }
-
- return randomString
- }
- /**
- Dispose of any resources that can be recreated.
- */
- override func didReceiveMemoryWarning() {
- super.didReceiveMemoryWarning()
- }
-
-
- //Menu items.
- let reuseIdentifier = "cell"
- var selected = 0
- var items = ["Home", "Location", "La Blanca", "Actividades", "Blog", "Gallery"]
-
- // MARK: - UICollectionViewDataSource protocol
-
- //Tell the collection view how many cells to make
- func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
- return self.items.count
- }
-
- //Make a cell for each section
- func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
-
- //Get a reference to our storyboard cell
- let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath as IndexPath) as! MenuCollectionViewCell
-
- //Set text
- cell.label.text = self.items[indexPath.item]
-
- //Mark the first cell as selected...
- if indexPath.item == selected{
- cell.bar.backgroundColor = UIColor(red: 90/255, green: 180/255, blue: 255/255, alpha: 1)
- cell.label.font = UIFont.boldSystemFont(ofSize: cell.label.font.pointSize)
- }
-
- //... and the others as unselected
- else{
- cell.bar.backgroundColor = UIColor(red: 148/255, green: 209/255, blue: 255/255, alpha: 1)
- cell.label.font = UIFont.systemFont(ofSize: cell.label.font.pointSize)
- }
-
- return cell
- }
-
- // MARK: - UICollectionViewDelegate protocol
-
- func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
- sectionCollection = collectionView
- showComponent(selected: indexPath.item)
- }
-
- @IBAction func showComponent(selected: Int) {
- //Activate label
- var i = 0
- for cell in sectionCollection.visibleCells as! [MenuCollectionViewCell]{ //TODO: Not only visibles!
- if i == selected + 1{
- cell.bar.backgroundColor = UIColor(red: 90/255, green: 180/255, blue: 255/255, alpha: 1)
- cell.label.font = UIFont.boldSystemFont(ofSize: cell.label.font.pointSize)
- }
- else{
- cell.bar.backgroundColor = UIColor(red: 148/255, green: 209/255, blue: 255/255, alpha: 1)
- cell.label.font = UIFont.systemFont(ofSize: cell.label.font.pointSize)
-
- }
- i = i + 1
- }
-
- //Show the view
- if selected == 0 {
- UIView.animate(withDuration: 0.5, animations: {
- self.containerViewHome.alpha = 1
- self.containerViewLocation.alpha = 0
- self.containerViewLablanca.alpha = 0
- self.containerViewActivities.alpha = 0
- self.containerViewBlog.alpha = 0
- self.containerViewGallery.alpha = 0
- })
- }
- else if selected == 1 {
- UIView.animate(withDuration: 0.5, animations: {
- self.containerViewHome.alpha = 0
- self.containerViewLocation.alpha = 1
- self.containerViewLablanca.alpha = 0
- self.containerViewActivities.alpha = 0
- self.containerViewBlog.alpha = 0
- self.containerViewGallery.alpha = 0
- })
- }
- else if selected == 2 {
- UIView.animate(withDuration: 0.5, animations: {
- self.containerViewHome.alpha = 0
- self.containerViewLocation.alpha = 0
- self.containerViewLablanca.alpha = 1
- self.containerViewActivities.alpha = 0
- self.containerViewBlog.alpha = 0
- self.containerViewGallery.alpha = 0
- })
- }
- else if selected == 3 {
- UIView.animate(withDuration: 0.5, animations: {
- self.containerViewHome.alpha = 0
- self.containerViewLocation.alpha = 0
- self.containerViewLablanca.alpha = 0
- self.containerViewActivities.alpha = 1
- self.containerViewBlog.alpha = 0
- self.containerViewGallery.alpha = 0
- })
- }
- else if selected == 4 {
- UIView.animate(withDuration: 0.5, animations: {
- self.containerViewHome.alpha = 0
- self.containerViewLocation.alpha = 0
- self.containerViewLablanca.alpha = 0
- self.containerViewActivities.alpha = 0
- self.containerViewBlog.alpha = 1
- self.containerViewGallery.alpha = 0
- })
- }
- else if selected == 5 {
- UIView.animate(withDuration: 0.5, animations: {
- self.containerViewHome.alpha = 0
- self.containerViewLocation.alpha = 0
- self.containerViewLablanca.alpha = 0
- self.containerViewActivities.alpha = 0
- self.containerViewBlog.alpha = 0
- self.containerViewGallery.alpha = 1
- })
- }
-
- }
- }
|