UI: iOS: Show "on-demand is active" for tunnels with the active on-demand
Signed-off-by: Andrej Mihajlov <and@mullvad.net> Signed-off-by: Roopesh Chander <roop@roopc.net>
This commit is contained in:
parent
a115dd3bd9
commit
ac9f7b9f5e
|
@ -17,7 +17,7 @@
|
||||||
"tunnelsListSelectAllButtonTitle" = "Select All";
|
"tunnelsListSelectAllButtonTitle" = "Select All";
|
||||||
"tunnelsListDeleteButtonTitle" = "Delete";
|
"tunnelsListDeleteButtonTitle" = "Delete";
|
||||||
"tunnelsListSelectedTitle (%d)" = "%d selected";
|
"tunnelsListSelectedTitle (%d)" = "%d selected";
|
||||||
"tunnelListCaptionOnDemand" = "On Demand";
|
"tunnelsListOnDemandActiveCellSubTitle" = "On-Demand is enabled";
|
||||||
|
|
||||||
// Tunnels list menu
|
// Tunnels list menu
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,18 @@ class TunnelListCell: UITableViewCell {
|
||||||
return nameLabel
|
return nameLabel
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
let subTitleLabel: UILabel = {
|
||||||
|
let subTitleLabel = UILabel()
|
||||||
|
subTitleLabel.font = UIFont.preferredFont(forTextStyle: .subheadline)
|
||||||
|
if #available(iOS 13.0, *) {
|
||||||
|
subTitleLabel.textColor = .secondaryLabel
|
||||||
|
} else {
|
||||||
|
subTitleLabel.textColor = .systemGray
|
||||||
|
}
|
||||||
|
subTitleLabel.adjustsFontForContentSizeCategory = true
|
||||||
|
return subTitleLabel
|
||||||
|
}()
|
||||||
|
|
||||||
let busyIndicator: UIActivityIndicatorView = {
|
let busyIndicator: UIActivityIndicatorView = {
|
||||||
let busyIndicator: UIActivityIndicatorView
|
let busyIndicator: UIActivityIndicatorView
|
||||||
if #available(iOS 13.0, *) {
|
if #available(iOS 13.0, *) {
|
||||||
|
@ -53,12 +65,15 @@ class TunnelListCell: UITableViewCell {
|
||||||
private var isOnDemandEnabledObservationToken: NSKeyValueObservation?
|
private var isOnDemandEnabledObservationToken: NSKeyValueObservation?
|
||||||
private var hasOnDemandRulesObservationToken: NSKeyValueObservation?
|
private var hasOnDemandRulesObservationToken: NSKeyValueObservation?
|
||||||
|
|
||||||
|
private var subTitleLabelBottomConstraint: NSLayoutConstraint?
|
||||||
|
private var nameLabelBottomConstraint: NSLayoutConstraint?
|
||||||
|
|
||||||
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
|
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
|
||||||
super.init(style: style, reuseIdentifier: reuseIdentifier)
|
super.init(style: style, reuseIdentifier: reuseIdentifier)
|
||||||
|
|
||||||
accessoryType = .disclosureIndicator
|
accessoryType = .disclosureIndicator
|
||||||
|
|
||||||
for subview in [statusSwitch, busyIndicator, nameLabel] {
|
for subview in [statusSwitch, busyIndicator, nameLabel, subTitleLabel] {
|
||||||
subview.translatesAutoresizingMaskIntoConstraints = false
|
subview.translatesAutoresizingMaskIntoConstraints = false
|
||||||
contentView.addSubview(subview)
|
contentView.addSubview(subview)
|
||||||
}
|
}
|
||||||
|
@ -68,6 +83,11 @@ class TunnelListCell: UITableViewCell {
|
||||||
let nameLabelBottomConstraint =
|
let nameLabelBottomConstraint =
|
||||||
contentView.layoutMarginsGuide.bottomAnchor.constraint(equalToSystemSpacingBelow: nameLabel.bottomAnchor, multiplier: 1)
|
contentView.layoutMarginsGuide.bottomAnchor.constraint(equalToSystemSpacingBelow: nameLabel.bottomAnchor, multiplier: 1)
|
||||||
nameLabelBottomConstraint.priority = .defaultLow
|
nameLabelBottomConstraint.priority = .defaultLow
|
||||||
|
self.nameLabelBottomConstraint = nameLabelBottomConstraint
|
||||||
|
|
||||||
|
subTitleLabelBottomConstraint =
|
||||||
|
contentView.layoutMarginsGuide.bottomAnchor.constraint(equalToSystemSpacingBelow: subTitleLabel.bottomAnchor, multiplier: 1)
|
||||||
|
subTitleLabelBottomConstraint?.priority = .defaultLow
|
||||||
|
|
||||||
NSLayoutConstraint.activate([
|
NSLayoutConstraint.activate([
|
||||||
statusSwitch.centerYAnchor.constraint(equalTo: contentView.centerYAnchor),
|
statusSwitch.centerYAnchor.constraint(equalTo: contentView.centerYAnchor),
|
||||||
|
@ -75,8 +95,13 @@ class TunnelListCell: UITableViewCell {
|
||||||
statusSwitch.leadingAnchor.constraint(equalToSystemSpacingAfter: busyIndicator.trailingAnchor, multiplier: 1),
|
statusSwitch.leadingAnchor.constraint(equalToSystemSpacingAfter: busyIndicator.trailingAnchor, multiplier: 1),
|
||||||
|
|
||||||
nameLabel.topAnchor.constraint(equalToSystemSpacingBelow: contentView.layoutMarginsGuide.topAnchor, multiplier: 1),
|
nameLabel.topAnchor.constraint(equalToSystemSpacingBelow: contentView.layoutMarginsGuide.topAnchor, multiplier: 1),
|
||||||
nameLabelBottomConstraint,
|
|
||||||
nameLabel.leadingAnchor.constraint(equalToSystemSpacingAfter: contentView.layoutMarginsGuide.leadingAnchor, multiplier: 1),
|
nameLabel.leadingAnchor.constraint(equalToSystemSpacingAfter: contentView.layoutMarginsGuide.leadingAnchor, multiplier: 1),
|
||||||
|
nameLabel.trailingAnchor.constraint(lessThanOrEqualTo: statusSwitch.leadingAnchor),
|
||||||
|
nameLabelBottomConstraint,
|
||||||
|
|
||||||
|
subTitleLabel.topAnchor.constraint(equalToSystemSpacingBelow: nameLabel.bottomAnchor, multiplier: 0.25),
|
||||||
|
subTitleLabel.leadingAnchor.constraint(equalToSystemSpacingAfter: contentView.layoutMarginsGuide.leadingAnchor, multiplier: 1),
|
||||||
|
subTitleLabel.trailingAnchor.constraint(lessThanOrEqualTo: statusSwitch.leadingAnchor),
|
||||||
|
|
||||||
busyIndicator.centerYAnchor.constraint(equalTo: contentView.centerYAnchor),
|
busyIndicator.centerYAnchor.constraint(equalTo: contentView.centerYAnchor),
|
||||||
busyIndicator.leadingAnchor.constraint(equalToSystemSpacingAfter: nameLabel.trailingAnchor, multiplier: 1)
|
busyIndicator.leadingAnchor.constraint(equalToSystemSpacingAfter: nameLabel.trailingAnchor, multiplier: 1)
|
||||||
|
@ -103,6 +128,20 @@ class TunnelListCell: UITableViewCell {
|
||||||
onSwitchToggled?(statusSwitch.isOn)
|
onSwitchToggled?(statusSwitch.isOn)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private func setSubTitleText(_ string: String?) {
|
||||||
|
if let string = string {
|
||||||
|
subTitleLabel.text = string
|
||||||
|
subTitleLabel.isHidden = false
|
||||||
|
nameLabelBottomConstraint?.isActive = false
|
||||||
|
subTitleLabelBottomConstraint?.isActive = true
|
||||||
|
} else {
|
||||||
|
subTitleLabel.text = nil
|
||||||
|
subTitleLabel.isHidden = true
|
||||||
|
subTitleLabelBottomConstraint?.isActive = false
|
||||||
|
nameLabelBottomConstraint?.isActive = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private func update(from tunnel: TunnelContainer?, animated: Bool) {
|
private func update(from tunnel: TunnelContainer?, animated: Bool) {
|
||||||
guard let tunnel = tunnel else {
|
guard let tunnel = tunnel else {
|
||||||
reset(animated: animated)
|
reset(animated: animated)
|
||||||
|
@ -111,8 +150,8 @@ class TunnelListCell: UITableViewCell {
|
||||||
let status = tunnel.status
|
let status = tunnel.status
|
||||||
let isOnDemandEngaged = tunnel.isActivateOnDemandEnabled
|
let isOnDemandEngaged = tunnel.isActivateOnDemandEnabled
|
||||||
|
|
||||||
let isSwitchOn = (status == .activating || status == .active || isOnDemandEngaged)
|
let shouldSwitchBeOn = ((status != .deactivating && status != .inactive) || isOnDemandEngaged)
|
||||||
statusSwitch.setOn(isSwitchOn, animated: true)
|
statusSwitch.setOn(shouldSwitchBeOn, animated: true)
|
||||||
|
|
||||||
if isOnDemandEngaged && !(status == .activating || status == .active) {
|
if isOnDemandEngaged && !(status == .activating || status == .active) {
|
||||||
statusSwitch.onTintColor = UIColor.systemYellow
|
statusSwitch.onTintColor = UIColor.systemYellow
|
||||||
|
@ -120,6 +159,14 @@ class TunnelListCell: UITableViewCell {
|
||||||
statusSwitch.onTintColor = UIColor.systemGreen
|
statusSwitch.onTintColor = UIColor.systemGreen
|
||||||
}
|
}
|
||||||
|
|
||||||
|
statusSwitch.isUserInteractionEnabled = (status == .inactive || status == .active)
|
||||||
|
|
||||||
|
if tunnel.isActivateOnDemandEnabled {
|
||||||
|
setSubTitleText(tr("tunnelsListOnDemandActiveCellSubTitle"))
|
||||||
|
} else {
|
||||||
|
setSubTitleText(nil)
|
||||||
|
}
|
||||||
|
|
||||||
if tunnel.hasOnDemandRules {
|
if tunnel.hasOnDemandRules {
|
||||||
statusSwitch.isUserInteractionEnabled = true
|
statusSwitch.isUserInteractionEnabled = true
|
||||||
} else {
|
} else {
|
||||||
|
@ -134,6 +181,8 @@ class TunnelListCell: UITableViewCell {
|
||||||
}
|
}
|
||||||
|
|
||||||
private func reset(animated: Bool) {
|
private func reset(animated: Bool) {
|
||||||
|
setSubTitleText(nil)
|
||||||
|
statusSwitch.thumbTintColor = nil
|
||||||
statusSwitch.setOn(false, animated: animated)
|
statusSwitch.setOn(false, animated: animated)
|
||||||
statusSwitch.isUserInteractionEnabled = false
|
statusSwitch.isUserInteractionEnabled = false
|
||||||
busyIndicator.stopAnimating()
|
busyIndicator.stopAnimating()
|
||||||
|
|
Loading…
Reference in New Issue