lms/resources/js/pages/dashboard/settings/partials/sslcommerz.tsx
2025-12-15 12:26:23 +01:00

121 lines
5.2 KiB
TypeScript

import InputError from '@/components/input-error';
import LoadingButton from '@/components/loading-button';
import Switch from '@/components/switch';
import { Card } from '@/components/ui/card';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
import sslcommerzCurrency from '@/data/currencies/sslcommerz';
import { onHandleChange } from '@/lib/inertia';
import { SharedData } from '@/types/global';
import { useForm, usePage } from '@inertiajs/react';
interface SSLCommerzProps {
payment: Settings<SSLCommerzFields>;
}
const SSLCommerz = ({ payment }: SSLCommerzProps) => {
const { props } = usePage<SharedData>();
const { translate } = props;
const { settings, input, button, common } = translate;
const { data, setData, post, errors, processing } = useForm({
...(payment.fields as SSLCommerzFields),
type: 'sslcommerz',
});
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
post(route('settings.payment.update', { id: payment.id }));
};
return (
<Card className="p-4 sm:p-6">
<div className="mb-6 flex items-center justify-between">
<div>
<h2 className="text-xl font-semibold">{settings.sslcommerz_settings}</h2>
<p className="text-gray-500">{settings.configure_payment_gateway.replace(':gateway', 'SSLCommerz')}</p>
</div>
<div className="flex items-center space-x-2">
<Label htmlFor="status">{data.active ? common.enabled : common.disabled}</Label>
<Switch id="status" checked={data.active} onCheckedChange={(checked) => setData('active', checked)} />
</div>
</div>
<form onSubmit={handleSubmit} className="space-y-6">
<div className="grid grid-cols-1 gap-6 md:grid-cols-2">
<div>
<Label>{input.currency}</Label>
<Select value={data.currency} onValueChange={(value) => setData('currency', value)}>
<SelectTrigger>
<SelectValue placeholder={input.currency} />
</SelectTrigger>
<SelectContent>
{sslcommerzCurrency.map((currency) => (
<SelectItem key={currency.value} value={currency.value}>
{currency.label} ({currency.value})
</SelectItem>
))}
</SelectContent>
</Select>
<InputError message={errors.currency} />
</div>
<div className="flex items-center space-x-2">
<span className="text-sm font-medium">{settings.test_mode}:</span>
<Switch id="status" checked={data.test_mode} onCheckedChange={(checked) => setData('test_mode', checked)} />
<Label htmlFor="status" className="text-gray-500">
{data.test_mode ? settings.using_test_environment : settings.using_live_environment}
</Label>
</div>
</div>
{/* API Credentials Section */}
<div className="border-b pb-6">
<h3 className="mb-4 text-lg font-medium">{settings.api_credentials}</h3>
<div className="grid grid-cols-1 gap-6 md:grid-cols-2">
<div>
<Label>{input.store_id}</Label>
<Input
name="store_id"
value={data.store_id || ''}
onChange={(e) => onHandleChange(e, setData)}
placeholder={input.store_id_placeholder}
/>
<InputError message={errors.store_id} />
<p className="mt-1 text-sm text-gray-500">
{data.test_mode
? settings.use_test_mode_key.replace(':key', 'store ID')
: settings.use_live_mode_key.replace(':key', 'store ID')}
</p>
</div>
<div>
<Label>{input.store_password}</Label>
<Input
name="store_password"
value={data.store_password || ''}
onChange={(e) => onHandleChange(e, setData)}
placeholder={input.store_password_placeholder}
type="password"
/>
<InputError message={errors.store_password} />
<p className="mt-1 text-sm text-gray-500">
{data.test_mode
? settings.use_test_mode_key.replace(':key', 'store password')
: settings.use_live_mode_key.replace(':key', 'store password')}
</p>
</div>
</div>
</div>
<LoadingButton loading={processing} type="submit" className="w-full">
{button.save_changes}
</LoadingButton>
</form>
</Card>
);
};
export default SSLCommerz;