Show tooltip when hovering over jump to diagnostic icon
This commit is contained in:
parent
982de971fa
commit
b3242417b3
4 changed files with 41 additions and 0 deletions
|
@ -613,6 +613,7 @@ fn diagnostic_header_renderer(entry: DiagnosticEntry<Point>, path: ProjectPath)
|
||||||
let (message, highlights) = highlight_diagnostic_message(&entry.diagnostic.message);
|
let (message, highlights) = highlight_diagnostic_message(&entry.diagnostic.message);
|
||||||
Arc::new(move |cx| {
|
Arc::new(move |cx| {
|
||||||
let settings = cx.global::<Settings>();
|
let settings = cx.global::<Settings>();
|
||||||
|
let tooltip_style = settings.theme.tooltip.clone();
|
||||||
let theme = &settings.theme.editor;
|
let theme = &settings.theme.editor;
|
||||||
let style = theme.diagnostic_header.clone();
|
let style = theme.diagnostic_header.clone();
|
||||||
let font_size = (style.text_scale_factor * settings.buffer_font_size).round();
|
let font_size = (style.text_scale_factor * settings.buffer_font_size).round();
|
||||||
|
@ -683,6 +684,30 @@ fn diagnostic_header_renderer(entry: DiagnosticEntry<Point>, path: ProjectPath)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
.with_tooltip(
|
||||||
|
entry.diagnostic.group_id,
|
||||||
|
Flex::row()
|
||||||
|
.with_child(
|
||||||
|
Label::new(
|
||||||
|
"Jump to diagnostic (".to_string(),
|
||||||
|
tooltip_style.text.clone(),
|
||||||
|
)
|
||||||
|
.boxed(),
|
||||||
|
)
|
||||||
|
.with_child(
|
||||||
|
KeystrokeLabel::new(
|
||||||
|
Box::new(editor::OpenExcerpts),
|
||||||
|
Default::default(),
|
||||||
|
tooltip_style.text.clone(),
|
||||||
|
)
|
||||||
|
.boxed(),
|
||||||
|
)
|
||||||
|
.with_child(Label::new(")".to_string(), tooltip_style.text).boxed())
|
||||||
|
.contained()
|
||||||
|
.with_style(tooltip_style.container)
|
||||||
|
.boxed(),
|
||||||
|
cx,
|
||||||
|
)
|
||||||
.aligned()
|
.aligned()
|
||||||
.flex_float()
|
.flex_float()
|
||||||
.boxed(),
|
.boxed(),
|
||||||
|
|
|
@ -31,6 +31,7 @@ pub struct Theme {
|
||||||
pub project_diagnostics: ProjectDiagnostics,
|
pub project_diagnostics: ProjectDiagnostics,
|
||||||
pub breadcrumbs: ContainedText,
|
pub breadcrumbs: ContainedText,
|
||||||
pub contact_notification: ContactNotification,
|
pub contact_notification: ContactNotification,
|
||||||
|
pub tooltip: ContainedText,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Deserialize, Default)]
|
#[derive(Deserialize, Default)]
|
||||||
|
|
|
@ -12,6 +12,7 @@ import workspace from "./workspace";
|
||||||
import contextMenu from "./contextMenu";
|
import contextMenu from "./contextMenu";
|
||||||
import projectDiagnostics from "./projectDiagnostics";
|
import projectDiagnostics from "./projectDiagnostics";
|
||||||
import contactNotification from "./contactNotification";
|
import contactNotification from "./contactNotification";
|
||||||
|
import tooltip from "./tooltip";
|
||||||
|
|
||||||
export const panel = {
|
export const panel = {
|
||||||
padding: { top: 12, bottom: 12 },
|
padding: { top: 12, bottom: 12 },
|
||||||
|
@ -37,5 +38,6 @@ export default function app(theme: Theme): Object {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
contactNotification: contactNotification(theme),
|
contactNotification: contactNotification(theme),
|
||||||
|
tooltip: tooltip(theme),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
13
styles/src/styleTree/tooltip.ts
Normal file
13
styles/src/styleTree/tooltip.ts
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
import Theme from "../themes/common/theme";
|
||||||
|
import { backgroundColor, border, shadow, text } from "./components";
|
||||||
|
|
||||||
|
export default function tooltip(theme: Theme) {
|
||||||
|
return {
|
||||||
|
background: backgroundColor(theme, 500),
|
||||||
|
border: border(theme, "primary"),
|
||||||
|
padding: 6,
|
||||||
|
shadow: shadow(theme),
|
||||||
|
cornerRadius: 6,
|
||||||
|
...text(theme, "sans", "primary", { size: "xs" })
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue