eleven-solutions-common-website-unique-web 3.0.17 → 3.0.19

Sign up to get free protection for your applications and to get access to all the features.
@@ -131,7 +131,8 @@ const TaxonomyForm = () => {
131
131
  }
132
132
  });
133
133
  fetchIsMultiple();
134
- }, [type]);
134
+ // }, [type]);
135
+ }, []);
135
136
  const handleCancelClick = () => {
136
137
  setType("");
137
138
  setCode("");
@@ -225,7 +226,7 @@ const TaxonomyForm = () => {
225
226
  console.error("Error deleting Taxonomy:", error);
226
227
  }
227
228
  });
228
- return (_jsxs("div", { className: `${isEditMode && isMultiple ? "w-full" : "max-w-4xl"} p-6 mx-auto dark:bg-gray-800`, children: [_jsxs("div", { className: `transition duration-300 ${isModalOpen ? "filter blur-sm" : ""}`, children: [_jsx("h1", { className: "text-3xl font-bold text-center text-blue-600 capitalize dark:text-white mb-4", children: isEditMode ? "Edit Taxonomy" : "Add Taxonomy" }), _jsx("h1", { className: "text-2xl text-blue-600 capitalize dark:text-white mb-4", children: isEditMode ? `Taxonomy Type: ${type}` : "" }), _jsxs("form", { children: [!isEditMode && (_jsxs("div", { className: "mb-6 w-full", children: [_jsxs("label", { className: "text-gray-900 dark:text-gray-200 font-semibold", children: ["Type ", _jsx("span", { className: "text-red-500", children: "*" })] }), _jsx("input", { required: true, value: type, onChange: (e) => setType(e.target.value), type: "text", className: "w-full px-4 py-2 mt-2 text-gray-800 bg-white border border-gray-400 rounded-md dark:bg-gray-800 dark:text-gray-300 dark:border-gray-800 focus:border-blue-400 focus:ring-blue-300 focus:ring-opacity-40 dark:focus:border-blue-300 focus:outline-none focus:ring", placeholder: "Enter Type" })] })), _jsxs("div", { className: "mb-6 w-full", children: [_jsxs("label", { className: "text-gray-900 dark:text-gray-200 font-semibold", children: ["Code ", _jsx("span", { className: "text-red-500", children: "*" })] }), _jsx("input", { required: true, value: code, onChange: (e) => setCode(e.target.value === "" ? "" : Number(e.target.value)), type: "number", className: "w-full px-4 py-2 mt-2 text-gray-800 bg-white border border-gray-400 rounded-md dark:bg-gray-800 dark:text-gray-300 dark:border-gray-800 focus:border-blue-400 focus:ring-blue-300 focus:ring-opacity-40 dark:focus:border-blue-300 focus:outline-none focus:ring", placeholder: "Enter Code", disabled: similarTaxonomies.some((taxonomy) => taxonomy.isEdit === false) })] }), _jsxs("div", { className: "mb-6 w-full", children: [_jsxs("label", { className: "text-gray-900 dark:text-gray-200 font-semibold", children: ["Value ", _jsx("span", { className: "text-red-500", children: "*" })] }), _jsx("input", { required: true, value: value, onChange: (e) => setValue(e.target.value), type: "text", className: "w-full px-4 py-2 mt-2 text-gray-800 bg-white border border-gray-400 rounded-md dark:bg-gray-800 dark:text-gray-300 dark:border-gray-800 focus:border-blue-400 focus:ring-blue-300 focus:ring-opacity-40 dark:focus:border-blue-300 focus:outline-none focus:ring", placeholder: "Enter Value", disabled: similarTaxonomies.some((taxonomy) => taxonomy.isEdit === false) })] }), _jsxs("div", { className: "flex space-x-4 mt-6 justify-between", children: [_jsx("div", { children: isEditMode && (
229
+ return (_jsxs("div", { className: `${isEditMode && isMultiple ? "w-full" : "max-w-4xl"} p-6 mx-auto dark:bg-gray-800`, children: [_jsxs("div", { className: `transition duration-300 ${isModalOpen ? "filter blur-sm" : ""}`, children: [_jsx("h1", { className: "text-3xl font-bold text-center text-blue-600 capitalize dark:text-white mb-4", children: isEditMode ? "Edit Taxonomy" : "Add Taxonomy" }), _jsx("h1", { className: "text-2xl text-blue-600 capitalize dark:text-white mb-4", children: isEditMode ? `Taxonomy Type: ${type}` : "" }), !isMultiple && (_jsxs("form", { children: [!isEditMode && (_jsxs("div", { className: "mb-6 w-full", children: [_jsxs("label", { className: "text-gray-900 dark:text-gray-200 font-semibold", children: ["Type ", _jsx("span", { className: "text-red-500", children: "*" })] }), _jsx("input", { required: true, value: type, onChange: (e) => setType(e.target.value), type: "text", className: "w-full px-4 py-2 mt-2 text-gray-800 bg-white border border-gray-400 rounded-md dark:bg-gray-800 dark:text-gray-300 dark:border-gray-800 focus:border-blue-400 focus:ring-blue-300 focus:ring-opacity-40 dark:focus:border-blue-300 focus:outline-none focus:ring", placeholder: "Enter Type" })] })), _jsxs("div", { className: "mb-6 w-full", children: [_jsxs("label", { className: "text-gray-900 dark:text-gray-200 font-semibold", children: ["Code ", _jsx("span", { className: "text-red-500", children: "*" })] }), _jsx("input", { required: true, value: code, onChange: (e) => setCode(e.target.value === "" ? "" : Number(e.target.value)), type: "number", className: "w-full px-4 py-2 mt-2 text-gray-800 bg-white border border-gray-400 rounded-md dark:bg-gray-800 dark:text-gray-300 dark:border-gray-800 focus:border-blue-400 focus:ring-blue-300 focus:ring-opacity-40 dark:focus:border-blue-300 focus:outline-none focus:ring", placeholder: "Enter Code", disabled: similarTaxonomies.some((taxonomy) => taxonomy.isEdit === false) })] }), _jsxs("div", { className: "mb-6 w-full", children: [_jsxs("label", { className: "text-gray-900 dark:text-gray-200 font-semibold", children: ["Value ", _jsx("span", { className: "text-red-500", children: "*" })] }), _jsx("input", { required: true, value: value, onChange: (e) => setValue(e.target.value), type: "text", className: "w-full px-4 py-2 mt-2 text-gray-800 bg-white border border-gray-400 rounded-md dark:bg-gray-800 dark:text-gray-300 dark:border-gray-800 focus:border-blue-400 focus:ring-blue-300 focus:ring-opacity-40 dark:focus:border-blue-300 focus:outline-none focus:ring", placeholder: "Enter Value", disabled: similarTaxonomies.some((taxonomy) => taxonomy.isEdit === false) })] }), _jsxs("div", { className: "flex space-x-4 mt-6 justify-between", children: [_jsx("div", { children: isEditMode && (
229
230
  // <div>
230
231
  // {similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (
231
232
  // <button
@@ -244,7 +245,7 @@ const TaxonomyForm = () => {
244
245
  handleDeleteClick(id);
245
246
  window.location.href = "/admin/taxinomies";
246
247
  }, className: "px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600", children: "Delete" })) })) }), _jsxs("div", { className: "flex space-x-4 justify-end", children: [similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (_jsx("button", { type: "submit", onClick: handleSave, className: "px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600", children: isEditMode ? "Save" : "Add" })), !similarTaxonomies.some((taxonomy) => taxonomy.isEdit) &&
247
- !isEditMode && (_jsx("button", { type: "submit", onClick: handleSave, className: "px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600", children: isEditMode ? "Save" : "Add" })), _jsx("button", { onClick: handleCancelClick, type: "button", className: "px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600", children: "Cancel" })] })] })] }), isSimilarTaxonomyOpen && isMultiple && isEditMode && (_jsxs("div", { className: "flex-grow ml-0 mt-4 w-full", children: [_jsx("div", { className: "overflow-hidden border border-gray-200 dark:border-gray-700 md:rounded-lg mt-6", children: _jsxs("table", { className: "min-w-full divide-y divide-gray-200 dark:divide-gray-700", children: [_jsx("thead", { className: "bg-gray-50 dark:bg-gray-800", children: _jsxs("tr", { children: [similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (_jsx("th", { className: "px-4 py-3.5 text-md font-normal text-left rtl:text-right text-gray-500 dark:text-gray-400", children: "Actions" })), _jsx("th", { className: "px-4 py-3.5 text-md font-normal text-left rtl:text-right text-gray-500 dark:text-gray-400", children: "Code" }), _jsx("th", { className: "px-4 py-3.5 text-md font-normal text-left rtl:text-right text-gray-500 dark:text-gray-400", children: "Value" })] }) }), _jsx("tbody", { className: "divide-y divide-gray-200", children: similarTaxonomies.map((taxonomy, index) => (_jsxs("tr", { children: [similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (_jsx("td", { className: "px-4 py-4 text-sm whitespace-nowrap", children: _jsxs("div", { className: "flex items-center gap-x-6", children: [_jsx("button", { type: "button", onClick: () => handleDeleteClick(taxonomy.id), className: "text-gray-500 transition-colors duration-200 dark:hover:text-red-600 dark:text-gray-300 hover:text-red-500 focus:outline-none", children: _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", "stroke-width": "1.5", stroke: "currentColor", className: "w-5 h-5", children: _jsx("path", { "stroke-linecap": "round", "stroke-linejoin": "round", d: "M14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 01-2.244 2.077H8.084a2.25 2.25 0 01-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 00-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 013.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 00-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 00-7.5 0" }) }) }), _jsx("button", { type: "button", onClick: () => {
248
+ !isEditMode && (_jsx("button", { type: "submit", onClick: handleSave, className: "px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600", children: isEditMode ? "Save" : "Add" })), _jsx("button", { onClick: handleCancelClick, type: "button", className: "px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600", children: "Cancel" })] })] })] })), isSimilarTaxonomyOpen && isMultiple && isEditMode && (_jsxs("div", { className: "flex-grow ml-0 mt-4 w-full", children: [_jsx("div", { className: "overflow-hidden border border-gray-200 dark:border-gray-700 md:rounded-lg mt-6", children: _jsxs("table", { className: "min-w-full divide-y divide-gray-200 dark:divide-gray-700", children: [_jsx("thead", { className: "bg-gray-50 dark:bg-gray-800", children: _jsxs("tr", { children: [similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (_jsx("th", { className: "px-4 py-3.5 text-md font-normal text-left rtl:text-right text-gray-500 dark:text-gray-400", children: "Actions" })), _jsx("th", { className: "px-4 py-3.5 text-md font-normal text-left rtl:text-right text-gray-500 dark:text-gray-400", children: "Code" }), _jsx("th", { className: "px-4 py-3.5 text-md font-normal text-left rtl:text-right text-gray-500 dark:text-gray-400", children: "Value" })] }) }), _jsx("tbody", { className: "divide-y divide-gray-200", children: similarTaxonomies.map((taxonomy, index) => (_jsxs("tr", { children: [similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (_jsx("td", { className: "px-4 py-4 text-sm whitespace-nowrap", children: _jsxs("div", { className: "flex items-center gap-x-6", children: [_jsx("button", { type: "button", onClick: () => handleDeleteClick(taxonomy.id), className: "text-gray-500 transition-colors duration-200 dark:hover:text-red-600 dark:text-gray-300 hover:text-red-500 focus:outline-none", children: _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", "stroke-width": "1.5", stroke: "currentColor", className: "w-5 h-5", children: _jsx("path", { "stroke-linecap": "round", "stroke-linejoin": "round", d: "M14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 01-2.244 2.077H8.084a2.25 2.25 0 01-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 00-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 013.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 00-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 00-7.5 0" }) }) }), _jsx("button", { type: "button", onClick: () => {
248
249
  handleEditClick(index, taxonomy.id);
249
250
  }, className: "text-gray-500 transition-colors duration-200 dark:hover:text-yellow-500 dark:text-gray-300 hover:text-yellow-500 focus:outline-none", children: _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", "stroke-width": "1.5", stroke: "currentColor", className: "w-5 h-5", children: _jsx("path", { "stroke-linecap": "round", "stroke-linejoin": "round", d: "M16.862 4.487l1.687-1.688a1.875 1.875 0 112.652 2.652L10.582 16.07a4.5 4.5 0 01-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 011.13-1.897l8.932-8.931zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0115.75 21H5.25A2.25 2.25 0 013 18.75V8.25A2.25 2.25 0 015.25 6H10" }) }) })] }) })), _jsx("td", { className: "px-4 py-4 text-sm text-gray-500 dark:text-gray-400", children: taxonomy.code }), _jsx("td", { className: "px-4 py-4 text-sm font-medium text-gray-900 dark:text-white", children: taxonomy.value })] }, index))) })] }) }), similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (_jsx("div", { className: "flex space-x-4 mt-6 justify-start", children: _jsxs("button", { type: "button", onClick: handleOpenModal, className: "flex items-center justify-center px-6 py-2 font-medium tracking-wide text-white capitalize transition-colors duration-300 transform bg-blue-600 rounded-lg hover:bg-blue-500 focus:outline-none focus:ring focus:ring-blue-300 focus:ring-opacity-80", children: [_jsx(FaPlus, { className: "mr-2 font-medium" }), "Add Multiple Values"] }) }))] })), isEditMode && (_jsx(_Fragment, { children: tempTaxonomy.length > 0 && (_jsxs("div", { className: "flex-grow ml-0 mt-4 w-full", children: [_jsx("div", { className: "overflow-hidden border border-gray-200 dark:border-gray-700 md:rounded-lg mt-6", children: _jsxs("table", { className: "min-w-full divide-y divide-gray-200 dark:divide-gray-700", children: [_jsx("thead", { className: "bg-gray-50 dark:bg-gray-800", children: _jsxs("tr", { children: [_jsx("th", { scope: "col", className: "px-4 py-3.5 text-md font-normal text-left rtl:text-right text-gray-500 dark:text-gray-400", children: "Edit/Delete" }), _jsx("th", { scope: "col", className: "px-4 py-3.5 text-md font-normal text-left text-gray-500 dark:text-gray-400", children: "Code" }), _jsx("th", { scope: "col", className: "px-4 py-3.5 text-md font-normal text-left text-gray-500 dark:text-gray-400", children: "Value" })] }) }), _jsx("tbody", { className: "bg-white divide-y divide-gray-200 dark:bg-gray-800 dark:divide-gray-700", children: [...tempTaxonomy].map((item, index) => (_jsxs("tr", { children: [_jsx("td", { className: "px-4 py-4 text-sm whitespace-nowrap", children: _jsxs("div", { className: "flex items-center gap-x-6", children: [_jsx("button", { type: "button", onClick: () => {
250
251
  const newTempTaxonomy = [...tempTaxonomy];
@@ -63,27 +63,6 @@ export const fetchUserByIdApi = (userId) => __awaiter(void 0, void 0, void 0, fu
63
63
  return false;
64
64
  }
65
65
  });
66
- // export const deleteUserApi = async (id: string) => {
67
- // const token = cookies.get("token");
68
- // try {
69
- // const response = await axios.delete(`${apiUrl}/login/delete`, {
70
- // headers: {
71
- // Authorization: `Bearer ${token}`,
72
- // "Content-Type": "application/json",
73
- // },
74
- // // data: {
75
- // // id,
76
- // // },
77
- // params: {
78
- // id,
79
- // },
80
- // });
81
- // return response.data;
82
- // } catch (error) {
83
- // console.error("Error deleting lang:", error);
84
- // throw error;
85
- // }
86
- // };
87
66
  export const deleteUserApi = (id) => __awaiter(void 0, void 0, void 0, function* () {
88
67
  const token = cookies.get("token");
89
68
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eleven-solutions-common-website-unique-web",
3
- "version": "3.0.17",
3
+ "version": "3.0.19",
4
4
  "main": "./dist/index.js",
5
5
  "scripts": {
6
6
  "build": "tsc",
@@ -159,7 +159,8 @@ const TaxonomyForm = () => {
159
159
  };
160
160
 
161
161
  fetchIsMultiple();
162
- }, [type]);
162
+ // }, [type]);
163
+ }, []);
163
164
 
164
165
  const handleCancelClick = () => {
165
166
  setType("");
@@ -294,104 +295,94 @@ const TaxonomyForm = () => {
294
295
  {isEditMode ? `Taxonomy Type: ${type}` : ""}
295
296
  </h1>
296
297
 
297
- {/* {!isMultiple && ( */}
298
- <form>
299
- {!isEditMode && (
298
+ {!isMultiple && (
299
+ <form>
300
+ {!isEditMode && (
301
+ <div className="mb-6 w-full">
302
+ <label className="text-gray-900 dark:text-gray-200 font-semibold">
303
+ Type <span className="text-red-500">*</span>
304
+ </label>
305
+ <input
306
+ required
307
+ value={type}
308
+ onChange={(e) => setType(e.target.value)}
309
+ type="text"
310
+ className="w-full px-4 py-2 mt-2 text-gray-800 bg-white border border-gray-400 rounded-md dark:bg-gray-800 dark:text-gray-300 dark:border-gray-800 focus:border-blue-400 focus:ring-blue-300 focus:ring-opacity-40 dark:focus:border-blue-300 focus:outline-none focus:ring"
311
+ placeholder="Enter Type"
312
+ />
313
+ </div>
314
+ )}
315
+ <div className="mb-6 w-full">
316
+ <label className="text-gray-900 dark:text-gray-200 font-semibold">
317
+ Code <span className="text-red-500">*</span>
318
+ </label>
319
+ <input
320
+ required
321
+ value={code}
322
+ onChange={(e) =>
323
+ setCode(e.target.value === "" ? "" : Number(e.target.value))
324
+ }
325
+ type="number"
326
+ className="w-full px-4 py-2 mt-2 text-gray-800 bg-white border border-gray-400 rounded-md dark:bg-gray-800 dark:text-gray-300 dark:border-gray-800 focus:border-blue-400 focus:ring-blue-300 focus:ring-opacity-40 dark:focus:border-blue-300 focus:outline-none focus:ring"
327
+ placeholder="Enter Code"
328
+ disabled={similarTaxonomies.some(
329
+ (taxonomy) => taxonomy.isEdit === false
330
+ )}
331
+ />
332
+ </div>
300
333
  <div className="mb-6 w-full">
301
334
  <label className="text-gray-900 dark:text-gray-200 font-semibold">
302
- Type <span className="text-red-500">*</span>
335
+ Value <span className="text-red-500">*</span>
303
336
  </label>
304
337
  <input
305
338
  required
306
- value={type}
307
- onChange={(e) => setType(e.target.value)}
339
+ value={value}
340
+ onChange={(e) => setValue(e.target.value)}
308
341
  type="text"
309
342
  className="w-full px-4 py-2 mt-2 text-gray-800 bg-white border border-gray-400 rounded-md dark:bg-gray-800 dark:text-gray-300 dark:border-gray-800 focus:border-blue-400 focus:ring-blue-300 focus:ring-opacity-40 dark:focus:border-blue-300 focus:outline-none focus:ring"
310
- placeholder="Enter Type"
343
+ placeholder="Enter Value"
344
+ disabled={similarTaxonomies.some(
345
+ (taxonomy) => taxonomy.isEdit === false
346
+ )}
311
347
  />
312
348
  </div>
313
- )}
314
- <div className="mb-6 w-full">
315
- <label className="text-gray-900 dark:text-gray-200 font-semibold">
316
- Code <span className="text-red-500">*</span>
317
- </label>
318
- <input
319
- required
320
- value={code}
321
- onChange={(e) =>
322
- setCode(e.target.value === "" ? "" : Number(e.target.value))
323
- }
324
- type="number"
325
- className="w-full px-4 py-2 mt-2 text-gray-800 bg-white border border-gray-400 rounded-md dark:bg-gray-800 dark:text-gray-300 dark:border-gray-800 focus:border-blue-400 focus:ring-blue-300 focus:ring-opacity-40 dark:focus:border-blue-300 focus:outline-none focus:ring"
326
- placeholder="Enter Code"
327
- disabled={similarTaxonomies.some(
328
- (taxonomy) => taxonomy.isEdit === false
329
- )}
330
- />
331
- </div>
332
- <div className="mb-6 w-full">
333
- <label className="text-gray-900 dark:text-gray-200 font-semibold">
334
- Value <span className="text-red-500">*</span>
335
- </label>
336
- <input
337
- required
338
- value={value}
339
- onChange={(e) => setValue(e.target.value)}
340
- type="text"
341
- className="w-full px-4 py-2 mt-2 text-gray-800 bg-white border border-gray-400 rounded-md dark:bg-gray-800 dark:text-gray-300 dark:border-gray-800 focus:border-blue-400 focus:ring-blue-300 focus:ring-opacity-40 dark:focus:border-blue-300 focus:outline-none focus:ring"
342
- placeholder="Enter Value"
343
- disabled={similarTaxonomies.some(
344
- (taxonomy) => taxonomy.isEdit === false
345
- )}
346
- />
347
- </div>
348
349
 
349
- <div className="flex space-x-4 mt-6 justify-between">
350
- <div>
351
- {isEditMode && (
352
- // <div>
353
- // {similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (
354
- // <button
355
- // type="button"
356
- // onClick={() => {
357
- // handleDeleteClick(id);
358
- // navigate("/admin/taxonomy");
359
- // }}
360
- // className="px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600"
361
- // >
362
- // Delete
363
- // </button>
364
- // )}
365
- // </div>
366
- <div>
367
- {similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (
368
- <button
369
- type="button"
370
- onClick={() => {
371
- handleDeleteClick(id);
372
- window.location.href = "/admin/taxinomies";
373
- }}
374
- className="px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600"
375
- >
376
- Delete
377
- </button>
378
- )}
379
- </div>
380
- )}
381
- </div>
350
+ <div className="flex space-x-4 mt-6 justify-between">
351
+ <div>
352
+ {isEditMode && (
353
+ // <div>
354
+ // {similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (
355
+ // <button
356
+ // type="button"
357
+ // onClick={() => {
358
+ // handleDeleteClick(id);
359
+ // navigate("/admin/taxonomy");
360
+ // }}
361
+ // className="px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600"
362
+ // >
363
+ // Delete
364
+ // </button>
365
+ // )}
366
+ // </div>
367
+ <div>
368
+ {similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (
369
+ <button
370
+ type="button"
371
+ onClick={() => {
372
+ handleDeleteClick(id);
373
+ window.location.href = "/admin/taxinomies";
374
+ }}
375
+ className="px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600"
376
+ >
377
+ Delete
378
+ </button>
379
+ )}
380
+ </div>
381
+ )}
382
+ </div>
382
383
 
383
- <div className="flex space-x-4 justify-end">
384
- {similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (
385
- <button
386
- type="submit"
387
- onClick={handleSave}
388
- className="px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600"
389
- >
390
- {isEditMode ? "Save" : "Add"}
391
- </button>
392
- )}
393
- {!similarTaxonomies.some((taxonomy) => taxonomy.isEdit) &&
394
- !isEditMode && (
384
+ <div className="flex space-x-4 justify-end">
385
+ {similarTaxonomies.some((taxonomy) => taxonomy.isEdit) && (
395
386
  <button
396
387
  type="submit"
397
388
  onClick={handleSave}
@@ -400,17 +391,27 @@ const TaxonomyForm = () => {
400
391
  {isEditMode ? "Save" : "Add"}
401
392
  </button>
402
393
  )}
403
- <button
404
- onClick={handleCancelClick}
405
- type="button"
406
- className="px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600"
407
- >
408
- Cancel
409
- </button>
394
+ {!similarTaxonomies.some((taxonomy) => taxonomy.isEdit) &&
395
+ !isEditMode && (
396
+ <button
397
+ type="submit"
398
+ onClick={handleSave}
399
+ className="px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600"
400
+ >
401
+ {isEditMode ? "Save" : "Add"}
402
+ </button>
403
+ )}
404
+ <button
405
+ onClick={handleCancelClick}
406
+ type="button"
407
+ className="px-8 py-2.5 leading-5 text-white transition-colors duration-300 transform bg-blue-600 rounded-md hover:bg-blue-500 focus:outline-none focus:bg-gray-600"
408
+ >
409
+ Cancel
410
+ </button>
411
+ </div>
410
412
  </div>
411
- </div>
412
- </form>
413
- {/* )} */}
413
+ </form>
414
+ )}
414
415
 
415
416
  {/* Table for Displaying Similar Taxonomies */}
416
417
  {isSimilarTaxonomyOpen && isMultiple && isEditMode && (
@@ -70,29 +70,6 @@ export const fetchUserByIdApi = async (userId: string) => {
70
70
  }
71
71
  };
72
72
 
73
- // export const deleteUserApi = async (id: string) => {
74
- // const token = cookies.get("token");
75
-
76
- // try {
77
- // const response = await axios.delete(`${apiUrl}/login/delete`, {
78
- // headers: {
79
- // Authorization: `Bearer ${token}`,
80
- // "Content-Type": "application/json",
81
- // },
82
- // // data: {
83
- // // id,
84
- // // },
85
- // params: {
86
- // id,
87
- // },
88
- // });
89
- // return response.data;
90
- // } catch (error) {
91
- // console.error("Error deleting lang:", error);
92
- // throw error;
93
- // }
94
- // };
95
-
96
73
  export const deleteUserApi = async (id: string) => {
97
74
  const token = cookies.get("token");
98
75