-
Notifications
You must be signed in to change notification settings - Fork 25
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
🐛[Bug] Support for @shopify/app-bridge-react
V4
#196
Comments
I'm facing this issue while following the official guide: https://shopify.dev/docs/apps/selling-strategies/discounts/experience/ui The lack of documentation versioning and package version specs in the documentation has been a challenge. |
Could you provide an update on this issue? I would appreciate it if you could update it if possible. |
Running into the same issue too, which is preventing us from building a critical discount bundle app. Following the latest official guide to a tee does not help either. Tried downgrading to V3, but that either fails with
or, when following the default export suggestion, does compile, but then clicks and other events stop working entirely. |
I created a fork of this repository to fix the issue and successfully built my remix app using |
@devisscher |
@devisscher Can you share any updates on this issue? Thanks! |
We are facing this issue too. An update would be good please. Thanks. |
@paulomenezes I believe all uses of Have you come across any other issues using your fork? I haven't reviewed your fork yet, but am concerned that this packages use of localization maybe affected. |
Hi @devisscher, is there a status update on this bug? Waiting on resolution and cannot continue our development. |
I think its faster to make changes in lib manually and use patch-package. Just need to re-develop Picker component. |
I was having the same issue, whereby even after downgrading, the commonJs error was being throw. It turns out the issue is with the new vite + remix integration. I was able to fix the issue by following this guide, specifically by using the vite-plugin-cjs-interop plugin plugin. // vite.config.js
cjsInterop({
// List of CJS dependencies that require interop
dependencies: ["@shopify/app-bridge-react"],
}), |
The CJS Interop plugin removes the vite error. But in the browser console, we now observe Uncaught SyntaxError: The requested module '/node_modules/@shopify/polaris/build/esm/styles.css?t=1713557476064' does not provide an export named 'default' (at app.tsx:4:1) |
I believe this is an issue with vite remix. You can import the (Note: I am not the best to listen to here and would love someone to add more technical context. I'm 🤠ing it) import "@shopify/polaris/build/esm/styles.css";
// export const links = () => [{ rel: "stylesheet", href: polarisStyles }]; |
@devisscher I see there is now a PR in for the fix. Any news on when that might get reviewed and merged please? |
Hey team/ @devisscher! Just checking in for an update on this as it has been three weeks without an update. Can we please get an outline of where we are at with this? |
@devisscher @mathiusj |
I just created a new app and wanted to add this
Now I see that you might be close to merge the PR, looking forward to that. Wondering if I could just workaround somehow for the moment, downgrade to v3 or something else. |
I used @paulomenezes fork of the repo in our app, which is being used in production, instead of the default one, and am having good success with. |
Hi @devisscher ! I see this closed, but there is no release yet. |
Spent half a day trying to get a discount app to work with V4 resource picker to land on this, any update on when it will be fixed? |
@devisscher Why did you close this issue? Doesn't this completely break development? My Coworker and I just spent around an hour trying to generate a new app extension following this documentation: https://shopify.dev/docs/apps/build/discounts/experience/build-discounts-function On both Mac and Windows we were both getting a dependency tree error relating to app bridge v4, since the dependency lives within the shopify package code we can't downgrade, making the creation of new extension apps impossible. |
as far as I can tell, the interop bug that prevented bundling with App Bridge v4 was fixed in #203. after that, we were able to build an embedded discount admin UI using this project in combination with App Bridge v4. that said, IIRC the tutorial is outdated (e.g. we started off using Shopify's Remix template for embedded apps, and loosely followed the discount tutorials from there, referencing the App Bridge v4 migration in the process. a little tedious, but worked in the end. |
Issue summary
After upgrading to V4 of
@shopify/app-bridge-react
as per the migration docs, this library throws an error due to trying to import the now deprecated<Provider />
component in this test file.Expected behavior
No error should be thrown.
This library should also be updated to use the latest version of
@shopify/app-bridge-react
Actual behavior
The thrown error is:
Steps to reproduce the problem
discount-app-components
package@shopify/app-bridge-react
to the latest versionSpecifications
The text was updated successfully, but these errors were encountered: