import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JDialog;
-import javax.swing.JFrame;
+import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTree;
import javax.swing.event.TreeSelectionEvent;
import javax.swing.event.TreeSelectionListener;
-import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeModel;
import javax.swing.tree.TreeModel;
import net.pterodactylus.jsite.project.Project;
import net.pterodactylus.util.io.MimeTypes;
import net.pterodactylus.util.logging.Logging;
+import net.pterodactylus.util.swing.SortableTreeNode;
import net.pterodactylus.util.swing.SwingUtils;
/**
* Manages physical and virtual files in a project.
- *
+ *
* @author David ‘Bombe’ Roden <bombe@freenetproject.org>
*/
public class FileManager extends JDialog implements I18nable, ActionListener, TreeSelectionListener {
/** The project whose files to manage. */
private final Project project;
+ /** The root of the file tree. */
+ private final SortableTreeNode fileTreeRoot;
+
/** The tree model for the project files. */
private final TreeModel fileTreeModel;
+ /** The “rescan” action. */
+ private I18nAction rescanAction;
+
/** The “close” action. */
private I18nAction closeAction;
/**
* Creates a new file manager.
- *
+ *
* @param swingInterface
* The Swing interface
* @param project
logger.log(Level.FINEST, "project: " + project);
this.swingInterface = swingInterface;
this.project = project;
- fileTreeModel = new DefaultTreeModel(new DefaultMutableTreeNode(File.separator));
+ fileTreeRoot = new SortableTreeNode(project.getName());
+ fileTreeModel = new DefaultTreeModel(fileTreeRoot);
initActions();
initComponents();
pack();
if (visible) {
initiateFileScan();
}
- super.setVisible(visible);
+ super.setVisible(visible);
}
//
setVisible(false);
}
};
+ rescanAction = new I18nAction("fileManager.button.rescan") {
+
+ /**
+ * {@inheritDoc}
+ */
+ @SuppressWarnings("synthetic-access")
+ public void actionPerformed(ActionEvent actionEvent) {
+ initiateFileScan();
+ }
+ };
insertAction = new I18nAction("fileManager.checkbox.insertFile") {
/**
/**
* Creates the main panel with the file tree and the file properties.
- *
+ *
* @return The mail panel
*/
private Component createFileManagerPanel() {
JPanel fileManagerPanel = new JPanel(new BorderLayout(12, 12));
+ /* file tree panel */
JPanel fileTreePanel = new JPanel(new BorderLayout(12, 12));
fileManagerPanel.add(fileTreePanel, BorderLayout.LINE_START);
fileTreePanel.add(projectFilesLabelPanel, BorderLayout.NORTH);
projectFilesLabelPanel.add(projectFilesLabel);
+ /* properties panel */
JPanel propertiesPanel = new JPanel(new GridBagLayout());
fileManagerPanel.add(propertiesPanel, BorderLayout.CENTER);
propertiesPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createEtchedBorder(), BorderFactory.createEmptyBorder(12, 12, 12, 12)));
propertiesPanel.add(new JPanel(), new GridBagConstraints(0, 2, 1, 1, 1.0, 1.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
+ /* action button panel */
+ JPanel actionButtonPanel = new JPanel(new FlowLayout(FlowLayout.LEADING, 12, 12));
+ actionButtonPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createEtchedBorder(), BorderFactory.createEmptyBorder(-12, -12, -12, -12)));
+
return fileManagerPanel;
}
/**
* Creates the button panel.
- *
+ *
* @return The button panel
*/
private Component createButtonPanel() {
private void initiateFileScan() {
swingInterface.getThreadPool().execute(new Runnable() {
+
/**
* @see java.lang.Runnable#run()
*/
+ @SuppressWarnings("synthetic-access")
public void run() {
- String basePath = project.getBasePath();
- File basePathDirectory = new File(basePath);
+ String basePath = project.getBasePath();
+ File basePathDirectory = new File(basePath);
+ if (!basePathDirectory.exists() || !basePathDirectory.isDirectory()) {
+ /* TODO - i18n */
+ JOptionPane.showMessageDialog(FileManager.this, I18n.get(""), I18n.get(""), JOptionPane.ERROR_MESSAGE);
+ return;
+ }
+ synchronized (fileTreeRoot) {
+ scanDirectory(fileTreeRoot, basePathDirectory);
+ }
+ fileTree.repaint();
+ }
+
+ private void scanDirectory(SortableTreeNode rootNode, File directory) {
+ System.out.println("scanning " + directory.getAbsolutePath());
+ for (File file: directory.listFiles()) {
+ SortableTreeNode fileNode = new SortableTreeNode(file.getName());
+ rootNode.add(fileNode);
+ if (file.isDirectory()) {
+ scanDirectory(fileNode, file);
+ }
+ }
+ rootNode.sort();
}
+
});
}