From 36e598d5db47d802dcec66bb541ef931ea5883ce Mon Sep 17 00:00:00 2001
From: Dariusz Rybicki <dariusz@elixxir.io>
Date: Fri, 23 Sep 2022 00:14:16 +0200
Subject: [PATCH] Add ShakeViewModifier

---
 .../AppCore/SharedUI/ShakeViewModifier.swift  | 42 +++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 Examples/xx-messenger/Sources/AppCore/SharedUI/ShakeViewModifier.swift

diff --git a/Examples/xx-messenger/Sources/AppCore/SharedUI/ShakeViewModifier.swift b/Examples/xx-messenger/Sources/AppCore/SharedUI/ShakeViewModifier.swift
new file mode 100644
index 00000000..d46cdc6d
--- /dev/null
+++ b/Examples/xx-messenger/Sources/AppCore/SharedUI/ShakeViewModifier.swift
@@ -0,0 +1,42 @@
+import SwiftUI
+
+struct ShakeViewModifier: ViewModifier {
+  var action: () -> Void
+
+  func body(content: Content) -> some View {
+    content.onReceive(
+      NotificationCenter.default.publisher(
+        for: UIDevice.deviceDidShakeNotification
+      ),
+      perform: { _ in
+        action()
+      }
+    )
+  }
+}
+
+extension View {
+  public func onShake(perform action: @escaping () -> Void) -> some View {
+    modifier(ShakeViewModifier(action: action))
+  }
+}
+
+extension UIDevice {
+  static let deviceDidShakeNotification = Notification.Name(
+    rawValue: "deviceDidShakeNotification"
+  )
+}
+
+extension UIWindow {
+  open override func motionEnded(
+    _ motion: UIEvent.EventSubtype,
+    with event: UIEvent?
+  ) {
+    super.motionEnded(motion, with: event)
+    guard motion == .motionShake else { return }
+    NotificationCenter.default.post(
+      name: UIDevice.deviceDidShakeNotification,
+      object: nil
+    )
+  }
+}
-- 
GitLab