blob: 1a1e9087d80c4d20b70e3981b38fca5747c5068a (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
import { Suspense } from 'react';
import { fetchWordsByToneAndSyllables } from '@/actions/tones';
import ToneSelectorClient from '@/components/tones/ToneSelectorClient';
import { Skeleton } from '@/components/ui/skeleton'; // For Suspense fallback
export const getConfig = async () => {
return {
render: 'static', // Or 'dynamic' if you prefer SSR for every request
};
};
// Function to fetch the initial word on the server
async function InitialWordLoader() {
// Fetch a random 1-syllable Thai word with any tone initially
const initialWord = await fetchWordsByToneAndSyllables(1, [null]);
return <ToneSelectorClient initialWord={initialWord} />;
}
// Loading fallback component
function TonePageSkeleton() {
return (
<div className="container mx-auto p-4 max-w-2xl">
<div className="mb-6 p-6 border rounded-lg shadow">
<Skeleton className="h-8 w-1/2 mb-4" />
<Skeleton className="h-6 w-3/4 mb-6" />
<div className="space-y-6">
<div>
<Skeleton className="h-6 w-1/4 mb-2" />
<Skeleton className="h-10 w-full md:w-1/2" />
</div>
<div>
<Skeleton className="h-6 w-1/4 mb-2" />
<Skeleton className="h-10 w-full md:w-1/2" />
</div>
</div>
<Skeleton className="h-10 w-full md:w-1/4 mt-6" />
</div>
<div className="p-6 border rounded-lg shadow">
<Skeleton className="h-8 w-1/3 mx-auto mb-4" />
<Skeleton className="h-24 w-3/4 mx-auto mb-4" />
<Skeleton className="h-6 w-1/2 mx-auto" />
</div>
</div>
);
}
export default function TonesPage() {
return (
<div className="py-8">
<Suspense fallback={<TonePageSkeleton />}>
<InitialWordLoader />
</Suspense>
</div>
);
}
export const metadata = {
title: 'Thai Tone Explorer',
description: 'Explore Thai words by syllable count and tones.',
};
|