aboutsummaryrefslogtreecommitdiff
path: root/src/components/Guestbook.jsx
blob: 91e2a0f8c3648ceb5303a98855730b55185ee30a (plain) (blame)
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
48
49
import { h, Component } from 'preact';
import { pb } from '../services/pocketbase';
import { formatDate } from "../util";

class Guestbook extends Component {
    state = {
        message: null,
        error: null
    };

    async componentDidMount() {
        try {
            const message = await pb.collection('guestbook').getFullList({
                sort: '-created',
            });
            this.setState({ message });
        } catch (error) {
            this.setState({ error: `Failed to fetch data: ${error.message}` });
            console.error('Failed to fetch data:', error);
        }
    }

    render() {
        const { message, error } = this.state;

        if (error) {
            return <p>{error}</p>;
        }

        if (!message) {
            return <p>Loading messages...</p>;
        }

        return (
            <div>
                {message.map((g) => (
                    <article class="card">
                        <h1>Message from: {g.name}</h1>
                        <small>{formatDate(g.created)}</small>
                        <p>{g.message}</p>
                        {g.website && <a href={g.website}>Website</a>}
                    </article>
                ))}
            </div>
        );
    }
}

export default Guestbook;