Files
pwap/web/src/components/perwerde/CourseCreator.tsx
T
pezkuwichain 4f683538d3 feat: complete i18n support for all components (6 languages)
Add full internationalization across 127+ components and pages.
790+ translation keys in en, tr, kmr, ckb, ar, fa locales.
Remove duplicate keys and delete unused .json locale files.
2026-02-22 04:48:20 +03:00

123 lines
4.2 KiB
TypeScript

import React, { useState } from 'react';
import { useTranslation } from 'react-i18next';
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Textarea } from '@/components/ui/textarea';
import { Label } from '@/components/ui/label';
import { usePezkuwi } from '@/contexts/PezkuwiContext';
import { toast } from 'sonner';
import { createCourse } from '@shared/lib/perwerde';
import { uploadToIPFS } from '@shared/lib/ipfs';
import { Loader2 } from 'lucide-react';
interface CourseCreatorProps {
onCourseCreated: () => void;
}
export function CourseCreator({ onCourseCreated }: CourseCreatorProps) {
const { t } = useTranslation();
const { api, selectedAccount } = usePezkuwi();
const [name, setName] = useState('');
const [description, setDescription] = useState('');
const [content, setContent] = useState('');
const [loading, setLoading] = useState(false);
const handleCreateCourse = async () => {
if (!api || !selectedAccount) {
toast.error(t('courseCreator.connectWallet'));
return;
}
if (!name || !description || !content) {
toast.error(t('courseCreator.fillAllFields'));
return;
}
setLoading(true);
try {
// 1. Upload content to IPFS
const blob = new Blob([content], { type: 'text/markdown' });
const file = new File([blob], 'course-content.md', { type: 'text/markdown' });
let ipfsHash: string;
try {
ipfsHash = await uploadToIPFS(file);
toast.success(`Content uploaded: ${ipfsHash.slice(0, 10)}...`);
} catch {
toast.error('IPFS upload failed');
return; // STOP - don't call blockchain
}
// 2. Create course on blockchain
await createCourse(api, selectedAccount, name, description, ipfsHash);
// 3. Reset form
onCourseCreated();
setName('');
setDescription('');
setContent('');
} catch (error) {
if (import.meta.env.DEV) console.error('Failed to create course:', error);
// toast already shown in createCourse()
} finally {
setLoading(false);
}
};
return (
<Card className="bg-gray-900 border-gray-800">
<CardHeader>
<CardTitle className="text-white">{t('courseCreator.title')}</CardTitle>
<CardDescription>{t('courseCreator.subtitle')}</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="space-y-2">
<Label htmlFor="name" className="text-white">{t('courseCreator.courseName')}</Label>
<Input
id="name"
value={name}
onChange={(e) => setName(e.target.value)}
placeholder={t('courseCreator.courseNamePlaceholder')}
className="bg-gray-800 border-gray-700 text-white"
/>
</div>
<div className="space-y-2">
<Label htmlFor="description" className="text-white">{t('courseCreator.courseDesc')}</Label>
<Textarea
id="description"
value={description}
onChange={(e) => setDescription(e.target.value)}
placeholder={t('courseCreator.courseDescPlaceholder')}
className="bg-gray-800 border-gray-700 text-white"
/>
</div>
<div className="space-y-2">
<Label htmlFor="content" className="text-white">{t('courseCreator.courseContent')}</Label>
<Textarea
id="content"
value={content}
onChange={(e) => setContent(e.target.value)}
placeholder={t('courseCreator.courseContentPlaceholder')}
className="bg-gray-800 border-gray-700 text-white h-48"
/>
</div>
<Button
onClick={handleCreateCourse}
disabled={loading || !selectedAccount}
className="w-full bg-green-600 hover:bg-green-700"
>
{loading ? (
<>
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
{t('courseCreator.creating')}
</>
) : (
t('courseCreator.createBtn')
)}
</Button>
</CardContent>
</Card>
);
}