-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6166 from leonardehrenfried/swap-from-to
Add button to swap from/to in debug UI
- Loading branch information
Showing
4 changed files
with
41 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { TripQueryVariables } from '../../gql/graphql.ts'; | ||
import icon from '../../static/img/swap.svg'; | ||
|
||
export function SwapLocationsButton({ | ||
tripQueryVariables, | ||
setTripQueryVariables, | ||
}: { | ||
tripQueryVariables: TripQueryVariables; | ||
setTripQueryVariables: (tripQueryVariables: TripQueryVariables) => void; | ||
}) { | ||
const swapFromTo = () => { | ||
setTripQueryVariables({ | ||
...tripQueryVariables, | ||
from: tripQueryVariables.to, | ||
to: tripQueryVariables.from, | ||
}); | ||
}; | ||
|
||
return ( | ||
<button className="swap-from-to" onClick={swapFromTo} title="Swap from/to"> | ||
<img alt="Swap from/to" src={icon} /> | ||
</button> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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