sleap icon indicating copy to clipboard operation
sleap copied to clipboard

(4a -> 4) Add `UnlinkedVideosTable` to `SessionsDock`

Open roomrys opened this issue 1 year ago • 1 comments

Description

Very similar steps to SessionsTable (#1654) and CamerasTable (#1671) (to be filled in), except for these few items:

  • [ ] Add a dictionary {linked: ..., unlinked: ...} to LabelsDataCache that remembers which videos are linked/unlinked to a RecordingSession in labels.sessions (this dictionary will be used for the items in the UnlinkedVideosTable)
  • [ ] Add command class and CommandContext.link_video_to_camera method to link a Video to a RecordingSession
  • [ ] Add button to "Link Video" (connecting it to the CommandContext method created above)

Types of changes

  • [ ] Bugfix
  • [ ] New feature
  • [ ] Refactor / Code style update (no logical changes)
  • [ ] Build / CI changes
  • [ ] Documentation Update
  • [ ] Other (explain)

Does this address any currently open issues?

[list open issues here]

Outside contributors checklist

  • [ ] Review the guidelines for contributing to this repository
  • [ ] Read and sign the CLA and add yourself to the authors list
  • [ ] Make sure you are making a pull request against the develop branch (not main). Also you should start your branch off develop
  • [ ] Add tests that prove your fix is effective or that your feature works
  • [ ] Add necessary documentation (if appropriate)

Thank you for contributing to SLEAP!

:heart:

roomrys avatar Mar 21 '24 20:03 roomrys

Walkthrough

The recent updates focus on enhancing video linkage within the SLEAP application. Key improvements include adding checks and updates for unlinked videos, enabling a "link video" button, and updating models and tables for better management of video sessions. Additionally, a new command for linking videos to sessions has been introduced, along with minor adjustments and test enhancements to ensure smooth functionality.

Changes

Files Summary
.../gui/app.py Enhanced video linkage with checks, button enabling, and cache updates.
.../gui/widgets/docks.py Introduced unlinked videos model, table, and link button creation.
.../gui/commands.py Added linkVideoToSession method for video-session linkage.
.../gui/dataviews.py Minor whitespace adjustments.
.../io/dataset.py Added video linkage tracking and updated session-video linkage methods.
tests/gui/widgets/test_docks.py Added tests for unlinked videos' functionality in the SessionsDock.

Poem

In the digital meadow, under the code-blue sky,
A rabbit hopped, with a gleam in its eye.
"Link videos!" it cried, with joy so profound,
For unlinked videos, a solution was found.
🐰💻🎥
With each push and pull, in the code they weave,
A tapestry of links, in SLEAP, they achieve.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share

Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/coderabbit-overrides.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

coderabbitai[bot] avatar Mar 21 '24 20:03 coderabbitai[bot]

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 73.84%. Comparing base (79f7fba) to head (a2a4886). Report is 142 commits behind head on liezl/add-gui-elements-for-sessions.

Additional details and impacted files
@@                           Coverage Diff                           @@
##           liezl/add-gui-elements-for-sessions    #1720      +/-   ##
=======================================================================
+ Coverage                                73.37%   73.84%   +0.46%     
=======================================================================
  Files                                      134      135       +1     
  Lines                                    23973    24689     +716     
=======================================================================
+ Hits                                     17591    18231     +640     
- Misses                                    6382     6458      +76     

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

codecov[bot] avatar Mar 29 '24 06:03 codecov[bot]