Skip to content

Commit

Permalink
fix: Make popup on the Search input field less intrusive enhancement (#…
Browse files Browse the repository at this point in the history
…1685)

<!--
!! Please DELETE this comment before posting.
We appreciate your contribution to the Jaeger project! 👋🎉
-->

## Which problem is this PR solving?
- <!-- Example: Resolves #123 -->
#1651 
![Screenshot 2023-08-16
230437](https://github.com/jaegertracing/jaeger-ui/assets/81948346/84809799-4a3a-4ba5-8c60-10d1658d1912)


## Checklist
- [x] I have read
https://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md
- [x] I have signed all commits
- [ ] I have added unit tests for the new functionality
- [x] I have run lint and test steps successfully
  - for `jaeger`: `make lint test`
  - for `jaeger-ui`: `yarn lint` and `yarn test`

---------

Signed-off-by: Anik Dhabal Babu <adhabal2002@gmail.com>
  • Loading branch information
anikdhabal committed Aug 16, 2023
1 parent 602cfe3 commit a5c02b5
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 50 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,18 @@ limitations under the License.
.TracePageSearchBar--locateBtn {
padding: 1px 8px 4px;
}
.help-btn-container {
border: 1px solid gainsboro;
padding: 3px 7px;
}
.help-btn-container:hover {
border-top-color: rgb(23, 184, 190);
border-bottom-color: rgb(23, 184, 190);
}
.help-button {
border: 1px solid #999;
border-radius: 100px;
color: #999;
cursor: pointer;
padding: 1px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ import { Button, Input, Tooltip } from 'antd';
import cx from 'classnames';
import IoAndroidLocate from 'react-icons/lib/io/android-locate';

import IoHelp from 'react-icons/lib/io/help';
import * as markers from './TracePageSearchBar.markers';
import { trackFilter } from '../index.track';
import UiFindInput from '../../common/UiFindInput';
import { TNil } from '../../../types';

import './TracePageSearchBar.css';

type TracePageSearchBarProps = {
Expand Down Expand Up @@ -80,55 +80,58 @@ export function TracePageSearchBarFn(props: TracePageSearchBarProps & { forwarde

return (
<div className="TracePageSearchBar">
<Tooltip
arrowPointAtCenter
mouseLeaveDelay={0.5}
placement="bottom"
overlayStyle={{ maxWidth: '600px' }} // This is a large tooltip and the default is too narrow.
title={renderTooltip()}
>
{/* style inline because compact overwrites the display */}
<Input.Group className="ub-justify-end" compact style={{ display: 'flex' }}>
<UiFindInput
inputProps={uiFindInputInputProps}
forwardedRef={forwardedRef}
trackFindFunction={trackFilter}
/>
{navigable && (
<>
<Button
className={cx(btnClass, 'TracePageSearchBar--locateBtn')}
disabled={!textFilter}
htmlType="button"
onClick={focusUiFindMatches}
>
<IoAndroidLocate />
</Button>
<Button
className={btnClass}
disabled={!textFilter}
htmlType="button"
icon="up"
onClick={prevResult}
/>
<Button
className={btnClass}
disabled={!textFilter}
htmlType="button"
icon="down"
onClick={nextResult}
/>
</>
)}
<Button
className={btnClass}
disabled={!textFilter}
htmlType="button"
icon="close"
onClick={clearSearch}
/>
</Input.Group>
</Tooltip>
{/* style inline because compact overwrites the display */}
<Input.Group className="ub-justify-end" compact style={{ display: 'flex' }}>
<UiFindInput
inputProps={uiFindInputInputProps}
forwardedRef={forwardedRef}
trackFindFunction={trackFilter}
/>
<Tooltip
arrowPointAtCenter
placement="bottomLeft"
trigger="hover"
overlayStyle={{ maxWidth: '600px' }} // This is a large tooltip and the default is too narrow.
title={renderTooltip()}
>
<div className="help-btn-container">
<IoHelp className="help-button" />
</div>
</Tooltip>
{navigable && (
<>
<Button
className={cx(btnClass, 'TracePageSearchBar--locateBtn')}
disabled={!textFilter}
htmlType="button"
onClick={focusUiFindMatches}
>
<IoAndroidLocate />
</Button>
<Button
className={btnClass}
disabled={!textFilter}
htmlType="button"
icon="up"
onClick={prevResult}
/>
<Button
className={btnClass}
disabled={!textFilter}
htmlType="button"
icon="down"
onClick={nextResult}
/>
</>
)}
<Button
className={btnClass}
disabled={!textFilter}
htmlType="button"
icon="close"
onClick={clearSearch}
/>
</Input.Group>
</div>
);
}
Expand Down

0 comments on commit a5c02b5

Please sign in to comment.