feat(web-studio): extract task-pipeline.ts SSOT for unified drawer and table rendering - #3828
Open
skloxo wants to merge 2 commits into
Open
feat(web-studio): extract task-pipeline.ts SSOT for unified drawer and table rendering#3828skloxo wants to merge 2 commits into
skloxo wants to merge 2 commits into
Conversation
…ull UI components
ZaynJarvis
reviewed
Aug 7, 2026
| }, | ||
| }, | ||
| hardwareCharts: { | ||
| gpuVramTitle: 'RTX 2080 Ti 物理显存与 GPU 算力走势', |
Collaborator
There was a problem hiding this comment.
these seems not relevant to the fix.
ZaynJarvis
reviewed
Aug 7, 2026
| cjk_chars = len(re.findall(r"[\u4e00-\u9fff\u3040-\u30ff\uac00-\ud7af]", content)) | ||
| other_chars = len(re.findall(r"[^\s]", content)) - cjk_chars | ||
| return int(cjk_chars * 0.7 + other_chars * 0.3) | ||
| return int(cjk_chars * 1.0 + other_chars * 0.25) |
Collaborator
There was a problem hiding this comment.
not relevant to this fix. please leave only necessary changes.
skloxo
force-pushed
the
feat/web-studio-pipeline-ssot
branch
from
August 8, 2026 02:07
549dc82 to
7392812
Compare
Author
|
Hi @ZaynJarvis, thanks for pointing this out! I have cleaned up the unrelated markdown.py and zh-CN.ts changes from this branch. Now PR #3828 contains strictly the task-pipeline SSOT extraction for web-studio. Ready for re-review! Thank you! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Extracts
task-pipeline.tsas a shared Single Source of Truth (SSOT) helper module forweb-studio/src/routes/tasks/.Key Changes
task-pipeline.ts): Unified task execution pipeline steps across both task table rows and detail drawers (外部解析➔语义处理➔嵌入向量).task-detail-sheet.tsxandroute.tsxto consumegetTaskPipelineSteps()andgetTaskPipelineGroups().Verification
vite build(✓ built in 13.38s).