|
|
|
@ -12,116 +12,114 @@ struct LandingView: View {
|
|
|
|
|
@State var numberOfBubblesShown: Int = 0
|
|
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
|
NavigationView {
|
|
|
|
|
ZStack(alignment: .center) {
|
|
|
|
|
if #available(iOS 14.0, *) {
|
|
|
|
|
ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea()
|
|
|
|
|
} else {
|
|
|
|
|
ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary)
|
|
|
|
|
}
|
|
|
|
|
ZStack(alignment: .center) {
|
|
|
|
|
if #available(iOS 14.0, *) {
|
|
|
|
|
ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea()
|
|
|
|
|
} else {
|
|
|
|
|
ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VStack(
|
|
|
|
|
alignment: .center,
|
|
|
|
|
spacing: 0
|
|
|
|
|
) {
|
|
|
|
|
Spacer(minLength: 0)
|
|
|
|
|
|
|
|
|
|
VStack(
|
|
|
|
|
alignment: .center,
|
|
|
|
|
spacing: 0
|
|
|
|
|
) {
|
|
|
|
|
Spacer(minLength: 0)
|
|
|
|
|
|
|
|
|
|
Text("onboarding_landing_title".localized())
|
|
|
|
|
.bold()
|
|
|
|
|
.font(.system(size: Values.veryLargeFontSize))
|
|
|
|
|
.foregroundColor(themeColor: .textPrimary)
|
|
|
|
|
|
|
|
|
|
Spacer(minLength: 0)
|
|
|
|
|
.frame(maxHeight: 2 * Values.mediumSpacing)
|
|
|
|
|
|
|
|
|
|
FakeChat($numberOfBubblesShown)
|
|
|
|
|
.onAppear {
|
|
|
|
|
guard numberOfBubblesShown < 4 else { return }
|
|
|
|
|
|
|
|
|
|
Timer.scheduledTimerOnMainThread(withTimeInterval: 0.2, repeats: false) { _ in
|
|
|
|
|
Text("onboarding_landing_title".localized())
|
|
|
|
|
.bold()
|
|
|
|
|
.font(.system(size: Values.veryLargeFontSize))
|
|
|
|
|
.foregroundColor(themeColor: .textPrimary)
|
|
|
|
|
|
|
|
|
|
Spacer(minLength: 0)
|
|
|
|
|
.frame(maxHeight: 2 * Values.mediumSpacing)
|
|
|
|
|
|
|
|
|
|
FakeChat($numberOfBubblesShown)
|
|
|
|
|
.onAppear {
|
|
|
|
|
guard numberOfBubblesShown < 4 else { return }
|
|
|
|
|
|
|
|
|
|
Timer.scheduledTimerOnMainThread(withTimeInterval: 0.2, repeats: false) { _ in
|
|
|
|
|
withAnimation(.spring().speed(0.68)) {
|
|
|
|
|
numberOfBubblesShown = 1
|
|
|
|
|
}
|
|
|
|
|
Timer.scheduledTimerOnMainThread(withTimeInterval: 1.5, repeats: true) { timer in
|
|
|
|
|
withAnimation(.spring().speed(0.68)) {
|
|
|
|
|
numberOfBubblesShown = 1
|
|
|
|
|
}
|
|
|
|
|
Timer.scheduledTimerOnMainThread(withTimeInterval: 1.5, repeats: true) { timer in
|
|
|
|
|
withAnimation(.spring().speed(0.68)) {
|
|
|
|
|
numberOfBubblesShown += 1
|
|
|
|
|
if numberOfBubblesShown >= 4 {
|
|
|
|
|
timer.invalidate()
|
|
|
|
|
}
|
|
|
|
|
numberOfBubblesShown += 1
|
|
|
|
|
if numberOfBubblesShown >= 4 {
|
|
|
|
|
timer.invalidate()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Spacer(minLength: 0)
|
|
|
|
|
.frame(maxHeight: Values.massiveSpacing)
|
|
|
|
|
|
|
|
|
|
Spacer(minLength: 0)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Spacer(minLength: 0)
|
|
|
|
|
.frame(maxHeight: Values.massiveSpacing)
|
|
|
|
|
|
|
|
|
|
Spacer(minLength: 0)
|
|
|
|
|
}
|
|
|
|
|
.padding(.vertical, Values.mediumSpacing)
|
|
|
|
|
.padding(.bottom, 3 * Values.largeButtonHeight)
|
|
|
|
|
|
|
|
|
|
VStack(
|
|
|
|
|
alignment: .center,
|
|
|
|
|
spacing: Values.mediumSpacing
|
|
|
|
|
) {
|
|
|
|
|
Spacer()
|
|
|
|
|
|
|
|
|
|
Button {
|
|
|
|
|
register()
|
|
|
|
|
} label: {
|
|
|
|
|
Text("onboarding_landing_register_button_title".localized())
|
|
|
|
|
.bold()
|
|
|
|
|
.font(.system(size: Values.smallFontSize))
|
|
|
|
|
.foregroundColor(themeColor: .sessionButton_primaryFilledText)
|
|
|
|
|
.frame(
|
|
|
|
|
maxWidth: .infinity,
|
|
|
|
|
maxHeight: Values.largeButtonHeight,
|
|
|
|
|
alignment: .center
|
|
|
|
|
)
|
|
|
|
|
.backgroundColor(themeColor: .sessionButton_primaryFilledBackground)
|
|
|
|
|
.cornerRadius(Values.largeButtonHeight / 2)
|
|
|
|
|
}
|
|
|
|
|
.padding(.vertical, Values.mediumSpacing)
|
|
|
|
|
.padding(.bottom, 3 * Values.largeButtonHeight)
|
|
|
|
|
.padding(.horizontal, Values.massiveSpacing)
|
|
|
|
|
|
|
|
|
|
VStack(
|
|
|
|
|
alignment: .center,
|
|
|
|
|
spacing: Values.mediumSpacing
|
|
|
|
|
) {
|
|
|
|
|
Spacer()
|
|
|
|
|
|
|
|
|
|
Button {
|
|
|
|
|
register()
|
|
|
|
|
} label: {
|
|
|
|
|
Text("onboarding_landing_register_button_title".localized())
|
|
|
|
|
.bold()
|
|
|
|
|
.font(.system(size: Values.smallFontSize))
|
|
|
|
|
.foregroundColor(themeColor: .sessionButton_primaryFilledText)
|
|
|
|
|
.frame(
|
|
|
|
|
maxWidth: .infinity,
|
|
|
|
|
maxHeight: Values.largeButtonHeight,
|
|
|
|
|
alignment: .center
|
|
|
|
|
)
|
|
|
|
|
.backgroundColor(themeColor: .sessionButton_primaryFilledBackground)
|
|
|
|
|
.cornerRadius(Values.largeButtonHeight / 2)
|
|
|
|
|
}
|
|
|
|
|
.padding(.horizontal, Values.massiveSpacing)
|
|
|
|
|
|
|
|
|
|
Button {
|
|
|
|
|
restore()
|
|
|
|
|
} label: {
|
|
|
|
|
Text("onboarding_landing_restore_button_title".localized())
|
|
|
|
|
.bold()
|
|
|
|
|
.font(.system(size: Values.smallFontSize))
|
|
|
|
|
.foregroundColor(themeColor: .sessionButton_text)
|
|
|
|
|
.frame(
|
|
|
|
|
maxWidth: .infinity,
|
|
|
|
|
maxHeight: Values.largeButtonHeight,
|
|
|
|
|
alignment: .center
|
|
|
|
|
)
|
|
|
|
|
.overlay(
|
|
|
|
|
Capsule()
|
|
|
|
|
.stroke(themeColor: .sessionButton_border)
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
.padding(.horizontal, Values.massiveSpacing)
|
|
|
|
|
|
|
|
|
|
Button {
|
|
|
|
|
openLegalUrl()
|
|
|
|
|
} label: {
|
|
|
|
|
let attributedText: NSAttributedString = {
|
|
|
|
|
let text = String(format: "onboarding_T&C".localized(), "terms_of_service".localized(), "privacy_policy".localized())
|
|
|
|
|
let result = NSMutableAttributedString(
|
|
|
|
|
string: text,
|
|
|
|
|
attributes: [ .font : UIFont.systemFont(ofSize: Values.verySmallFontSize)]
|
|
|
|
|
)
|
|
|
|
|
result.addAttribute(.font, value: UIFont.boldSystemFont(ofSize: Values.verySmallFontSize), range: (text as NSString).range(of: "terms_of_service".localized()))
|
|
|
|
|
result.addAttribute(.font, value: UIFont.boldSystemFont(ofSize: Values.verySmallFontSize), range: (text as NSString).range(of: "privacy_policy".localized()))
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
}()
|
|
|
|
|
AttributedText(attributedText)
|
|
|
|
|
.foregroundColor(themeColor: .textPrimary)
|
|
|
|
|
}
|
|
|
|
|
.padding(.horizontal, Values.massiveSpacing)
|
|
|
|
|
Button {
|
|
|
|
|
restore()
|
|
|
|
|
} label: {
|
|
|
|
|
Text("onboarding_landing_restore_button_title".localized())
|
|
|
|
|
.bold()
|
|
|
|
|
.font(.system(size: Values.smallFontSize))
|
|
|
|
|
.foregroundColor(themeColor: .sessionButton_text)
|
|
|
|
|
.frame(
|
|
|
|
|
maxWidth: .infinity,
|
|
|
|
|
maxHeight: Values.largeButtonHeight,
|
|
|
|
|
alignment: .center
|
|
|
|
|
)
|
|
|
|
|
.overlay(
|
|
|
|
|
Capsule()
|
|
|
|
|
.stroke(themeColor: .sessionButton_border)
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
.padding(.horizontal, Values.massiveSpacing)
|
|
|
|
|
|
|
|
|
|
Button {
|
|
|
|
|
openLegalUrl()
|
|
|
|
|
} label: {
|
|
|
|
|
let attributedText: NSAttributedString = {
|
|
|
|
|
let text = String(format: "onboarding_T&C".localized(), "terms_of_service".localized(), "privacy_policy".localized())
|
|
|
|
|
let result = NSMutableAttributedString(
|
|
|
|
|
string: text,
|
|
|
|
|
attributes: [ .font : UIFont.systemFont(ofSize: Values.verySmallFontSize)]
|
|
|
|
|
)
|
|
|
|
|
result.addAttribute(.font, value: UIFont.boldSystemFont(ofSize: Values.verySmallFontSize), range: (text as NSString).range(of: "terms_of_service".localized()))
|
|
|
|
|
result.addAttribute(.font, value: UIFont.boldSystemFont(ofSize: Values.verySmallFontSize), range: (text as NSString).range(of: "privacy_policy".localized()))
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
}()
|
|
|
|
|
AttributedText(attributedText)
|
|
|
|
|
.foregroundColor(themeColor: .textPrimary)
|
|
|
|
|
}
|
|
|
|
|
.padding(.horizontal, Values.massiveSpacing)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|