-
Notifications
You must be signed in to change notification settings - Fork 592
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
Get processing timeline events #3241
base: master
Are you sure you want to change the base?
Get processing timeline events #3241
Conversation
42403d9
to
de22d67
Compare
Thanks for adding a draft PR for early feedback. If I see this correctly, you are also having the changes submitted in your PR #3226 in this PR. Can you please separate this out and only commit the changes relevant to the issue #3219 in this PR? This would make reviewing the code much easier, thanks. |
de22d67
to
281bb34
Compare
@jkppr, I removed the work of the other PR. The only change I made for now is at the backend side: It unlocks the desired behaviour: Getting timeline events while in the processing status. At the frontend side, for now, all timeline events appear even if some of them are is in the processing state. However, I face difficulties when attempting to change the timeline chip so that a processing one behaves like a ready/failed one, with an additional spinning wheel as the only visual difference. The complementarity between Do you think someone can help me to accomplish this precise part? |
Now one thing to be careful about is that TimelineComponent.vue is used by Explore/TimelineChip.vue and Analyzer/TimelineChip.vue and whatever you change in TimelineComponen.vue will impact both types of timeline chips. |
bfcfffd
to
7aad31c
Compare
For now, there is no setting to switch with previous behaviour.
Default value is "false" (actual behaviour).
7aad31c
to
0177d57
Compare
Hi @jkppr, I have made progress, but still WIP. For now:
I am currently developing the following:
Feel free to give me advice or instructions to fine tune my change, if necessary. |
IMPORTANT: All Pull Requests should be connected to an issue, if you don't
have an issue, please start by creating an issue and link it to the PR.
Please provide enough information so that others can review your pull request:
Sketch
model, theactive_timelines
property includes timelines with a status set toprocessing
,utils.py
, theget_validated_indices
function includes timelines with a status set toprocessing
,POST /sketches/{{sketch_id}}/aggregation/explore/
endpoint includes indices which timeline has a status set toprocessing
.Checks
Closing issues
Closes #3219.