-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.rs
428 lines (372 loc) · 16.7 KB
/
main.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
mod bindings;
mod state;
use state::{AppPlatform, BuildType, CustomInputs, Platform, PublishingFormat, Sdk, State};
use std::fmt;
use std::str::FromStr;
use strum::IntoEnumIterator;
use web_sys::HtmlInputElement as InputElement;
use web_sys::{HtmlElement, HtmlSelectElement};
use yew::prelude::*;
use yew::{events::InputEvent, function_component, html, Component, Context, Html};
use yew_hooks::prelude::*;
#[function_component]
fn About() -> Html {
html! {
<p class="notice">
<h3>{ "What does this do?" }</h3>
<p>{ "When automating your mobile releases, one of the first things that you need are workflows in your CI server that can create the builds you use in the release cycle." }</p>
<p>{ "Writing these workflows can be annoying since each CI system has different ways of configuring jobs, storing files, caching, etc." }</p>
<p>{ "So with the power of" }<em>{ " pretty much " }</em> { "no AI —" }</p>
<ol>
<li>{ "🔍 Pick a CI provider" }</li>
<li>{ "📌 Select build attributes" }</li>
<li>{ "📖 Read the instructions" }</li>
<li>{ "🔧 Tweak, as necessary" }</li>
<li>{ "🏃♂️ Get quickly up and running!" }</li>
</ol>
</p>
}
}
#[function_component]
fn Header() -> Html {
html! {
<header>
<h1 class="mt-header">{ "macige" }<img src="public/controller.svg" class="logo" alt="logo" width="32" height="32" /></h1>
<p class="p-1 subheading">
<u>{ "M" }</u>
{ "OBILE " }
<u>{ "A" }</u>
{ "PP " }
<u>{ "CI" }</u>
{ " WORKFLOW " }
<u>{ "GE" }</u>
{ "NERATOR" }
</p>
<a href="https://github.com/tramlinehq/macige" class="github-corner" aria-label="View source on GitHub">
<svg width="70" height="70" viewBox="0 0 250 250" style="fill:#fff; color:#304050; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true">
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
<path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>
<path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path>
</svg>
</a>
</header>
}
}
#[function_component]
fn Footer() -> Html {
html! {
<footer>
<p>
{ "Built using " }
<a href="https://yew.rs">{ "yew.rs" }</a>
{ ", "}
<a href="https://simplecss.org">{ "simple.css" }</a>
{ ", and "}
<a href="https://highlightjs.org">{ "highlight.js" }</a>
{ " by " }
<a href="https://tramline.app">{ "Tramline" }</a>
{ "." }
</p>
<p>
{ "Want to improve something? Send us a PR or create an issue " }
<a href="https://github.com/tramlinehq/macige/">{ "on GitHub" }</a>
{ "!" }
</p>
</footer>
}
}
#[derive(Properties, PartialEq, Eq)]
pub struct CopyToClipboardProps {
#[prop_or_default]
pub code: Option<String>,
}
#[function_component]
fn CopyToClipboardButton(props: &CopyToClipboardProps) -> Html {
let clipboard = use_clipboard();
let should_say_copied = use_state(|| false);
let onclick = {
let should_say_copied_clone = should_say_copied.clone();
if let Some(code) = props.code.clone() {
Callback::from(move |e: MouseEvent| {
e.prevent_default();
let should_say_copied_cc = should_say_copied_clone.clone(); // some serious cloning going on in here?!
should_say_copied_cc.set(true);
gloo::timers::callback::Timeout::new(1300, move || {
should_say_copied_cc.set(false);
})
.forget();
clipboard.write_text(code.clone())
})
} else {
Callback::noop()
}
};
html! {
<div class="section copy-to-clipboard">
<div class="sm-t upcase">{"Copy to clipboard"}</div>
if *should_say_copied {
<div class="sm-t upcase"><mark>{"Copied!"}</mark></div>
}
<button class="copy plausible-event-name=Copy+workflow+to+clipboard" onclick={onclick}>
<img src="/public/clipboard-text.svg" width="24" height="24" alt="copy to clipboard" />
</button>
</div>
}
}
#[derive(Properties, PartialEq, Eq)]
pub struct DisplayInfoProps {
pub info: Option<String>,
}
#[function_component]
fn DisplayInfo(props: &DisplayInfoProps) -> Html {
let info_ref = use_node_ref();
if let Some(info) = &props.info {
if let Some(info_el) = info_ref.cast::<HtmlElement>() {
info_el.set_inner_html(&info);
}
html! {
<div class="section notice" ref={info_ref.clone()}></div>
}
} else {
if let Some(info_el) = info_ref.cast::<HtmlElement>() {
info_el.set_inner_html("");
}
html! {
<div class="" ref={info_ref}></div>
}
}
}
#[derive(Properties, PartialEq, Eq)]
pub struct DisplayCodeProps {
pub info: Option<String>,
pub code: Option<String>,
}
#[function_component]
fn DisplayCode(props: &DisplayCodeProps) -> Html {
let code_ref = use_node_ref();
let options = bindings::HighlightOptions {
language: "yaml".to_owned(),
ignore_illegals: true,
};
if let Some(code) = props.code.clone() {
let highlighted: bindings::HighlightResult =
bindings::Hljs::highlight(&code, &serde_wasm_bindgen::to_value(&options).unwrap());
if let Some(code_el) = code_ref.cast::<HtmlElement>() {
code_el.set_inner_html(&highlighted.value());
}
}
html! {
<>
<DisplayInfo info={props.info.clone()} />
<CopyToClipboardButton code={ props.code.clone() } />
<pre class="code"><label>{ "YAML" }</label><code ref={code_ref}></code></pre>
</>
}
}
enum Msg {
Generate,
UpdateAppPlatform(String),
UpdatePlatform(String),
UpdateSdk(String),
UpdateBuildType(String),
UpdateBuildVariantName(String),
UpdateBuildVariantPath(String),
UpdatePublishingFormat(String),
ToggleShowingVersions,
}
struct App {
state: State,
}
impl Component for App {
type Message = Msg;
type Properties = ();
fn create(_ctx: &Context<Self>) -> Self {
let state = State {
app_platform: AppPlatform::Android,
platform: Platform::GitHub,
sdk: Sdk::Native,
build_type: BuildType::Unsigned,
code_template: None,
info_template: None,
custom_inputs: CustomInputs {
build_variant_name: Some("Debug".to_string()),
build_variant_path: Some("debug/app-debug".to_string()),
publishing_format: PublishingFormat::Apk,
show_versions: true,
},
};
Self { state }
}
fn update(&mut self, _ctx: &Context<Self>, msg: Self::Message) -> bool {
match msg {
Msg::Generate => self.state.gen_templates(),
Msg::UpdateAppPlatform(selected) => {
self.state.clear_text();
self.state.app_platform = AppPlatform::from_str(&selected).unwrap();
}
Msg::UpdatePlatform(selected) => {
self.state.clear_text();
self.state.platform = Platform::from_str(&selected).unwrap();
}
Msg::UpdateSdk(selected) => {
self.state.clear_text();
self.state.sdk = Sdk::from_str(&selected).unwrap();
}
Msg::UpdateBuildType(selected) => {
self.state.clear_text();
self.state.build_type = BuildType::from_str(&selected).unwrap();
if matches!(self.state.build_type, BuildType::Signed) {
self.state.custom_inputs.build_variant_name = Some("Release".to_string());
self.state.custom_inputs.build_variant_path =
Some("release/app-prod-release".to_string())
} else {
self.state.custom_inputs.build_variant_name = Some("Debug".to_string());
self.state.custom_inputs.build_variant_path =
Some("debug/app-debug".to_string())
}
}
Msg::UpdateBuildVariantName(value) => {
self.state.clear_text();
self.state.custom_inputs.build_variant_name = Some(value);
}
Msg::UpdateBuildVariantPath(value) => {
self.state.clear_text();
self.state.custom_inputs.build_variant_path = Some(value);
}
Msg::UpdatePublishingFormat(selected) => {
self.state.clear_text();
self.state.custom_inputs.publishing_format =
PublishingFormat::from_str(&selected).unwrap();
}
Msg::ToggleShowingVersions => {
self.state.clear_text();
let status = !self.state.custom_inputs.show_versions;
self.state.custom_inputs.show_versions = status;
}
}
true
}
fn view(&self, ctx: &Context<Self>) -> Html {
let link = ctx.link();
let _on_app_platform_change = link.batch_callback(|e: InputEvent| {
e.prevent_default();
let input: HtmlSelectElement = e.target_unchecked_into();
Some(Msg::UpdateAppPlatform(input.value()))
});
let _on_platform_change = link.batch_callback(|e: InputEvent| {
e.prevent_default();
let input: HtmlSelectElement = e.target_unchecked_into();
Some(Msg::UpdatePlatform(input.value()))
});
let _on_sdk_change = link.batch_callback(|e: InputEvent| {
e.prevent_default();
let input: HtmlSelectElement = e.target_unchecked_into();
Some(Msg::UpdateSdk(input.value()))
});
let _on_build_type_change = link.batch_callback(|e: InputEvent| {
e.prevent_default();
let input: HtmlSelectElement = e.target_unchecked_into();
Some(Msg::UpdateBuildType(input.value()))
});
let _on_build_variant_name_change = link.batch_callback(|e: InputEvent| {
let input: InputElement = e.target_unchecked_into();
Some(Msg::UpdateBuildVariantName(input.value()))
});
let _on_build_variant_path_change = link.batch_callback(|e: InputEvent| {
let input: InputElement = e.target_unchecked_into();
Some(Msg::UpdateBuildVariantPath(input.value()))
});
let _on_publishing_format_change = link.batch_callback(|e: InputEvent| {
e.prevent_default();
let input: HtmlSelectElement = e.target_unchecked_into();
Some(Msg::UpdatePublishingFormat(input.value()))
});
html! {
<>
<Header />
<main>
// About Section
<div class="section"><About /></div>
// Controls Section
<div class="section">
<div class="pickers">
<div class="picker-wide">
<label for="app-platform">{"Platform"}<div class="sm-t">{ "(iOS workflows coming soon!)" }</div></label>
<select name="app-platform" oninput={_on_app_platform_change} value={ self.state.app_platform.to_string() }>{ for self.to_options(self.state.app_platform) }</select>
</div>
</div>
// Pickers (row 1) Section
<div class="pickers">
<div class="picker-wide">
<label for="ci-provider">{"CI Provider"}</label>
<select name="ci-provider" oninput={_on_platform_change} value={ self.state.platform.to_string() }>{ for self.to_options(self.state.platform) }</select>
</div>
<div class="picker-wide">
<label for="sdk">{"SDK"}</label>
<select name="sdk" oninput={_on_sdk_change} value={ self.state.sdk.to_string() }>{ for self.to_options(self.state.sdk) }</select>
</div>
<div class="picker-wide">
<label for="build-type">{"Build Type "}<span class="sm-t">{"("}<a href="https://developer.android.com/studio/publish/app-signing">{"signing apps"}</a>{")"}</span></label>
<select name="build-type" oninput={_on_build_type_change} value={ self.state.build_type.to_string() }>{ for self.to_options(self.state.build_type) }</select>
</div>
</div>
// Pickers (row 2) Section
<div class="pickers">
if !matches!(self.state.sdk, Sdk::Flutter) {
<div class="picker-wide">
<label for="build-variant">{"Build Variant "}<span class="sm-t">{"("}<a href="https://developer.android.com/studio/build/build-variants">{"build variants"}</a>{")"}</span></label>
<input id="build-variant" oninput={_on_build_variant_name_change} type="text" value={ self.state.custom_inputs.build_variant_name.to_owned() } />
</div>
}
<div class="picker-wider">
<label for="pub-format">{"Publishing Format"}</label>
<select aria-labelledby="pub-format" name="pub-format" oninput={_on_publishing_format_change} value={ self.state.custom_inputs.publishing_format.to_string() }>{ for self.to_options(self.state.custom_inputs.publishing_format) }</select>
</div>
</div>
// Pickers (row 3) Section
<div class="pickers">
<div class="picker-wider">
<label for="output-path">{"Build Output Path "}<div class="sm-t">{"(relative path to the base output directory)"}</div></label>
<div class="input-wrapper suffix">
<input aria-labelledby="output-path" id="output-path" oninput={_on_build_variant_path_change} class="build-variant" type="text" value={ self.state.custom_inputs.build_variant_path.to_owned() } />
<div class="input-suffix">{ "." }{self.state.custom_inputs.publishing_format.to_string().to_lowercase()}</div>
</div>
</div>
</div>
// Supporting Config Checkbox
<label>
<input aria-labelledby="show-versions" type="checkbox" class="show-versions" name="show-versions" onclick={ctx.link().callback(|_| Msg::ToggleShowingVersions)} checked={ self.state.custom_inputs.show_versions.to_owned() } />
{"Include supporting configuration for "}<code>{"versionCode"}</code>{" & "}<code>{"versionName"}</code>
</label>
</div>
// CTA
<div><button class="cta plausible-event-name=Generate+workflow" onclick={link.callback(|_| Msg::Generate)}>{ "Can I have it?" }</button></div>
// Info + Code
<div class="section">
<DisplayCode code={ self.state.code_template.to_owned() } info={ self.state.info_template.to_owned() } />
</div>
</main>
<Footer />
</>
}
}
}
impl App {
fn to_options<E: fmt::Display + Eq + IntoEnumIterator>(
&self,
cur: E,
) -> impl Iterator<Item = Html> {
E::iter().map(move |val| {
let is_selected = val == cur;
html! {
<option selected={is_selected} value={ val.to_string() }>
{ val.to_string() }
</option>
}
})
}
}
fn main() {
wasm_logger::init(wasm_logger::Config::default());
yew::Renderer::<App>::new().render();
}