Skip to content

Commit

Permalink
refactor(ios): disable navigation gesture with js (#9287)
Browse files Browse the repository at this point in the history
Do not toggle navigation gesture native to avoid unexpected behavior. close AF-1958, AF-1797
  • Loading branch information
CatsJuice committed Dec 25, 2024
1 parent 50ff365 commit 0acdf62
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import UIKit
class AFFiNEViewController: CAPBridgeViewController {
override func viewDidLoad() {
super.viewDidLoad()
// disable by default, enable manually when there is a "back" button in page-header
webView?.allowsBackForwardNavigationGestures = false
webView?.allowsBackForwardNavigationGestures = true
navigationController?.navigationBar.isHidden = true
extendedLayoutIncludesOpaqueBars = false
edgesForExtendedLayout = []
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/apps/ios/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"@capacitor/ios": "^6.2.0",
"@capacitor/keyboard": "^6.0.3",
"@sentry/react": "^8.44.0",
"@toeverything/infra": "workspace:^",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/frontend/apps/ios/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import { ModalConfigProvider } from './modal-config';
import { Cookie } from './plugins/cookie';
import { Hashcash } from './plugins/hashcash';
import { Intelligents } from './plugins/intelligents';
import { NavigationGesture } from './plugins/navigation-gesture';
import { enableNavigationGesture$ } from './web-navigation-control';

const future = {
v7_startTransition: true,
Expand Down Expand Up @@ -107,9 +107,9 @@ framework.impl(VirtualKeyboardProvider, {
},
});
framework.impl(NavigationGestureProvider, {
isEnabled: () => NavigationGesture.isEnabled(),
enable: () => NavigationGesture.enable(),
disable: () => NavigationGesture.disable(),
isEnabled: () => enableNavigationGesture$.value,
enable: () => enableNavigationGesture$.next(true),
disable: () => enableNavigationGesture$.next(false),
});
framework.impl(HapticProvider, {
impact: options => Haptics.impact(options as any),
Expand Down
13 changes: 13 additions & 0 deletions packages/frontend/apps/ios/src/web-navigation-control.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { LiveData } from '@toeverything/infra';

export const enableNavigationGesture$ = new LiveData(false);

const onTouchStart = (e: TouchEvent) => {
if (enableNavigationGesture$.value) return;

const clientX = e.changedTouches[0].clientX;
if (clientX <= 25) {
e.preventDefault();
}
};
document.body.addEventListener('touchstart', onTouchStart, { passive: false });
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { createIdentifier } from '@toeverything/infra';

export interface NavigationGestureProvider {
isEnabled: () => Promise<boolean>;
enable: () => Promise<void>;
disable: () => Promise<void>;
isEnabled: () => boolean;
enable: () => void;
disable: () => void;
}

export const NavigationGestureProvider =
Expand Down
3 changes: 2 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,7 @@ __metadata:
"@capacitor/ios": "npm:^6.2.0"
"@capacitor/keyboard": "npm:^6.0.3"
"@sentry/react": "npm:^8.44.0"
"@toeverything/infra": "workspace:^"
"@types/react": "npm:^19.0.1"
"@types/react-dom": "npm:^19.0.2"
cross-env: "npm:^7.0.3"
Expand Down Expand Up @@ -13718,7 +13719,7 @@ __metadata:
languageName: node
linkType: hard

"@toeverything/infra@workspace:*, @toeverything/infra@workspace:packages/common/infra":
"@toeverything/infra@workspace:*, @toeverything/infra@workspace:^, @toeverything/infra@workspace:packages/common/infra":
version: 0.0.0-use.local
resolution: "@toeverything/infra@workspace:packages/common/infra"
dependencies:
Expand Down

0 comments on commit 0acdf62

Please sign in to comment.