Add open_bucket_dialog script API selecting bucket files#2954
Merged
Conversation
…iles Adds a new scripting API method that presents a dialog similar to Bucket Explorer, allowing users to browse S3 buckets and select a file. Returns a file object identical to open_file_dialog. Includes Ruby/Python backends, Vue frontend dialog, API docs, demo procedures, and Python type stubs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2954 +/- ##
==========================================
- Coverage 78.51% 78.45% -0.06%
==========================================
Files 673 673
Lines 55332 55346 +14
Branches 728 728
==========================================
- Hits 43445 43424 -21
- Misses 11809 11844 +35
Partials 78 78
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
ryan-pratt
reviewed
Mar 12, 2026
...smos-init/plugins/packages/openc3-vue-common/src/tools/scriptrunner/Dialogs/BucketDialog.vue
Show resolved
Hide resolved
ryan-pratt
approved these changes
Mar 12, 2026
ryan-pratt
reviewed
Mar 12, 2026
Comment on lines
+2469
to
+2472
| let answer = 'Cancel' | ||
| if (response !== 'Cancel') { | ||
| answer = response | ||
| } |
ryanmelt
approved these changes
Mar 13, 2026
Member
ryanmelt
left a comment
There was a problem hiding this comment.
Approved when storage.py deleted.
|
jmthomas
added a commit
that referenced
this pull request
Mar 21, 2026
Add open_bucket_dialog script API selecting bucket files
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.


Adds a new scripting API method that presents a dialog similar to Bucket Explorer, allowing users to browse S3 buckets and select a file. Returns a file object identical to open_file_dialog. Includes Ruby/Python backends, Vue frontend dialog, API docs, demo procedures, and Python type stubs.
closes #2013