-
Notifications
You must be signed in to change notification settings - Fork 0
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
Update examples to have explicit names and tooltips #72
Conversation
Modify script/exampleoptions to use a CSV containing details on the examples and a more explicit name than their files.
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.
Looks great, but I think that you forgot to include the cql_examples.csv
Should we keep it as is or try to implement some sort of search capability instead of the dropdown? It might be a future iteration. |
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.
It might be a future iteration.
Yeah this PR seems like a good first step and we can get more dynamic down the road.
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.
Hmmm, this only has the json examples. I think that we need to include the cql2 text examples as well. Maybe a first drop down that is just json/text and then the second drop down selects the example and we just swap out ".json" with ".txt"
@bitner; you mean in the CSV? It doesn't really impact functionality, but I can include them. |
e726410
to
5a4ce31
Compare
Added the txt paths to the csv. Used a quick one-off pandas script, not including in version control, but referencing here: import pandas as pd
df = pd.read_csv('examples/cql_examples.csv', header=0, sep='|')
df['txt_path'] = df['path'].str.replace('.json', '.txt')
df['cql_path'] = df['path']
df.drop('path', axis=1, inplace=True)
df.to_csv('examples/cql_examples.csv', sep='|', index=False) |
Okok, I'm done FR now. I chatted with @alukach, who referenced that the best design for these types of converters is side-by-side dynamic conversion. Just working on getting edits to be possible on both sides: |
What I Changed
playground.md
fileHere's what the change looks like (tooltip not capture in screenshot, but it works!):

How to Test It
uv run mkdocs serve
Other notes