-
Notifications
You must be signed in to change notification settings - Fork 8
Lyndsay's User Guide Implementation #833
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
Open
lynwilhelm
wants to merge
54
commits into
main
Choose a base branch
from
user-guide
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 44 commits
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
c88490f
Add user guide feature with full content and routing
lynwilhelm 5ac1f8d
Merge branch 'AllenInstitute:main' into user-guide
lynwilhelm f2c8839
Remove Learn nav link, replace with User Guide
lynwilhelm d7db3df
Merge remote-tracking branch 'fork/user-guide' into user-guide
lynwilhelm 3585da9
Remove Learn page and all references
lynwilhelm 9ffe941
User guide content and layout updates
lynwilhelm 72875c5
User guide content, styling, and image updates
lynwilhelm 81791e1
User guide pre-review cleanup and code quality improvements
lynwilhelm 9a78916
Restore global.css to origin/main; update scoped heading TODO comment
lynwilhelm 3bfc943
Refine user guide terminology and fix typos
lynwilhelm 4488de9
User guide: section anchors, link wiring, supported-viewers cleanup
lynwilhelm 83de7cc
Link use-case overview table rows to their detail sections
lynwilhelm 85dafbe
User guide: align slugs with page titles, icon weights, table styling
lynwilhelm 7fab66b
User guide content: add REMBI section, fluorophore example, copy tweaks
lynwilhelm 8b3b5f0
Refine FoundingGIDE description wording
lynwilhelm f07da3a
Let user guide sidebar scroll independently on overflow
lynwilhelm 9196858
Let mobile user guide menu fill viewport height and scroll
lynwilhelm 48b1757
Merge branch 'main' into user-guide
lynwilhelm ffc6b25
Merge branch 'main' into user-guide
lynwilhelm 48a8e2c
Improve type safety and dead end maintenance
SeanDuHare 66dd88c
Add 404 page instead of automatic redirect
SeanDuHare f55db3a
Clean up css
SeanDuHare 63d6e32
Support /learn for backwards compat
SeanDuHare f90484b
Fix brittle use case anchors
SeanDuHare 892838b
Replace hard-coded links with enums
SeanDuHare 6adba2f
Improve 404 styling
SeanDuHare 82c55fd
Add video from Allen
SeanDuHare 0a50007
Missing route style improvements
SeanDuHare ee4911b
Embed video
SeanDuHare 7e6e717
Add citation
SeanDuHare 4971927
Move column descriptions; Adjust lead-ins
SeanDuHare 44ddf56
Add more content
SeanDuHare 9bdce5d
Add CSV downloads
SeanDuHare 0da145e
Remove redundant tooltip on mobile user guide menu button
lynwilhelm 4980302
User guide tidy-ups: citation section, link wording, remove resolved …
lynwilhelm 501ec6f
Style embedded video border; sentence-case a heading
lynwilhelm 4144645
User guide: anchor cloud-storage link to its section; copy refinements
lynwilhelm 3fea727
User guide copy: friendlier wording, ISAS CTA + data consistency
lynwilhelm f9636fe
Merge branch 'main' into user-guide
lynwilhelm aaf4b09
Use cases: hide Validate metadata; reframe Perform QC for non-coders
lynwilhelm 58cc3cc
Refine "Who is BFF for" persona labels
lynwilhelm 09c1058
Merge branch 'user-guide' of github.com:AllenInstitute/biofile-finder…
lynwilhelm b08b9d9
Reword use-case table intro
lynwilhelm 3ae2944
Potential fix for pull request finding
SeanDuHare ba8e6b4
Merge branch 'main' into user-guide
SeanDuHare dc6f144
Overhaul BFF comparison table on Overview page
lynwilhelm e6f06d2
Merge branch 'user-guide' of github.com:AllenInstitute/biofile-finder…
lynwilhelm 6eec02e
Revise comparison table preamble to frame BFF as a companion
lynwilhelm c366842
Add section on nesting metadata
SeanDuHare 5ea53b2
Merge branch 'main' into user-guide
SeanDuHare 3829d97
Rename Creating page to "metadata file" and list File Path as a column
lynwilhelm 7c31c5a
Merge branch 'user-guide' of github.com:AllenInstitute/biofile-finder…
lynwilhelm 87d084c
Refine metadata file page headings and advanced capabilities section
lynwilhelm 0301e34
Fix typos on metadata file and setup overview pages
lynwilhelm 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| .container { | ||
| display: flex; | ||
| flex-direction: column; | ||
| align-items: flex-start; | ||
| justify-content: center; | ||
| height: 100%; | ||
| margin: 0 20%; | ||
| } | ||
|
|
||
| .container a { | ||
| color: var(--aqua) !important; | ||
| } | ||
|
|
||
| .container a:hover { | ||
| color: var(--bright-aqua) !important; | ||
| } | ||
|
|
||
| .container ul { | ||
| margin: 0; | ||
| padding: 0; | ||
| } | ||
|
|
||
| .container ul li { | ||
| margin: 0.25em 0 0.25em 1em; | ||
| } | ||
|
|
||
| .container p { | ||
| line-height: normal; | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| import * as React from "react"; | ||
| import { Link } from "react-router-dom"; | ||
|
|
||
| import styles from "./NotFound.module.css"; | ||
|
|
||
| export default function NotFound() { | ||
| return ( | ||
| <div className={styles.container}> | ||
| <h1>Looking for something?</h1> | ||
| <p> | ||
| Sorry, we could not find the page you are looking for. One of the following BioFile | ||
| Finder (BFF) related pages may help you get back on track: | ||
| </p> | ||
| <ul> | ||
| <li> | ||
| <Link to="/">Home</Link> | ||
| </li> | ||
| <li> | ||
| <Link to="/user-guide">User Guide</Link> | ||
| </li> | ||
| </ul> | ||
| <p> | ||
| <a href="mailto:aics_software_support@alleninstitute.org">Email us</a> if you have | ||
| any questions or issues. | ||
| </p> | ||
| </div> | ||
| ); | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.