Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Synchronously call function #10

Open
productdevbook opened this issue Mar 9, 2021 · 29 comments
Open

Synchronously call function #10

productdevbook opened this issue Mar 9, 2021 · 29 comments

Comments

@productdevbook
Copy link

Screen Shot 2021-03-09 at 20 07 30

Screen Shot 2021-03-09 at 20 08 58

Originally posted by @productfrontenddeveloper in #9 (comment)

@enesozturk
Copy link
Owner

Could you please share other details in bug issue template for your example?

HoldMenuProvideis should be used in root of your app (App.js) by the way. And what kind a usage are you trying? If you want to use touchable or pressable with HoldMenu you can check this usage.

@productdevbook
Copy link
Author

Screens tsx

import { Box, StyledText } from 'components';

import * as React from 'react';

import { useNavigation } from '@react-navigation/native';
import { useDispatch } from 'react-redux';

import I18n from 'lang/languages';

import { ListInterface } from 'store/types';
import { Pressable } from 'react-native';
import { HoldItem } from 'react-native-hold-menu';

interface Props {
  item: ListInterface;
  isFirstElement?: boolean;
  isLastElement?: boolean;
  onPress?: () => void;
}

export const MeListItem = (props: Props) => {
  const MenuItems = [
    { text: 'Actions', isTitle: true, onPress: () => {} },
    { text: 'Action 1', onPress: () => {} },
    { text: 'Action 2', withSeperator: true, onPress: () => {} },
    { text: 'Action 3', isDestructive: true, onPress: () => {} },
  ];

  return (
    <Box>
      <HoldItem items={MenuItems}>
        <Pressable onPress={() => console.log('test')}>
          <StyledText fontSize={25}>{props.item.emoji}</StyledText>
        </Pressable>
      </HoldItem>
    </Box>
  );
};

app.tsx

 <HoldMenuProvider theme="light">
              <Navigator />
            </HoldMenuProvider>

@enesozturk
Copy link
Owner

Are we going to go one by one? Which versions are you using?

@productdevbook
Copy link
Author

Are we going to go one by one? Which versions are you using?

oo sorry :(

Package versions

React: 17.0.1
React Native: 0.64.0-rc.4
React Native Reanimated: 2.0.0

@enesozturk
Copy link
Owner

And the Hold Menu version? Is it v0.0.8? This might because of your Reanimated setup as well. Be sure Reanimated it is working fine.

@productdevbook
Copy link
Author

And the Hold Menu version? Is it v0.0.8? This might because of your Reanimated setup as well. Be sure Reanimated it is working fine.

yes, v0.0.8, Reanimated I've been using it for a long time, but let me check again.

@enesozturk
Copy link
Owner

I see, I have to reproduce problem to solve and will try. Any help would be great to reproduce it.

@productdevbook
Copy link
Author

I see, I have to reproduce problem to solve and will try. Any help would be great to reproduce it.

Reanimated no problem, add react-native-hold-menu some problem
https://user-images.githubusercontent.com/38668796/110529174-f8a2e780-8129-11eb-90ca-b65ca7e33ea5.mov

@productdevbook
Copy link
Author

https://github.com/software-mansion/react-native-reanimated/releases/tag/2.0.0

Can it test this with the stable version just released? I wonder if the library does not work steadily

@enesozturk
Copy link
Owner

I have not tested with stable version yet but was working with rc-3 that last version before the stable. No breaking changes after rc-3 (maybe this). Will try it today with 2.0.0.

@llr101
Copy link
Contributor

llr101 commented Mar 17, 2021

@enesozturk Can it run ? I have the same error. I use react-native init to create a project and follow react-native-unimodules installing. Do I need try create-react-native-app to create a project ?

@enesozturk
Copy link
Owner

Hi @booyeu, I am trying to fix another more important issue for now, after that this must be solved with new release. It is important which React Native and Reanimated version you are using. You can check the expo project or clone this repo and run the example project.

@llr101
Copy link
Contributor

llr101 commented Mar 18, 2021

@enesozturk thank you very much ^^ . And I want to know dose it also need expo in the new release ? My app will be bigger when I choice add react-native-unimodules to enable expo function

@enesozturk
Copy link
Owner

@enesozturk thank you very much ^^ . And I want to know dose it also need expo in the new release ? My app will be bigger when I choice add react-native-unimodules to enable expo function

You don't have to use Expo. You can use bare RN setup with unimodules. It is needed for blurview and haptic feedback. We may make it optional further releases.

@llr101
Copy link
Contributor

llr101 commented Mar 18, 2021

@enesozturk ok ok , thank you . I really really like this project and appreciate . And want to know maybe when it can use in [email protected] and [email protected] stable version ?

@enesozturk
Copy link
Owner

@enesozturk ok ok , thank you . I really really like this project and appreciate . And want to know maybe when it can use in [email protected] and [email protected] stable version ?

Not sure. Thanks for let me know the versions. I will check it 👍🏽

@llr101
Copy link
Contributor

llr101 commented Mar 27, 2021

I fix the problem by set _leftOrRight from object to value, and edit "..._leftOrRight" to "left:_leftOrRight"
but now , I found items onPress error . Maybe also because of react-native-reanimated stable version?

@enesozturk
Copy link
Owner

There must be something missing. _leftOrRight is returning an object are you sure? And what if it is opening from right? Yes there is an issue I am following it. software-mansion/react-native-reanimated#1758
Reanimated team also worked on int an releases in v2.0.1 but still exist -> software-mansion/react-native-reanimated#1844

@llr101
Copy link
Contributor

llr101 commented Mar 27, 2021

I see the object _leftOrRight just has one param . So I change _leftOrRight to number, and edit it like "left:_leftOrRight". Then it can run and shows ok. Do you have error when click the item . I give an onPress param , But it shows like this
41616844434_ pic

@llr101
Copy link
Contributor

llr101 commented Mar 27, 2021

and it seems your doc write a wrong props . holditems your doc shows styles , but it is containerStyles in codes~~

@enesozturk
Copy link
Owner

and it seems your doc write a wrong props . holditems your doc shows styles , but it is containerStyles in codes~~

Oh I see, will fix it 👍🏽

@llr101
Copy link
Contributor

llr101 commented Mar 27, 2021

and item text prop doesn't support Chinese like " 你好". It shows error code.I review the code the whole day. But I don't know why...Do you have any idea ? Thank you very much !!!!
11616846767_ pic

@enesozturk
Copy link
Owner

That is weird. No idea why. Maybe it is related the same issue. Text is passing through Shared Value. That might breake something.

@cayasso
Copy link

cayasso commented Apr 23, 2021

I am experiencing this exact same error, any fix for it yet?

@cayasso
Copy link

cayasso commented May 4, 2021

As @booyeu pointed out the solution, that works because object spread is not supported in worklets, its a known problem, as mentioned in the reanimated docs here https://docs.swmansion.com/react-native-reanimated/docs/next/#known-problems-and-limitations

@bfischer1121
Copy link

Maybe you guys could release this to npm? We're having to point to the develop branch because the npm version is broken and I don't think it's going to work for anyone.

@bfischer1121
Copy link

For anyone encountering this issue, the simplest thing I found is to fork the repo, build the develop branch, remove lib from the .gitignore and commit it, then point to your fork in the package.json

@riamon-v
Copy link

riamon-v commented Sep 16, 2021

Having the exact same issue here too.
Using react-native: 0.65.1
And last version of this package

@riamon-v
Copy link

For anyone encountering this issue, the simplest thing I found is to fork the repo, build the develop branch, remove lib from the .gitignore and commit it, then point to your fork in the package.json

Not working for me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants