-
Notifications
You must be signed in to change notification settings - Fork 0
Added accessibility routing functionality #300
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
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
2d41397
Added accessibility routing functionality
khalillabban 188dcf6
fix the multiple floor issues
0x-Nyx a450cb2
made the stairs and the elevator working
0x-Nyx e3ff6d3
add accessible button in indoor map view and add placeholder for star…
tinaw1412 dbaf37e
fix bug-4.4: indoor cross-floor travel detour via elevator/stairs
tinaw1412 4ad12a2
Fix bug-4.4: add elevator edges between H floor 8 and 9 to allow dire…
tinaw1412 3f253b6
add tests for new code
tinaw1412 1244965
remove duplicate indoor navigation test
tinaw1412 556383e
solve chris's comments on tests
tinaw1412 e9672de
solve nick g's comment on accessible route color not triggering in ro…
tinaw1412 ee640ae
solve clark's comment to stick with the nulish coalescing operator?
tinaw1412 8fefdf9
REFACTOR: dead code elimination of setSelectedBuilding useState call
tinaw1412 c7f9e49
REFACTOR: dead code elimination of constant floorSummaryText
tinaw1412 e4ceb34
REFACTOR: Extract Method to reduce the cognitive complexity of functi…
tinaw1412 c6470de
add the boundingBox of VE
0x-Nyx 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| { | ||
| "version": "2.0.0", | ||
| "tasks": [ | ||
| { | ||
| "label": "Run npm test", | ||
| "type": "shell", | ||
| "command": "npm", | ||
| "args": [ | ||
| "test" | ||
| ], | ||
| "isBackground": false, | ||
| "problemMatcher": [ | ||
| "$mocha" | ||
| ], | ||
| "group": "test" | ||
| }, | ||
| { | ||
| "label": "Run npm test after test updates", | ||
| "type": "shell", | ||
| "command": "npm", | ||
| "args": [ | ||
| "test" | ||
| ], | ||
| "isBackground": false, | ||
| "problemMatcher": [ | ||
| "$mocha" | ||
| ], | ||
| "group": "test" | ||
| }, | ||
| { | ||
| "label": "Run npm test after fixing accessibility label tests", | ||
| "type": "shell", | ||
| "command": "npm", | ||
| "args": [ | ||
| "test" | ||
| ], | ||
| "isBackground": false, | ||
| "problemMatcher": [ | ||
| "$mocha" | ||
| ], | ||
| "group": "test" | ||
| }, | ||
| { | ||
| "label": "Run npm test after fixing test nesting and params", | ||
| "type": "shell", | ||
| "command": "npm", | ||
| "args": [ | ||
| "test" | ||
| ], | ||
| "isBackground": false, | ||
| "problemMatcher": [ | ||
| "$mocha" | ||
| ], | ||
| "group": "test" | ||
| }, | ||
| { | ||
| "label": "Run npm test with verbose output for diagnostics", | ||
| "type": "shell", | ||
| "command": "npm", | ||
| "args": [ | ||
| "test", | ||
| "--", | ||
| "--verbose" | ||
| ], | ||
| "isBackground": false, | ||
| "problemMatcher": [ | ||
| "$mocha" | ||
| ], | ||
| "group": "test" | ||
| }, | ||
| { | ||
| "label": "Run Jest tests with verbose output", | ||
| "type": "shell", | ||
| "command": "npm test -- --verbose", | ||
| "isBackground": false, | ||
| "problemMatcher": [ | ||
| "$tsc" | ||
| ], | ||
| "group": "test" | ||
| }, | ||
| { | ||
| "label": "Run Jest tests with verbose output", | ||
| "type": "shell", | ||
| "command": "npm test -- --verbose", | ||
| "isBackground": false, | ||
| "problemMatcher": [ | ||
| "$tsc" | ||
| ], | ||
| "group": "test" | ||
| } | ||
| ] | ||
| } |
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
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.