aboutsummaryrefslogtreecommitdiff
path: root/src/UI/Components/BooksList.java
blob: dfb21bf461c30608ff0f9e34661f972f202c7293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package UI.Components;

import Store.Book;

import javax.swing.*;
import javax.swing.border.EmptyBorder;
import java.sql.SQLException;
import java.util.ArrayList;

public class BooksList extends JPanel {
    private static JPanel listPanel;

    public BooksList() throws SQLException {
        listPanel = new JPanel();
        listPanel.setLayout(new BoxLayout(listPanel, BoxLayout.Y_AXIS));

        refreshBooks();

        JScrollPane scrollPane = new JScrollPane(listPanel);
        scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);

        this.add(scrollPane);

        this.setBorder(new EmptyBorder(4, 8, 8, 8));
        this.setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
    }

    public static void refreshBooks(ArrayList<Book> books) throws SQLException {
        new Thread(new Runnable() {
            @Override
            public void run() {
                listPanel.removeAll();

                for (Book book : books) {
                    listPanel.add(new BookListItem(book));
                }

                listPanel.revalidate();
                listPanel.repaint();
            }
        }).start();
    }

    public static void refreshBooks() throws SQLException {
        refreshBooks(Book.getAll(false));
    }
}