-
Notifications
You must be signed in to change notification settings - Fork 504
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
Adds Case Page, Signal Graph, and supporting components #3974
Merged
Merged
Changes from 52 commits
Commits
Show all changes
60 commits
Select commit
Hold shift + click to select a range
f0f0516
[WIP] - First pass at migrating case page to Vue 3
wssheldon 4d20ae4
Merge branch 'master' into enhancement/full-width-case-page
kevgliss 9529f8c
Merge branch 'master' into enhancement/full-width-case-page
kevgliss 2180886
Merge branch 'master' into enhancement/full-width-case-page
kevgliss 0eda119
Making some progress
kevgliss c9addd3
Merge branch 'master' into enhancement/full-width-case-page-kglisson
wssheldon bbe933b
Fill out sidebar, add custom popover search, style changes
wssheldon d63516d
Merge branch 'master' into enhancement/full-width-case-page-kglisson
wssheldon 64b68e2
Add fancy components for Menu, Tooltip, and Button group
wssheldon d63c95c
Add pariticpant folder with participant AvatarGroup component
wssheldon 708e30c
Add composables for Hotkey and EventListener
wssheldon 10110e7
Add Atomics folder for micro components and Hotkey to start
wssheldon 43a4973
Add TipTap, update packages
wssheldon eddc7d7
Remove PopoverMenu2
wssheldon 7dc6671
Add Signal Graph components
wssheldon bd235d8
Add PageHeader component
wssheldon affe228
Add CasePriority popover
wssheldon 5809203
Add API route for pulling case participants
wssheldon d3a79ea
The rest of the changes
wssheldon d70b8ad
Add HoverCard and LockButton components
wssheldon 40e9c16
Remove ParticipantChips component
wssheldon 20afe54
Address some linter findings
wssheldon 2358aa2
Remove console logs from graph generation
wssheldon 3483562
Remove dead/refactored components
wssheldon 275c4ef
Add refactored popover super components
wssheldon f543b69
Add escalate button
wssheldon 91c7497
Add new tiptap component
wssheldon 7c7ffba
Add eslint changes
wssheldon 60ae902
Merge branch 'master' into enhancement/full-width-case-page-kglisson
wssheldon 9bdb171
Remove unused RichEditor component
wssheldon e466cc3
Remove unused ProjectSelectChip component
wssheldon 41d357f
Remove unused CaseTypeSelectChip
wssheldon 077c9b9
Remove unused CasePrioritySelectChip
wssheldon d7b4d35
Remove unused CaseSeveritySelectChip
wssheldon aa17392
Remove unused TagChips component
wssheldon c048f20
CaseToggleVisibility
wssheldon 7bfda0e
Remove EntitiesTab import from CaseTabs
wssheldon 33963e6
Remove unused imports from NewRawSignalViewer
wssheldon e30b9f3
More eslint issues, unused vars, defining types, and deprecated veuti…
wssheldon 3a915c6
Remove unused FancyButtonGroup component
wssheldon 638b2d0
Remove unused mapMutations import in Case Table
wssheldon c027fb4
shadowed menu ref in AvatarGroup
wssheldon 258a3a3
Unused CaseDetailsTabs component
wssheldon ce23637
unused var assignment of props in HoverCard component
wssheldon 0466415
Use deprecated timeline in Case details page
wssheldon 277e342
Refactor components and move to respective folders
wssheldon 709cba8
More clean up and addressing eslin errors, refactors in SearchPopover
wssheldon 1d91ebb
Remove more unused components CustomMenuInput, EditableTextArea
wssheldon 26ca76a
More refactor, make resolution reason popover component
wssheldon b2bfb3b
Make the resource buttons work, remove tooltips that are not setup, a…
wssheldon 6f1f6d9
Remove unused component and fix eslinet on drawer
wssheldon 3df2076
Minor typos, unused imports, etc
wssheldon 2d263a0
Remove unused vars and ignore placeholder funcs unused
wssheldon 84d8f52
Addressing many of the comments from kevgliss
wssheldon e010a26
Moving and renaming various components
wssheldon a2d64dd
Generalize LockButton
wssheldon b076902
Make the RichEditor emit instead of directly saving
wssheldon 26dece3
use default slots so we can use styles in SearchPopover for list items
wssheldon abbe96f
in addition to last commit, rename Fancy to D
wssheldon 12ce01c
Follow similar pattern for expand but use minimal, in get_case_partic…
wssheldon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the minimal here to denote we don't fetch sub objects for each participant? If so, we may want to follow a similar pattern to
/cases
and/incidents
and return the minimal object by default and allow for the?expand=True
parameter if we need it.