react-native-community / upgrade-helper

⚛️ A web tool to support React Native developers in upgrading their apps.
https://react-native-community.github.io/upgrade-helper
MIT License
3.59k stars 109 forks source link

Fix copy on Safari #359

Closed zoontek closed 1 year ago

zoontek commented 1 year ago

Following https://github.com/react-native-community/upgrade-helper/pull/355, one of my follower noticed that it doesn't work correctly on Safari.

Screenshot 2023-04-10 at 12 00 27

This occurs because the copy to clipboard is not done immediately after user interaction, in a synchronous way (as we have to fetch the file content before).

This PR fixes that, following this guide. Tested successfully on Chrome / Firefox / Safari. Support is IMHO good enough.