@@ -79,7 +79,8 @@ impl Plugins {
79
79
match self {
80
80
Plugins :: Loaded ( state) => match message {
81
81
PluginMessage :: Plugin ( index, msg) => {
82
- if let Event :: Synchronize = state. plugins [ index] . update ( msg) {
82
+ let update_event = state. plugins [ index] . update ( msg) ;
83
+ if let Event :: Synchronize = update_event. 0 {
83
84
let mut plugins: Vec < PluginRow > = Vec :: new ( ) ;
84
85
let mut all_plugins: Vec < InstalledPlugin > =
85
86
Synchronizer :: get_plugins ( ) . values ( ) . cloned ( ) . collect ( ) ;
@@ -98,7 +99,9 @@ impl Plugins {
98
99
}
99
100
state. plugins = plugins;
100
101
}
101
- Command :: none ( )
102
+ update_event
103
+ . 1
104
+ . map ( move |msg| PluginMessage :: Plugin ( index, msg) )
102
105
}
103
106
104
107
PluginMessage :: RefreshPressed => {
@@ -127,6 +130,7 @@ impl Plugins {
127
130
& plugin. latest_version ,
128
131
& plugin. folder ,
129
132
) ) ;
133
+ plugins. sort_by ( |a, b| a. title . to_lowercase ( ) . cmp ( & b. title . to_lowercase ( ) ) ) ;
130
134
}
131
135
state. plugins = plugins;
132
136
Command :: none ( )
@@ -347,66 +351,61 @@ impl PluginRow {
347
351
}
348
352
}
349
353
350
- pub fn update ( & mut self , message : RowMessage ) -> Event {
354
+ pub fn update ( & mut self , message : RowMessage ) -> ( Event , Command < RowMessage > ) {
351
355
match message {
352
356
RowMessage :: ToggleView => {
353
357
self . opened = !self . opened ;
354
- Event :: Nothing
355
- }
356
- RowMessage :: UpdatePressed ( plugin) => {
357
- Command :: perform (
358
- APIConnector :: fetch_details ( plugin. title ) ,
359
- RowMessage :: Updating ,
360
- ) ;
361
- Event :: Nothing
362
- }
363
- RowMessage :: DeletePressed ( row) => {
364
- Command :: perform ( APIConnector :: fetch_details ( row. title ) , RowMessage :: Deleting ) ;
365
- Event :: Nothing
358
+ ( Event :: Nothing , Command :: none ( ) )
366
359
}
360
+ RowMessage :: UpdatePressed ( plugin) => (
361
+ Event :: Nothing ,
362
+ Command :: perform ( APIConnector :: fetch_details ( plugin. id ) , RowMessage :: Updating ) ,
363
+ ) ,
364
+ RowMessage :: DeletePressed ( row) => (
365
+ Event :: Nothing ,
366
+ Command :: perform ( APIConnector :: fetch_details ( row. id ) , RowMessage :: Deleting ) ,
367
+ ) ,
367
368
RowMessage :: WebsitePressed ( id, title) => {
368
369
webbrowser:: open ( & format ! (
369
370
"https://www.lotrointerface.com/downloads/info{}-{}.html" ,
370
371
id, title,
371
372
) )
372
373
. unwrap ( ) ;
373
- Event :: Nothing
374
+ ( Event :: Nothing , Command :: none ( ) )
374
375
}
375
376
RowMessage :: Updating ( fetched_plugin) => {
376
377
if let Ok ( fetched_plugin) = fetched_plugin {
377
378
if Installer :: download ( & fetched_plugin) . is_ok ( ) {
378
- self . status = "Downloaded" . to_string ( ) ;
379
379
if Installer :: delete (
380
380
& fetched_plugin. base_plugin . folder ,
381
381
& fetched_plugin. files ,
382
382
)
383
383
. is_ok ( )
384
384
{
385
385
if Installer :: extract ( & fetched_plugin) . is_ok ( ) {
386
- self . status = "Unpacked" . to_string ( ) ;
387
386
Installer :: delete_cache_folder ( & fetched_plugin) ;
388
387
if Synchronizer :: insert_plugin ( & fetched_plugin) . is_ok ( ) {
389
- self . status = "Installed " . to_string ( ) ;
390
- Event :: Synchronize
388
+ self . status = "Updated " . to_string ( ) ;
389
+ ( Event :: Synchronize , Command :: none ( ) )
391
390
} else {
392
- self . status = "Install failed" . to_string ( ) ;
393
- Event :: Nothing
391
+ self . status = "Update failed" . to_string ( ) ;
392
+ ( Event :: Nothing , Command :: none ( ) )
394
393
}
395
394
} else {
396
395
self . status = "Unpacking failed" . to_string ( ) ;
397
- Event :: Nothing
396
+ ( Event :: Nothing , Command :: none ( ) )
398
397
}
399
398
} else {
400
399
self . status = "Installation failed" . to_string ( ) ;
401
- Event :: Nothing
400
+ ( Event :: Nothing , Command :: none ( ) )
402
401
}
403
402
} else {
404
403
self . status = "Download failed" . to_string ( ) ;
405
- Event :: Nothing
404
+ ( Event :: Nothing , Command :: none ( ) )
406
405
}
407
406
} else {
408
- self . status = "Download failed" . to_string ( ) ;
409
- Event :: Nothing
407
+ self . status = "Update failed" . to_string ( ) ;
408
+ ( Event :: Nothing , Command :: none ( ) )
410
409
}
411
410
}
412
411
RowMessage :: Deleting ( fetched_plugin) => {
@@ -416,18 +415,18 @@ impl PluginRow {
416
415
{
417
416
if Synchronizer :: delete_plugin ( & fetched_plugin. base_plugin . title ) . is_ok ( ) {
418
417
self . status = "Deleted" . to_string ( ) ;
419
- Event :: Synchronize
418
+ ( Event :: Synchronize , Command :: none ( ) )
420
419
} else {
421
420
self . status = "Delete failed" . to_string ( ) ;
422
- Event :: Nothing
421
+ ( Event :: Nothing , Command :: none ( ) )
423
422
}
424
423
} else {
425
424
self . status = "Delete failed" . to_string ( ) ;
426
- Event :: Nothing
425
+ ( Event :: Nothing , Command :: none ( ) )
427
426
}
428
427
} else {
429
428
self . status = "Delete failed" . to_string ( ) ;
430
- Event :: Nothing
429
+ ( Event :: Nothing , Command :: none ( ) )
431
430
}
432
431
}
433
432
}
0 commit comments