2020-05-08 17:49:14 +10:00
//
// O n b o a r d i n g S t e p 2 b V i e w C o n t r o l l e r . s w i f t
// C o v i d S a f e
//
// C o p y r i g h t © 2 0 2 0 A u s t r a l i a n G o v e r n m e n t . A l l r i g h t s r e s e r v e d .
//
import UIKit
2020-05-27 16:22:34 +10:00
import SafariServices
2020-05-08 17:49:14 +10:00
class OnboardingStep2bViewController : UIViewController {
2020-06-05 10:26:40 +10:00
@IBOutlet weak var pointOneLabel : UILabel !
@IBOutlet weak var pointTwoLabel : UILabel !
@IBOutlet weak var pointThreeLabel : UILabel !
2020-11-09 16:49:53 -08:00
@IBOutlet weak var titleLabel : UILabel !
var reauthenticating = false
2020-06-05 10:26:40 +10:00
override func viewDidLoad ( ) {
super . viewDidLoad ( )
let paragraphStyle = NSMutableParagraphStyle ( )
paragraphStyle . headIndent = 18.0
let labelAtt : [ NSAttributedString . Key : Any ] = [
. paragraphStyle : paragraphStyle ,
. font : UIFont . preferredFont ( forTextStyle : . body )
]
2020-11-09 16:49:53 -08:00
let titleText = reauthenticating ? " jwt_success " . localizedString ( comment : " Title when JWT renewed " ) : " permission_success_headline " . localizedString ( comment : " Title when not refreshing JWT toek " )
titleLabel . text = titleText
2020-06-19 17:43:33 +10:00
let pointOneText = NSAttributedString ( string : NSLocalizedString ( " OS2b_Item1 " , comment : " Keep phone on you when you leave home " ) ,
2020-06-05 10:26:40 +10:00
attributes : labelAtt )
pointOneLabel . attributedText = pointOneText
2020-06-19 17:43:33 +10:00
let pointTwoText = NSAttributedString ( string : NSLocalizedString ( " OS2b_Item2 " , comment : " Keep bluetooth turned on " ) ,
2020-06-05 10:26:40 +10:00
attributes : labelAtt )
pointTwoLabel . attributedText = pointTwoText
2020-06-19 17:43:33 +10:00
let pointThreeText = NSMutableAttributedString ( string : NSLocalizedString ( " OS2b_Item3 " , comment : " COVIDSafe does NOT send pairing requests " ) ,
2020-06-05 10:26:40 +10:00
attributes : labelAtt )
2020-07-03 14:26:13 +10:00
if let learnMoreRange = pointThreeText . string . range ( of : NSLocalizedString ( " OS2b_Item3Underline " , comment : " Text that should be underlined from PointThree " ) ) {
let nsRange = NSRange ( learnMoreRange , in : pointThreeText . string )
pointThreeText . addAttributes ( [ . underlineStyle : NSUnderlineStyle . single . rawValue , . foregroundColor : UIColor . covidSafeColor ] , range : nsRange )
pointThreeLabel . attributedText = pointThreeText
}
2020-10-16 15:45:07 +11:00
guard let currentVersion = ( Bundle . main . version as NSString ? ) ? . integerValue else {
return
}
UserDefaults . standard . set ( currentVersion , forKey : " latestPolicyUpdateVersionShown " )
2020-05-08 17:49:14 +10:00
}
2020-05-27 16:22:34 +10:00
@IBAction func learnMoreTapped ( _ sender : Any ) {
2020-07-03 14:26:13 +10:00
guard let url = URL ( string : " \( URLHelper . getHelpURL ( ) ) #bluetooth-pairing-request " ) else {
2020-05-27 16:22:34 +10:00
return
}
let safariVC = SFSafariViewController ( url : url )
present ( safariVC , animated : true , completion : nil )
}
@IBAction func continueBtnTapped ( _ sender : UIButton ) {
2020-11-09 16:49:53 -08:00
if reauthenticating {
dismiss ( animated : true , completion : nil )
} else {
let homeVC = HomeViewController ( nibName : " HomeView " , bundle : nil )
self . navigationController ? . setViewControllers ( [ homeVC ] , animated : true )
}
2020-05-27 16:22:34 +10:00
}
2020-05-08 17:49:14 +10:00
}