mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-05 15:37:45 +02:00
MESSENGER-4093 scan permalinks as qr
This commit is contained in:
committed by
Frank Rotermund
parent
1bff461abb
commit
eb618b395d
@@ -0,0 +1,71 @@
|
||||
//
|
||||
/*
|
||||
* Copyright (c) 2022 BWI GmbH
|
||||
*
|
||||
* 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 SwiftUI
|
||||
import UIKit
|
||||
|
||||
|
||||
class PermalinkQRCodeScannerController: NSObject {
|
||||
|
||||
@objc static func createFromSwiftUIView() -> UIViewController {
|
||||
return UIHostingController(rootView: PermalinkQRCodeScanner())
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
struct PermalinkQRCodeScanner: View {
|
||||
@Environment(\.presentationMode) var presentationMode
|
||||
@State var qrCode: String = ""
|
||||
@State var scanCompleted = false
|
||||
@State var showInvalidCodeAlert = false
|
||||
|
||||
var body: some View {
|
||||
NavigationView {
|
||||
ScannerView(qrCode: $qrCode, scanCompleted: $scanCompleted)
|
||||
.navigationTitle(BWIL10n.roomRecentsScanQrCode)
|
||||
.navigationBarTitleDisplayMode(.inline)
|
||||
.toolbar {
|
||||
ToolbarItem(placement: .navigationBarLeading) {
|
||||
Button(VectorL10n.close) {
|
||||
presentationMode.wrappedValue.dismiss()
|
||||
}
|
||||
}
|
||||
}
|
||||
.alert(isPresented: $showInvalidCodeAlert) {
|
||||
Alert(
|
||||
title: Text(BWIL10n.roomRecentsScanFailedTitle),
|
||||
message: Text(BWIL10n.roomRecentsScanFailedMessage),
|
||||
dismissButton: .default(Text(VectorL10n.ok)))
|
||||
}
|
||||
}
|
||||
.onChange(of: scanCompleted) { newValue in
|
||||
if newValue {
|
||||
if !BWIBuildSettings.shared.clientPermalinkBaseUrl.isEmpty && qrCode.hasPrefix(BWIBuildSettings.shared.clientPermalinkBaseUrl) {
|
||||
presentationMode.wrappedValue.dismiss()
|
||||
DispatchQueue.main.asyncAfter(deadline: .now() + 1.0) {
|
||||
if let url = URL(string: qrCode) {
|
||||
UIApplication.shared.open(url)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
showInvalidCodeAlert = true
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user