-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Transcript Search Functionality (#497)
* #THM-798 begin to implement search ui in TranscriptMenu * #THM-798 scaffold TranscriptMenu styles, basic ux flow * #THM-798 start to integrate filtered search results * #THM-799 clean up some inconsistent usage of refs/state in Transcript * #THM-799 split transcript list into separate component to make things more readable * #THM-799 simple search & highlighting * #THM-799 hoist focusedMatchIndex to Transcript component * #THM-799 revise mechanism behind decoration of active items so it does not conflict with filtered results * #THM-799 make search navigator (prev/next match) scroll the transcript list * #THM-799 restore click transcript line to scrub video * #THM-801 basic marker implementation * #THM-801 add some styles for search markers * #THM-801 use classnames instead of inline styles so different types of markers can coexist * #THM-801 rework imperative handling of handling video markers -- make them state driven * #THM-802 wrap Transcript tests with PlayerProvider because useFilterTranscripts depends on PlayerContext * #THM-802 fix most of the failing tests * #THM-802 ensure that untimed transcript lines with of a timed transcript can be activated via click * #THM-802 extract focused match management into its own hook * #THM-802 add tests for TranscriptSearch component * #THM-802 add tests for useFilteredTranscripts * #THM-802 expose search options via a single prop on <Transcript /> * #THM-802 fix some markers related to regressions * #THM-802 add extra safety: make sure markers plugin is initiated first * #THM-805 remove requirement of being wrapped in a PlayerContextProvider * #THM-805 format to 2-space indent * #THM-805 make edit suggested in PR review * #THM-805 remove outdated code
- Loading branch information
1 parent
25a519f
commit f18afc3
Showing
23 changed files
with
1,590 additions
and
597 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/node_modules | ||
/build | ||
/coverage | ||
.vscode | ||
.vscode | ||
yarn-error.log |
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
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.