mobile v0.1 #189

Merged
talksik merged 18 commits from mobile-v1 into master 2026-04-30 00:30:31 +00:00
talksik commented 2026-04-30 00:08:06 +00:00 (Migrated from github.com)
No description provided.
github-code-quality[bot] (Migrated from github.com) reviewed 2026-04-30 00:11:23 +00:00
@@ -0,0 +84,4 @@
.activeOffsetY(10)
.failOffsetX([-25, 25])
.onUpdate((e) => {
"worklet";
github-code-quality[bot] (Migrated from github.com) commented 2026-04-30 00:11:22 +00:00

Unknown directive

Unknown directive: 'worklet'.

## Unknown directive <p>Unknown directive: 'worklet'.</p>
@@ -0,0 +88,4 @@
translateY.value = Math.max(0, e.translationY);
})
.onEnd((e) => {
"worklet";
github-code-quality[bot] (Migrated from github.com) commented 2026-04-30 00:11:22 +00:00

Unknown directive

Unknown directive: 'worklet'.

## Unknown directive <p>Unknown directive: 'worklet'.</p>
@@ -0,0 +114,4 @@
.activeOffsetY(10)
.failOffsetX([-25, 25])
.onUpdate((e) => {
"worklet";
github-code-quality[bot] (Migrated from github.com) commented 2026-04-30 00:11:22 +00:00

Unknown directive

Unknown directive: 'worklet'.

## Unknown directive <p>Unknown directive: 'worklet'.</p>
@@ -0,0 +118,4 @@
translateY.value = Math.max(0, e.translationY);
})
.onEnd((e) => {
"worklet";
github-code-quality[bot] (Migrated from github.com) commented 2026-04-30 00:11:22 +00:00

Unknown directive

Unknown directive: 'worklet'.

## Unknown directive <p>Unknown directive: 'worklet'.</p>
@@ -0,0 +265,4 @@
.failOffsetX([-30, 30])
.failOffsetY(-20)
.onUpdate((e) => {
"worklet";
github-code-quality[bot] (Migrated from github.com) commented 2026-04-30 00:11:22 +00:00

Unknown directive

Unknown directive: 'worklet'.

## Unknown directive <p>Unknown directive: 'worklet'.</p>
@@ -0,0 +269,4 @@
translateY.value = Math.max(0, e.translationY);
})
.onEnd((e) => {
"worklet";
github-code-quality[bot] (Migrated from github.com) commented 2026-04-30 00:11:22 +00:00

Unknown directive

Unknown directive: 'worklet'.

## Unknown directive <p>Unknown directive: 'worklet'.</p>
@@ -0,0 +292,4 @@
.failOffsetX([-30, 30])
.failOffsetY(20)
.onEnd((e) => {
"worklet";
github-code-quality[bot] (Migrated from github.com) commented 2026-04-30 00:11:22 +00:00

Unknown directive

Unknown directive: 'worklet'.

## Unknown directive <p>Unknown directive: 'worklet'.</p>
@@ -0,0 +306,4 @@
.maxDuration(180)
.maxDistance(15)
.onEnd((e, success) => {
"worklet";
github-code-quality[bot] (Migrated from github.com) commented 2026-04-30 00:11:22 +00:00

Unknown directive

Unknown directive: 'worklet'.

## Unknown directive <p>Unknown directive: 'worklet'.</p>
@@ -0,0 +317,4 @@
.minDuration(180)
.maxDistance(15)
.onStart(() => {
"worklet";
github-code-quality[bot] (Migrated from github.com) commented 2026-04-30 00:11:23 +00:00

Unknown directive

Unknown directive: 'worklet'.

## Unknown directive <p>Unknown directive: 'worklet'.</p>
@@ -0,0 +321,4 @@
runOnJS(setHoldActive)(true);
})
.onTouchesUp(() => {
"worklet";
github-code-quality[bot] (Migrated from github.com) commented 2026-04-30 00:11:23 +00:00

Unknown directive

Unknown directive: 'worklet'.


General fix: remove unknown/ineffective directive literals when they are not required for execution semantics.

Best fix here: in js/mobile/src/features/stream-view/StreamView.tsx, remove only the "worklet"; line inside the .onTouchesUp(() => { ... }) callback (around line 324). Keep the callback logic intact (runOnJS(setHoldActive)(false);) so behavior remains unchanged.

No imports, methods, or definitions are needed.

## Unknown directive Unknown directive: 'worklet'. --- General fix: remove unknown/ineffective directive literals when they are not required for execution semantics.</p> <p>Best fix here: in <code>js/mobile/src/features/stream-view/StreamView.tsx</code>, remove only the <code>"worklet";</code> line inside the <code>.onTouchesUp(() =&gt; { ... })</code> callback (around line 324). Keep the callback logic intact (<code>runOnJS(setHoldActive)(false);</code>) so behavior remains unchanged.</p> <p>No imports, methods, or definitions are needed.
Sign in to join this conversation.