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)
@outgrowio/
. The setup instructions have changed too, so make sure to read them before doing the update. Hope that’ll help the community. https://github.com/outgrow/reaction-file-collections-sa-s3
sudo make init
then sudo make start
localhost:4080
then the products tabdocker restart reactionadmin_reaction-admin_1
Match failed [400]
and the following error in the console: (https://cdn.discordapp.com/attachments/324535887788507138/674256064706772992/unknown.png)
reaction-admin
and running into the same bugs. Looks like the product editor is a WIP while @mikemurray is working on porting it to 100% GQL. The PR is right here, and it looks like it’ll be ready soon. reactioncommerce/reaction-admin#188 Hang tight!
reaction-admin
right now, I would suggest to git checkout
an earlier tag/commit. Going back one week would probably do the trick.
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));
.