## Description - Enabled the rule `@typescript-eslint/no-explicit-any` - Suppressed errors with comment ``` // TODO: Fix this the next time the file is edited // eslint-disable-next-line @typescript-eslint/no-explicit-any ``` Fixes #35308 ## Automation /ok-to-test tags="@tag.All" ### 🔍 Cypress test results <!-- This is an auto-generated comment: Cypress test results --> > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: <https://github.com/appsmithorg/appsmith/actions/runs/10181176984> > Commit: 7fc604e24fa234da7ab2ff56e0b1c715268796ee > <a href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=10181176984&attempt=2" target="_blank">Cypress dashboard</a>. > Tags: `@tag.All` > Spec: > <hr>Wed, 31 Jul 2024 15:00:45 UTC <!-- end of auto-generated comment: Cypress test results --> ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [x] No
51 lines
1.9 KiB
TypeScript
51 lines
1.9 KiB
TypeScript
import React from "react";
|
|
import AdminConfig from "@appsmith/pages/AdminSettings/config";
|
|
import { Redirect, useParams } from "react-router";
|
|
import { SettingCategories } from "@appsmith/pages/AdminSettings/config/types";
|
|
import SettingsForm from "pages/AdminSettings/SettingsForm";
|
|
import { getWrapperCategory } from "@appsmith/utils/adminSettingsHelpers";
|
|
import { useSelector } from "react-redux";
|
|
import { getCurrentUser } from "selectors/usersSelectors";
|
|
import { getTenantPermissions } from "@appsmith/selectors/tenantSelectors";
|
|
import { useFeatureFlag } from "utils/hooks/useFeatureFlag";
|
|
import { FEATURE_FLAG } from "@appsmith/entities/FeatureFlag";
|
|
import { getAdminSettingsPath } from "@appsmith/utils/BusinessFeatures/adminSettingsHelpers";
|
|
|
|
const Main = () => {
|
|
// TODO: Fix this the next time the file is edited
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const params = useParams() as any;
|
|
const { category, selected: subCategory } = params;
|
|
const user = useSelector(getCurrentUser);
|
|
const tenantPermissions = useSelector(getTenantPermissions);
|
|
const isSuperUser = user?.isSuperUser || false;
|
|
const wrapperCategory = getWrapperCategory(
|
|
AdminConfig.wrapperCategories,
|
|
subCategory,
|
|
category,
|
|
);
|
|
const isFeatureEnabled = useFeatureFlag(FEATURE_FLAG.license_gac_enabled);
|
|
|
|
if (!!wrapperCategory?.component) {
|
|
const { component: WrapperCategoryComponent } = wrapperCategory;
|
|
return <WrapperCategoryComponent category={wrapperCategory} />;
|
|
} else if (
|
|
!Object.values(SettingCategories).includes(category) ||
|
|
(subCategory && !Object.values(SettingCategories).includes(subCategory))
|
|
) {
|
|
return (
|
|
<Redirect
|
|
to={getAdminSettingsPath(
|
|
isFeatureEnabled,
|
|
isSuperUser,
|
|
tenantPermissions,
|
|
)}
|
|
/>
|
|
);
|
|
} else {
|
|
return <SettingsForm />;
|
|
}
|
|
};
|
|
|
|
export default Main;
|