@appcorp/fusion-storybook 0.1.70 → 0.1.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -414,7 +414,9 @@ export const useCampusModule = () => {
|
|
|
414
414
|
return;
|
|
415
415
|
(async () => {
|
|
416
416
|
try {
|
|
417
|
-
const { count, items } = await getCachedCampuses({
|
|
417
|
+
const { count, items } = await getCachedCampuses({
|
|
418
|
+
params: listParams,
|
|
419
|
+
});
|
|
418
420
|
dispatch({
|
|
419
421
|
type: CAMPUS_ACTION_TYPES.SET_ITEMS,
|
|
420
422
|
payload: { items: items || [], count: count || 0 },
|
|
@@ -11,7 +11,7 @@ import { useCampusModule } from "./context";
|
|
|
11
11
|
import { useTranslations } from "next-intl";
|
|
12
12
|
export const CampusForm = () => {
|
|
13
13
|
const { state, handleChange } = useCampusModule();
|
|
14
|
-
const { address, city, code, country, enabled, errors, name, phone, state: campusState } = state;
|
|
14
|
+
const { address, city, code, country, enabled, errors, name, phone, state: campusState, } = state;
|
|
15
15
|
const t = useTranslations("campus");
|
|
16
16
|
return (_jsx("div", { className: "space-y-4", children: _jsxs("div", { className: "grid grid-cols-1 gap-4", children: [_jsx(EnhancedInput, { error: errors.name, id: "name", info: t("campusNameInfo"), label: t("campusName"), onChange: (e) => handleChange("name", e.target.value), placeholder: t("campusNamePlaceholder"), required: true, value: name }), _jsx(EnhancedInput, { error: errors.code, id: "code", info: t("campusCodeInfo"), label: t("campusCode"), onChange: (e) => handleChange("code", e.target.value), placeholder: t("campusCodePlaceholder"), required: true, value: code }), _jsx(EnhancedInput, { error: errors.address, id: "address", label: t("address"), onChange: (e) => handleChange("address", e.target.value), placeholder: t("addressPlaceholder"), value: address || "" }), _jsxs("div", { className: "grid grid-cols-2 gap-4", children: [_jsx(EnhancedInput, { error: errors.city, id: "city", label: t("city"), onChange: (e) => handleChange("city", e.target.value), placeholder: t("cityPlaceholder"), value: city || "" }), _jsx(EnhancedInput, { error: errors.state, id: "state", label: t("state"), onChange: (e) => handleChange("state", e.target.value), placeholder: t("statePlaceholder"), value: campusState || "" })] }), _jsxs("div", { className: "grid grid-cols-2 gap-4", children: [_jsx(EnhancedInput, { error: errors.country, id: "country", label: t("country"), onChange: (e) => handleChange("country", e.target.value), placeholder: t("countryPlaceholder"), value: country || "" }), _jsx(EnhancedInput, { error: errors.phone, id: "phone", label: t("phone"), onChange: (e) => handleChange("phone", e.target.value), placeholder: t("phonePlaceholder"), value: phone || "" })] }), _jsx(EnhancedCheckbox, { label: t("activeCampus"), defaultChecked: enabled, onCheckedChange: (checked) => handleChange("enabled", checked) })] }) }));
|
|
17
17
|
};
|