Skip to content

Commit

Permalink
[CPS-830] Bug fix: iOS RN SDK - DS - Invalid access token overlaps wi…
Browse files Browse the repository at this point in the history
…th the icon (#18)

* Bug fix: CPS-830

* Update FireworkVideoUI.podspec
  • Loading branch information
linjie-firework authored May 23, 2024
1 parent 8f027ba commit b24bd7b
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 24 deletions.
2 changes: 1 addition & 1 deletion FireworkVideoUI.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FireworkVideoUI'
s.version = '0.1.1'
s.version = '0.1.2'
s.summary = 'An extension library meant to provide easier interfaces for the FireworkVideoSDK.'
s.homepage = 'https://github.com/loopsocial/firework_ios_sdk_ui_extensions'
s.license = 'Apache License, Version 2.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,31 +64,32 @@ extension UIView {
view.viewType = .normal
}

let swiftUIImageLayerClassName = "SW1hZ2VMYXllcg==".decodeBase64String()
let swiftUITextLayerClassName = "Q0dEcmF3aW5nTGF5ZXI=".decodeBase64String()
let layerClassName = String(describing: type(of: self.layer))

if AppLanguageManager.shared.shouldHorizontalFlip,
layerClassName == swiftUITextLayerClassName ||
layerClassName == swiftUIImageLayerClassName {
view.viewType = .normal
}

DispatchQueue.main.async {
if AppLanguageManager.shared.shouldHorizontalFlip {
let swiftUIImageLayerClassName = "SW1hZ2VMYXllcg==".decodeBase64String()
let swiftUITextLayerClassName = "Q0dEcmF3aW5nTGF5ZXI=".decodeBase64String()
let layerClassName = String(describing: type(of: self.layer))
if layerClassName == swiftUITextLayerClassName {
view.viewType = .normal
} else if layerClassName == swiftUIImageLayerClassName {
var resultViewType = LayoutFlipViewType.normal
if let contents = self.layer.contents as? CFTypeRef,
CFGetTypeID(contents) == CGImage.typeID {
let image = self.layer.contents as! CGImage
for imageName in gNamesOfImagesWithDirection {
let imageWithDirection = UIImage(
named: imageName,
in: Bundle(for: FireworkVideoSDK.self),
compatibleWith: nil
)?.cgImage
if image == imageWithDirection {
resultViewType = .flip
break
}
}
if AppLanguageManager.shared.shouldHorizontalFlip,
layerClassName == swiftUIImageLayerClassName,
let contents = self.layer.contents as? CFTypeRef,
CFGetTypeID(contents) == CGImage.typeID {
let image = self.layer.contents as! CGImage
for imageName in gNamesOfImagesWithDirection {
let imageWithDirection = UIImage(
named: imageName,
in: Bundle(for: FireworkVideoSDK.self),
compatibleWith: nil
)?.cgImage
if image == imageWithDirection {
view.viewType = .flip
break
}
view.viewType = resultViewType
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ extension UIView {
cls: self,
originalSelector: #selector(UIView.snapshotView(afterScreenUpdates:)),
customSelector: #selector(UIView.fw_snapshotView(afterScreenUpdates:)))
Swizzle.swizzleSelector(
cls: self,
originalSelector: #selector(UIView.layoutSubviews),
customSelector: #selector(UIView.fw_layoutSubviews))
}

var viewType: LayoutFlipViewType {
Expand Down Expand Up @@ -137,6 +141,11 @@ extension UIView {
return view
}

@objc func fw_layoutSubviews() {
fw_layoutSubviews()
renewLayerTransformForceRecursively(false)
}

func renewLayerTransformForceRecursively(_ forceRecursively: Bool) {
if !isIOSSDKView {
return
Expand Down

0 comments on commit b24bd7b

Please sign in to comment.