mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
Adding export button for saving addresses as CSV
This commit is contained in:
parent
771bd1545c
commit
e88d6265b4
2 changed files with 53 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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" />
|
||||
|
|
Loading…
Reference in a new issue