1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-04-05 21:40:24 +02:00

Boards Manager: update UI after an install/remove

This commit is contained in:
Cristian Maglie 2020-07-22 17:07:59 +02:00
parent 1361bce6bc
commit a81772afc6
2 changed files with 21 additions and 0 deletions

View File

@ -47,9 +47,17 @@ public class ContributionIndexTableModel
private final List<ContributedPlatformReleases> contributions = new ArrayList<>(); private final List<ContributedPlatformReleases> contributions = new ArrayList<>();
private final String[] columnNames = { "Description" }; private final String[] columnNames = { "Description" };
private final Class<?>[] columnTypes = { ContributedPlatform.class }; private final Class<?>[] columnTypes = { ContributedPlatform.class };
private Predicate<ContributedPlatform> filter;
private String[] filters;
public void updateIndexFilter(String[] filters, public void updateIndexFilter(String[] filters,
Predicate<ContributedPlatform> filter) { Predicate<ContributedPlatform> filter) {
this.filter = filter;
this.filters = filters;
updateContributions();
}
private void updateContributions() {
contributions.clear(); contributions.clear();
for (ContributedPackage pack : BaseNoGui.indexer.getPackages()) { for (ContributedPackage pack : BaseNoGui.indexer.getPackages()) {
for (ContributedPlatform platform : pack.getPlatforms()) { for (ContributedPlatform platform : pack.getPlatforms()) {
@ -146,6 +154,7 @@ public class ContributionIndexTableModel
} }
public void update() { public void update() {
updateContributions();
fireTableDataChanged(); fireTableDataChanged();
} }

View File

@ -144,6 +144,10 @@ public class ContributionManagerUI extends InstallerJDialog {
.updateIndex(this::setProgress); .updateIndex(this::setProgress);
installer.deleteUnknownFiles(downloadedPackageIndexFiles); installer.deleteUnknownFiles(downloadedPackageIndexFiles);
onIndexesUpdated(); onIndexesUpdated();
if (contribTable.getCellEditor() != null) {
contribTable.getCellEditor().stopCellEditing();
}
getContribModel().update();
} catch (Exception e) { } catch (Exception e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} finally { } finally {
@ -169,6 +173,10 @@ public class ContributionManagerUI extends InstallerJDialog {
} }
errors.addAll(installer.install(platformToInstall, this::setProgress)); errors.addAll(installer.install(platformToInstall, this::setProgress));
onIndexesUpdated(); onIndexesUpdated();
if (contribTable.getCellEditor() != null) {
contribTable.getCellEditor().stopCellEditing();
}
getContribModel().update();
} catch (Exception e) { } catch (Exception e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} finally { } finally {
@ -207,6 +215,10 @@ public class ContributionManagerUI extends InstallerJDialog {
setProgressVisible(true, tr("Removing...")); setProgressVisible(true, tr("Removing..."));
installer.remove(platform); installer.remove(platform);
onIndexesUpdated(); onIndexesUpdated();
if (contribTable.getCellEditor() != null) {
contribTable.getCellEditor().stopCellEditing();
}
getContribModel().update();
} catch (Exception e) { } catch (Exception e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} finally { } finally {