Files
linphone-tutorials/ios/swift/4-CallKitTutorial/CallKitTutorial/ContentView.swift
2021-09-15 10:58:48 +02:00

117 lines
3.0 KiB
Swift

//
// ContentView.swift
// CallKit tutorial
//
// Created by QuentinArguillere on 09/09/2021.
// Copyright © 2021 BelledonneCommunications. All rights reserved.
//
import SwiftUI
struct ContentView: View {
@ObservedObject var tutorialContext : CallKitExampleContext
func callStateString() -> String {
if (tutorialContext.isCallRunning) {
return "Call running"
} else if (tutorialContext.isCallIncoming) {
return "Incoming call"
} else {
return "No Call"
}
}
var body: some View {
VStack {
Group {
HStack {
Text("Username:")
.font(.title)
TextField("", text : $tutorialContext.username)
.textFieldStyle(RoundedBorderTextFieldStyle())
.disabled(tutorialContext.loggedIn)
}
HStack {
Text("Password:")
.font(.title)
TextField("", text : $tutorialContext.passwd)
.textFieldStyle(RoundedBorderTextFieldStyle())
.disabled(tutorialContext.loggedIn)
}
HStack {
Text("Domain:")
.font(.title)
TextField("", text : $tutorialContext.domain)
.textFieldStyle(RoundedBorderTextFieldStyle())
.disabled(tutorialContext.loggedIn)
}
Picker(selection: $tutorialContext.transportType, label: Text("Transport:")) {
Text("TLS").tag("TLS")
Text("TCP").tag("TCP")
Text("UDP").tag("UDP")
}.pickerStyle(SegmentedPickerStyle()).padding()
VStack {
HStack {
Button(action: {
if (self.tutorialContext.loggedIn)
{
self.tutorialContext.unregister()
self.tutorialContext.delete()
} else {
self.tutorialContext.login()
}
})
{
Text(tutorialContext.loggedIn ? "Log out & \ndelete account" : "Create & \nlog in account")
.font(.largeTitle)
.foregroundColor(Color.white)
.frame(width: 220.0, height: 90)
.background(Color.gray)
}
}
HStack {
Text("Login State : ")
.font(.footnote)
Text(tutorialContext.loggedIn ? "Looged in" : "Unregistered")
.font(.footnote)
.foregroundColor(tutorialContext.loggedIn ? Color.green : Color.black)
}.padding(.top, 10.0)
}
VStack {
HStack {
Text("Caller:").font(.title).underline()
Text(tutorialContext.remoteAddress)
Spacer()
}.padding(.top, 5)
HStack {
Text("Call msg:").font(.title3).underline()
Text(tutorialContext.callMsg)
Spacer()
}.padding(.top, 5)
}.padding(.top, 30)
Button(action: tutorialContext.mProviderDelegate.stopCall)
{
Text("End call").font(.largeTitle)
.foregroundColor(Color.white)
.frame(width: 120.0, height: 42.0)
.background(Color.gray)
}.disabled(!tutorialContext.isCallRunning)
.padding(.top, 10)
}
Group {
Spacer()
Text("Core Version is \(tutorialContext.coreVersion)")
}
}
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView(tutorialContext: CallKitExampleContext())
}
}