Adding export button for saving addresses as CSV

This commit is contained in:
Jimbo 2021-04-02 06:29:15 -04:00
parent 771bd1545c
commit e88d6265b4
2 changed files with 53 additions and 1 deletions

View file

@ -1,19 +1,30 @@
package com.sparrowwallet.sparrow.wallet;
import com.csvreader.CsvWriter;
import com.google.common.eventbus.Subscribe;
import com.sparrowwallet.drongo.KeyPurpose;
import com.sparrowwallet.drongo.wallet.WalletNode;
import com.sparrowwallet.sparrow.AppServices;
import com.sparrowwallet.sparrow.EventManager;
import com.sparrowwallet.sparrow.control.AddressTreeTable;
import com.sparrowwallet.sparrow.event.*;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.stage.FileChooser;
import javafx.stage.Stage;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.*;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.util.List;
import java.util.ResourceBundle;
public class AddressesController extends WalletFormController implements Initializable {
private static final Logger log = LoggerFactory.getLogger(AddressesController.class);
@FXML
private AddressTreeTable receiveTable;
@ -83,4 +94,38 @@ public class AddressesController extends WalletFormController implements Initial
changeTable.updateAll(getWalletForm().getNodeEntry(KeyPurpose.CHANGE));
}
}
public void exportReceiveAddresses(ActionEvent event) {
exportFile();
}
private void exportFile() {
Stage window = new Stage();
FileChooser fileChooser = new FileChooser();
fileChooser.setTitle("Export Addresses File");
String extension = "txt";
fileChooser.setInitialFileName(getWalletForm().getWallet().getName() + "-" +
"addresses" +
(extension == null || extension.isEmpty() ? "" : "." + extension));
File file = fileChooser.showSaveDialog(window);
if(file != null) {
try(FileOutputStream outputStream = new FileOutputStream(file)) {
CsvWriter writer = new CsvWriter(outputStream, ',', StandardCharsets.UTF_8);
writer.writeRecord(new String[] {"Index", "Payment Address", "Derivation"});
for(Entry entry : getWalletForm().getNodeEntry(KeyPurpose.RECEIVE).getChildren()) {
NodeEntry childEntry = (NodeEntry)entry;
writer.write(childEntry.getNode().getIndex() + "");
writer.write(childEntry.getNode().toString());
writer.write(childEntry.getNode().getDerivationPath());
writer.endRecord();
}
writer.close();
} catch(IOException e) {
log.error("Error exporting addresses as CSV", e);
AppServices.showErrorDialog("Error exporting addresses as CSV", e.getMessage());
}
}
}
}

View file

@ -21,7 +21,14 @@
</rowConstraints>
<BorderPane GridPane.columnIndex="0" GridPane.rowIndex="0">
<top>
<Label styleClass="addresses-treetable-label" text="Receiving Addresses"/>
<BorderPane GridPane.columnIndex="0" GridPane.rowIndex="0">
<left>
<Label styleClass="addresses-treetable-label" text="Receiving Addresses"/>
</left>
<right>
<Button fx:id="receiveExportButton" text="Export File..." onAction="#exportReceiveAddresses" />
</right>
</BorderPane>
</top>
<center>
<AddressTreeTable fx:id="receiveTable" />