@@ -16,6 +16,12 @@ pub struct Options {
16
16
#[ arg( short, long, id = "PROFILE" , env = "EDGEE_API_PROFILE" ) ]
17
17
profile : Option < String > ,
18
18
19
+ #[ arg( long, conflicts_with = "private" ) ]
20
+ pub public : bool ,
21
+
22
+ #[ arg( long, conflicts_with = "public" ) ]
23
+ pub private : bool ,
24
+
19
25
#[ arg( long) ]
20
26
pub changelog : Option < String > ,
21
27
}
@@ -132,11 +138,18 @@ pub async fn run(opts: Options) -> anyhow::Result<()> {
132
138
return Ok ( ( ) ) ;
133
139
}
134
140
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
+ } ;
140
153
141
154
let avatar_url = if let Some ( path) = & manifest. component . icon_path {
142
155
tracing:: info!( "Uploading Icon... {:?}" , manifest. component. icon_path) ;
@@ -170,7 +183,7 @@ pub async fn run(opts: Options) -> anyhow::Result<()> {
170
183
. map ( |url| url. to_string ( ) ) ,
171
184
)
172
185
. avatar_url ( avatar_url)
173
- . public ( public_or_private == " public" ) ,
186
+ . public ( public) ,
174
187
)
175
188
. send ( )
176
189
. await
@@ -266,6 +279,40 @@ pub async fn run(opts: Options) -> anyhow::Result<()> {
266
279
}
267
280
}
268
281
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
+
269
316
client
270
317
. update_component_by_slug ( )
271
318
. org_slug ( & organization. slug )
@@ -274,7 +321,7 @@ pub async fn run(opts: Options) -> anyhow::Result<()> {
274
321
api_types:: ComponentUpdateParams :: builder ( )
275
322
. name ( manifest. component . name . clone ( ) )
276
323
. description ( manifest. component . description . clone ( ) )
277
- . public ( component . is_public )
324
+ . public ( public )
278
325
. documentation_link (
279
326
manifest
280
327
. component
0 commit comments