Skip to content

Commit a4c3536

Browse files
committed
component push: add --public/private flags
1 parent 08e8fa2 commit a4c3536

File tree

1 file changed

+54
-7
lines changed
  • crates/cli/src/commands/components

1 file changed

+54
-7
lines changed

crates/cli/src/commands/components/push.rs

+54-7
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ pub struct Options {
1616
#[arg(short, long, id = "PROFILE", env = "EDGEE_API_PROFILE")]
1717
profile: Option<String>,
1818

19+
#[arg(long, conflicts_with = "private")]
20+
pub public: bool,
21+
22+
#[arg(long, conflicts_with = "public")]
23+
pub private: bool,
24+
1925
#[arg(long)]
2026
pub changelog: Option<String>,
2127
}
@@ -132,11 +138,18 @@ pub async fn run(opts: Options) -> anyhow::Result<()> {
132138
return Ok(());
133139
}
134140

135-
let public_or_private = Select::new(
136-
"Would you like to make this component public or private?",
137-
vec!["private", "public"],
138-
)
139-
.prompt()?;
141+
let public = match (opts.public, opts.private) {
142+
(true, false) => true,
143+
(false, true) => false,
144+
_ => {
145+
Select::new(
146+
"Would you like to make this component public or private?",
147+
vec!["private", "public"],
148+
)
149+
.prompt()?
150+
== "public"
151+
}
152+
};
140153

141154
let avatar_url = if let Some(path) = &manifest.component.icon_path {
142155
tracing::info!("Uploading Icon... {:?}", manifest.component.icon_path);
@@ -170,7 +183,7 @@ pub async fn run(opts: Options) -> anyhow::Result<()> {
170183
.map(|url| url.to_string()),
171184
)
172185
.avatar_url(avatar_url)
173-
.public(public_or_private == "public"),
186+
.public(public),
174187
)
175188
.send()
176189
.await
@@ -266,6 +279,40 @@ pub async fn run(opts: Options) -> anyhow::Result<()> {
266279
}
267280
}
268281

282+
let public = match (opts.public, opts.private) {
283+
(true, false) | (false, true) => {
284+
let public = opts.public;
285+
let remote_public = component.is_public.unwrap_or(false);
286+
if opts.public == remote_public {
287+
tracing::info!(
288+
"Component is already {}",
289+
if public { "public" } else { "private" }
290+
);
291+
} else {
292+
tracing::info!(
293+
"Updating component visibility to {}...",
294+
if public { "public" } else { "private" }
295+
);
296+
297+
if !public {
298+
tracing::info!("Only unused components can be made private. If this component is already in use, it will remain public.");
299+
} else {
300+
let confirm = Confirm::new(
301+
"Your component will become publicly visible in the registry. Are you sure?",
302+
)
303+
.with_default(true)
304+
.prompt()?;
305+
306+
if !confirm {
307+
return Ok(());
308+
}
309+
}
310+
}
311+
public
312+
}
313+
_ => component.is_public.unwrap_or(false),
314+
};
315+
269316
client
270317
.update_component_by_slug()
271318
.org_slug(&organization.slug)
@@ -274,7 +321,7 @@ pub async fn run(opts: Options) -> anyhow::Result<()> {
274321
api_types::ComponentUpdateParams::builder()
275322
.name(manifest.component.name.clone())
276323
.description(manifest.component.description.clone())
277-
.public(component.is_public)
324+
.public(public)
278325
.documentation_link(
279326
manifest
280327
.component

0 commit comments

Comments
 (0)