mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-10 12:19:28 +00:00
Allow rerunning tasks with unknown termination status (#16374)
This commit is contained in:
parent
e36e605c96
commit
ae9e6a9daa
1 changed files with 20 additions and 15 deletions
|
@ -943,26 +943,31 @@ impl Item for TerminalView {
|
|||
fn tab_content(&self, params: TabContentParams, cx: &WindowContext) -> AnyElement {
|
||||
let terminal = self.terminal().read(cx);
|
||||
let title = terminal.title(true);
|
||||
let rerun_button = |task_id: task::TaskId| {
|
||||
IconButton::new("rerun-icon", IconName::Rerun)
|
||||
.icon_size(IconSize::Small)
|
||||
.size(ButtonSize::Compact)
|
||||
.icon_color(Color::Default)
|
||||
.shape(ui::IconButtonShape::Square)
|
||||
.tooltip(|cx| Tooltip::text("Rerun task", cx))
|
||||
.on_click(move |_, cx| {
|
||||
cx.dispatch_action(Box::new(tasks_ui::Rerun {
|
||||
task_id: Some(task_id.clone()),
|
||||
..tasks_ui::Rerun::default()
|
||||
}));
|
||||
})
|
||||
};
|
||||
|
||||
let (icon, icon_color, rerun_button) = match terminal.task() {
|
||||
Some(terminal_task) => match &terminal_task.status {
|
||||
TaskStatus::Unknown => (IconName::ExclamationTriangle, Color::Warning, None),
|
||||
TaskStatus::Running => (IconName::Play, Color::Disabled, None),
|
||||
TaskStatus::Unknown => (
|
||||
IconName::ExclamationTriangle,
|
||||
Color::Warning,
|
||||
Some(rerun_button(terminal_task.id.clone())),
|
||||
),
|
||||
TaskStatus::Completed { success } => {
|
||||
let task_id = terminal_task.id.clone();
|
||||
let rerun_button = IconButton::new("rerun-icon", IconName::Rerun)
|
||||
.icon_size(IconSize::Small)
|
||||
.size(ButtonSize::Compact)
|
||||
.icon_color(Color::Default)
|
||||
.shape(ui::IconButtonShape::Square)
|
||||
.tooltip(|cx| Tooltip::text("Rerun task", cx))
|
||||
.on_click(move |_, cx| {
|
||||
cx.dispatch_action(Box::new(tasks_ui::Rerun {
|
||||
task_id: Some(task_id.clone()),
|
||||
..Default::default()
|
||||
}));
|
||||
});
|
||||
|
||||
let rerun_button = rerun_button(terminal_task.id.clone());
|
||||
if *success {
|
||||
(IconName::Check, Color::Success, Some(rerun_button))
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue