Skip to content

Commit 80e3d76

Browse files
committed
Make beta/stable links look the part (installer-downloader)
1 parent 9d696cf commit 80e3d76

File tree

2 files changed

+47
-29
lines changed

2 files changed

+47
-29
lines changed

installer-downloader/src/cacao_impl/delegate.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,11 @@ impl AppDelegate for AppWindow {
133133
}
134134

135135
fn show_stable_text(&mut self) {
136-
println!("todo. show stable text");
136+
self.stable_link.set_hidden(false);
137137
}
138138

139139
fn hide_stable_text(&mut self) {
140-
println!("todo. hide stable text");
140+
self.stable_link.set_hidden(true);
141141
}
142142

143143
fn show_error_message(&mut self, message: installer_downloader::delegate::ErrorMessage) {

installer-downloader/src/cacao_impl/ui.rs

+45-27
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use std::cell::RefCell;
2+
use std::ops::Deref;
23
use std::sync::{Arc, LazyLock, Mutex, RwLock};
34

45
use cacao::appkit::window::{Window, WindowConfig, WindowDelegate};
@@ -10,14 +11,14 @@ use cacao::layout::{Layout, LayoutConstraint};
1011
use cacao::notification_center::Dispatcher;
1112
use cacao::objc::{class, msg_send, sel, sel_impl};
1213
use cacao::progress::ProgressIndicator;
13-
use cacao::text::{AttributedString, Label};
14+
use cacao::text::Label;
1415
use cacao::view::View;
15-
use installer_downloader::delegate::ErrorMessage;
1616
use objc_id::Id;
1717

18+
use crate::delegate::ErrorMessage;
1819
use crate::resource::{
1920
BANNER_DESC, BETA_LINK_TEXT, BETA_PREFACE_DESC, CANCEL_BUTTON_TEXT, DOWNLOAD_BUTTON_TEXT,
20-
WINDOW_HEIGHT, WINDOW_TITLE, WINDOW_WIDTH,
21+
STABLE_LINK_TEXT, WINDOW_HEIGHT, WINDOW_TITLE, WINDOW_WIDTH,
2122
};
2223

2324
/// Logo render in the banner
@@ -167,7 +168,9 @@ pub struct AppWindow {
167168
pub download_text: Label,
168169

169170
pub beta_link_preface: Label,
170-
pub beta_link: Label,
171+
pub beta_link: LinkToBeta,
172+
173+
pub stable_link: LinkToStable,
171174
}
172175

173176
pub struct ErrorView {
@@ -180,27 +183,34 @@ pub struct ErrorView {
180183

181184
pub type ErrorViewClickCallback = Box<dyn Fn() + Send>;
182185

183-
pub struct DownloadButton {
184-
pub button: Button,
185-
}
186+
/// Create a Button newtype that impls Default
187+
macro_rules! button_wrapper {
188+
($name:ident, $text:expr) => {
189+
pub struct $name {
190+
pub button: ::cacao::button::Button,
191+
}
186192

187-
impl Default for DownloadButton {
188-
fn default() -> Self {
189-
let button = Button::new(DOWNLOAD_BUTTON_TEXT);
190-
Self { button }
191-
}
192-
}
193+
impl Default for $name {
194+
fn default() -> Self {
195+
Self {
196+
button: Button::new($text),
197+
}
198+
}
199+
}
193200

194-
pub struct CancelButton {
195-
pub button: Button,
201+
impl Deref for $name {
202+
type Target = ::cacao::button::Button;
203+
fn deref(&self) -> &Self::Target {
204+
&self.button
205+
}
206+
}
207+
};
196208
}
197209

198-
impl Default for CancelButton {
199-
fn default() -> Self {
200-
let button = Button::new(CANCEL_BUTTON_TEXT);
201-
Self { button }
202-
}
203-
}
210+
button_wrapper!(LinkToBeta, BETA_LINK_TEXT);
211+
button_wrapper!(LinkToStable, STABLE_LINK_TEXT);
212+
button_wrapper!(DownloadButton, DOWNLOAD_BUTTON_TEXT);
213+
button_wrapper!(CancelButton, CANCEL_BUTTON_TEXT);
204214

205215
impl AppWindow {
206216
pub fn layout(&mut self) {
@@ -294,11 +304,13 @@ impl AppWindow {
294304
self.beta_link_preface.set_text(BETA_PREFACE_DESC);
295305
self.main_view.add_subview(&self.beta_link_preface);
296306

297-
let mut attr_text = AttributedString::new(BETA_LINK_TEXT);
298-
attr_text.set_text_color(Color::Link, 0..BETA_LINK_TEXT.len() as isize);
307+
self.beta_link.set_text_color(Color::Link);
308+
self.beta_link.set_bordered(false);
309+
self.main_view.add_subview(&*self.beta_link);
299310

300-
self.beta_link.set_attributed_text(attr_text);
301-
self.main_view.add_subview(&self.beta_link);
311+
self.stable_link.set_text_color(Color::Link);
312+
self.stable_link.set_bordered(false);
313+
self.main_view.add_subview(&*self.stable_link);
302314

303315
let status_text_position_y = self.status_text_position_y.get_or_insert_with(|| {
304316
self.status_text
@@ -372,11 +384,17 @@ impl AppWindow {
372384
.constraint_equal_to(&self.main_view.left)
373385
.offset(24.),
374386
self.beta_link
375-
.bottom
376-
.constraint_equal_to(&self.beta_link_preface.bottom),
387+
.center_y
388+
.constraint_equal_to(&self.beta_link_preface.center_y),
377389
self.beta_link
378390
.left
379391
.constraint_equal_to(&self.beta_link_preface.right),
392+
self.stable_link
393+
.left
394+
.constraint_equal_to(&self.beta_link_preface.left),
395+
self.stable_link
396+
.center_y
397+
.constraint_equal_to(&self.beta_link_preface.center_y),
380398
]);
381399
}
382400
}

0 commit comments

Comments
 (0)