cdp-frontend
cdp-frontend copied to clipboard
New search functionality
…ltering.
Link to Relevant Issue
This pull request resolves #138
Description of Changes
Adds new search functionality to event transcript search, including strict search (use double quotes), negative search (put a ! before the double quotes), start filtering (put a ^ before the double quotes) and end filtering (put a $ before the double quotes).
For example, ^"1" $"2" "3" !"4" would only show strings that start with 1, end with 2, include 3, and don't include 4.
Linked to Forked Storybook Site
@evamaxfield Should we include text that tells the user that they can use quotes and filters? Should this be case sensitive?
Yes absolutely. Please include some sort of helper text. Can be on hover. Can also save that for a future PR though.