blob: f0cd3e55e11204fb9ac7e0d60d189e67ad0f9984 [file]
/*
Copyright 2018-present the Material Components for iOS authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import Foundation
import MaterialComponents.MaterialBottomSheet
import MaterialComponents.MaterialButtons
import MaterialComponents.MaterialButtons_ButtonThemer
class BottomSheetTableViewExample: UIViewController {
var colorScheme = MDCSemanticColorScheme()
var typographyScheme = MDCTypographyScheme()
init() {
super.init(nibName: nil, bundle: nil)
self.title = "Table View Menu"
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = colorScheme.backgroundColor
let button = MDCButton()
button.setTitle("Show bottom sheet", for: .normal)
button.addTarget(self,
action: #selector(BottomSheetTableViewExample.didTapFloatingButton),
for: .touchUpInside)
let buttonScheme = MDCButtonScheme()
buttonScheme.colorScheme = colorScheme
buttonScheme.typographyScheme = typographyScheme
MDCContainedButtonThemer.applyScheme(buttonScheme, to: button)
button.sizeToFit()
button.center = CGPoint(x: view.bounds.midX, y: view.bounds.midY)
button.autoresizingMask = [
.flexibleLeftMargin,
.flexibleTopMargin,
.flexibleRightMargin,
.flexibleBottomMargin
]
view.addSubview(button)
}
@objc func didTapFloatingButton(_ sender : MDCFloatingButton) {
let menu = BottomSheetTableViewMenu(style: .plain)
let bottomSheet = MDCBottomSheetController(contentViewController: menu)
bottomSheet.trackingScrollView = menu.tableView
present(bottomSheet, animated: true)
}
}
private class BottomSheetTableViewMenu: UITableViewController {
let tableData = [
"Action 1",
"Action 2",
"Action 3"
]
let cellIdentifier = "MenuCell"
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.register(UITableViewCell.self, forCellReuseIdentifier: cellIdentifier)
self.tableView.separatorStyle = .none
}
override func tableView(_ tableView: UITableView,
cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath)
let cellData = tableData[indexPath.item]
cell.textLabel?.text = cellData
return cell
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return tableData.count
}
override func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.deselectRow(at: indexPath, animated: true)
self.dismiss(animated: true, completion: nil)
}
}
// MARK: Catalog by convention
extension BottomSheetTableViewExample {
@objc class func catalogBreadcrumbs() -> [String] {
return ["Bottom Sheet", "Table View Menu"]
}
@objc class func catalogIsPrimaryDemo() -> Bool {
return false
}
@objc class func catalogIsPresentable() -> Bool {
return true
}
}