element-ios/Riot/Modules/Room/ParticipantsInviteModal/OptionList/OptionListViewCell.swift
Gil Eluard e18c7e0744 SP1.2: Invite to Space in room landing element-ios#5225
- Check user permissions to invite people
2022-01-26 10:17:42 +01:00

85 lines
2.7 KiB
Swift

//
// Copyright 2021 New Vector Ltd
//
// 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 Reusable
class OptionListViewCell: UITableViewCell, NibReusable {
// MARK: - Properties
@IBOutlet private weak var iconView: UIImageView!
@IBOutlet private weak var titleLabel: UILabel!
@IBOutlet private weak var detailLabel: UILabel!
@IBOutlet private weak var selectionView: UIView!
@IBOutlet private weak var chevronView: UIImageView!
var isEnabled: Bool = true {
didSet {
self.contentView.alpha = isEnabled ? 1 : 0.3
}
}
// MARK: - Private
private var theme: Theme?
// MARK: - Life cycle
override func awakeFromNib() {
super.awakeFromNib()
self.selectionStyle = .none
self.selectionView.layer.cornerRadius = 8.0
self.selectionView.layer.masksToBounds = true
}
override func setSelected(_ selected: Bool, animated: Bool) {
if isEnabled {
super.setSelected(selected, animated: animated)
UIView.animate(withDuration: animated ? 0.2 : 0.0) {
self.selectionView.transform = selected ? .init(scaleX: 0.95, y: 0.95) : .identity
}
}
}
// MARK: - Public
func update(with viewData: OptionListItemViewData) {
self.iconView.image = viewData.image?.withRenderingMode(.alwaysTemplate)
self.titleLabel.text = viewData.title
self.detailLabel.text = viewData.detail
self.chevronView.image = viewData.accessoryImage?.withRenderingMode(.alwaysTemplate)
self.isEnabled = viewData.enabled
}
func update(theme: Theme) {
self.theme = theme
self.backgroundColor = theme.colors.background
self.iconView.tintColor = theme.colors.secondaryContent
self.titleLabel.textColor = theme.colors.primaryContent
self.titleLabel.font = theme.fonts.bodySB
self.detailLabel.textColor = theme.colors.secondaryContent
self.detailLabel.font = theme.fonts.footnote
self.selectionView.backgroundColor = theme.colors.quinaryContent
self.chevronView.tintColor = theme.colors.quarterlyContent
}
}