vanpho93 on test-new-api-core
test: new commit from core Sig… (compare)
vanpho93 on test-new-api-core
chore: e2e test for apollo upgr… (compare)
reaction-admin
. So the solution would be to create a new component somewhere in your codebase, which would be a class extending ConfirmDialog
, and then to replace any import of @reactioncommerce/catalyst/ConfirmDialog
with your custom local component.
reaction-admin
. Definitely something we need, and not much work. I’ll try and work on that at some point.
reaction-component-library
or double named in both components
folder and reaction-component-library
beta
versions of all of our reaction-development-platform
projects: https://github.com/reactioncommerce/reaction-development-platform/releases/tag/v3.0.0-beta.4
env
files to get all the docker networks synced up: reactioncommerce/reaction-development-platform#101
Hi!
@loan-laux belated thanks for answer :)
I've got one more question. Is there any way to catch worker event?
For example:
in src/core-services/files/jobs/saveTempImages.js
there is context.backgroundJobs.addWorker
,
which is triggered function async worker(job)
, then find jobs with suitable status in DB.
I need to catch successful completion of this process in my own plugin,
preferably without editing the code in project plugin files.
reaction-dummy-data
. But as a workaround, you could use a MongoDB change stream on the Jobs
collection. Not ideal, but I’d say it’s an acceptable alternative while there’s no official API to monitor jobs. Would that work for you?
const stream = collection.watch()
. Then, observe the change
event on it with your own callback: stream.on(“change”, (event) => console.log(“Something changed in the collection:”, event));
.
Reaction v3.0.0 has been released across all of our core Reaction products: API, Hydra, Identity, and Example Storefront!
Reaction Admin is still in beta, released as v3.0.0-beta.4.
The Reaction Development Platform has also been updated with the respective project updates.
Our docs have been updated to reflect all v3.0.0 work, please refer to the docs for upgrade guides and more information: https://docs.reactioncommerce.com/docs/intro.html
All release notes are available in their respective project release pages:
https://github.com/reactioncommerce/reaction/releases/tag/v3.0.0
https://github.com/reactioncommerce/reaction-hydra/releases/tag/v3.0.0
https://github.com/reactioncommerce/reaction-identity/releases/tag/v3.0.0
https://github.com/reactioncommerce/example-storefront/releases/tag/v3.0.0
https://github.com/reactioncommerce/reaction-development-platform/releases/tag/v3.0.0
https://github.com/reactioncommerce/reaction-admin/releases/tag/v3.0.0-beta.4