mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 11:47:40 +00:00
144 lines
4.2 KiB
Swift
144 lines
4.2 KiB
Swift
//
|
|
// MenuPanelViewController.swift
|
|
// Vendoo
|
|
//
|
|
// Created by Okechi Onyeje on 6/12/16.
|
|
// Copyright © 2016 Okechi Onyeje. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import FirebaseAuth
|
|
|
|
class MenuPanelViewController: UIViewController{
|
|
|
|
//Outlets
|
|
@IBOutlet weak var table: UITableView!
|
|
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
self.table.dataSource = self
|
|
self.table.delegate = self
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
override func didReceiveMemoryWarning() {
|
|
super.didReceiveMemoryWarning()
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
|
|
/*
|
|
// MARK: - Navigation
|
|
|
|
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
|
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
|
|
// Get the new view controller using segue.destinationViewController.
|
|
// Pass the selected object to the new view controller.
|
|
}
|
|
*/
|
|
|
|
}
|
|
|
|
extension MenuPanelViewController: UITableViewDelegate
|
|
{
|
|
|
|
/*
|
|
// Override to support conditional editing of the table view.
|
|
override func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool {
|
|
// Return false if you do not want the specified item to be editable.
|
|
return true
|
|
}
|
|
*/
|
|
|
|
/*
|
|
// Override to support editing the table view.
|
|
override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
|
|
if editingStyle == .Delete {
|
|
// Delete the row from the data source
|
|
tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
|
|
} else if editingStyle == .Insert {
|
|
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
|
|
}
|
|
}
|
|
*/
|
|
|
|
/*
|
|
// Override to support rearranging the table view.
|
|
override func tableView(tableView: UITableView, moveRowAtIndexPath fromIndexPath: NSIndexPath, toIndexPath: NSIndexPath) {
|
|
|
|
}
|
|
*/
|
|
|
|
/*
|
|
// Override to support conditional rearranging of the table view.
|
|
override func tableView(tableView: UITableView, canMoveRowAtIndexPath indexPath: NSIndexPath) -> Bool {
|
|
// Return false if you do not want the item to be re-orderable.
|
|
return true
|
|
}
|
|
*/
|
|
|
|
}
|
|
|
|
extension MenuPanelViewController: UITableViewDataSource
|
|
{
|
|
|
|
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
|
|
// #warning Incomplete implementation, return the number of sections
|
|
return 1
|
|
}
|
|
|
|
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
|
|
// #warning Incomplete implementation, return the number of rows
|
|
return 6
|
|
}
|
|
|
|
|
|
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
|
|
let cell: UITableViewCell
|
|
switch(indexPath.row){
|
|
case 0:
|
|
cell = self.table.dequeueReusableCellWithIdentifier("User_Cell")!
|
|
break
|
|
case 1:
|
|
cell = self.table.dequeueReusableCellWithIdentifier("Notifications_Cell")!
|
|
break
|
|
case 2:
|
|
cell = self.table.dequeueReusableCellWithIdentifier("Settings_Cell")!
|
|
break
|
|
case 3:
|
|
cell = self.table.dequeueReusableCellWithIdentifier("Sales_Cell")!
|
|
break
|
|
case 4:
|
|
cell = self.table.dequeueReusableCellWithIdentifier("FAQ_Cell")!
|
|
break
|
|
default:
|
|
cell = self.table.dequeueReusableCellWithIdentifier("Getting_Started_Cell")!
|
|
break
|
|
}
|
|
|
|
return cell
|
|
}
|
|
|
|
}
|
|
|
|
extension MenuPanelViewController{
|
|
|
|
@IBAction func logoutUser(sender: AnyObject) {
|
|
|
|
do{
|
|
try FIRAuth.auth()?.signOut()
|
|
NSUserDefaults.standardUserDefaults().setBool(false, forKey: "signedIn")
|
|
|
|
let vc = self.storyboard?.instantiateViewControllerWithIdentifier("SignInViewController")
|
|
self.presentViewController(vc!, animated: true, completion: nil)
|
|
}
|
|
catch{
|
|
(error)
|
|
print(error)
|
|
}
|
|
}
|
|
}
|
|
|