-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,40 @@ | ||
// | ||
// File.swift | ||
// | ||
// | ||
// | ||
// Created by Borut Tomazin on 04/09/2023. | ||
// | ||
|
||
import SwiftUI | ||
|
||
//struct LinkedInSheet: ViewModifier { | ||
// typealias SuccessHandler = (Bool) -> Void | ||
// typealias ErrorHandler = (Error) -> Void | ||
// let isPresented: Binding<Bool> | ||
// let onSuccess: SuccessHandler? | ||
// let onError: ErrorHandler? | ||
// | ||
// func body(content: Content) -> some View { | ||
// content | ||
// .sheet(isPresented: isPresented) { | ||
// LinkedInWebView { data in | ||
// // Task { await viewModel.signInWithLinkedIn() } | ||
// } onFailure: { | ||
// // viewModel.error = .general | ||
// } | ||
// } | ||
// } | ||
//} | ||
// | ||
//extension View { | ||
// func linkedInSheet(isPresented: Binding<Bool>, | ||
// onSuccess: LinkedInSheet.SuccessHandler? = nil, | ||
// onError: LinkedInSheet.ErrorHandler? = nil) -> some View { | ||
// modifier(LinkedInSheet(isPresented: isPresented, onSuccess: onSuccess, onError: onError)) | ||
// } | ||
//} | ||
@available(iOS 15.0, *) | ||
struct LinkedInSheet: ViewModifier { | ||
typealias SuccessHandler = LinkedInWebView.SuccessHandler // (Bool) -> Void | ||
typealias ErrorHandler = LinkedInWebView.ErrorHandler // (Error) -> Void | ||
let config: LinkedInAuthenticator.Configuration | ||
let isPresented: Binding<Bool> | ||
let onSuccess: SuccessHandler? | ||
let onError: ErrorHandler? | ||
|
||
func body(content: Content) -> some View { | ||
content | ||
.sheet(isPresented: isPresented) { | ||
LinkedInWebView(with: config) { data in | ||
onSuccess?(data) | ||
} onFailure: { | ||
onError?() | ||
} | ||
} | ||
} | ||
} | ||
|
||
@available(iOS 15.0, *) | ||
extension View { | ||
/// ViewModifier to present `LinkedInWebView` in sheet | ||
func linkedInSheet(with config: LinkedInAuthenticator.Configuration, | ||
isPresented: Binding<Bool>, | ||
onSuccess: LinkedInSheet.SuccessHandler? = nil, | ||
onError: LinkedInSheet.ErrorHandler? = nil) -> some View { | ||
modifier(LinkedInSheet(config: config, isPresented: isPresented, onSuccess: onSuccess, onError: onError)) | ||
} | ||
} |