chore(pm): migrate pm to system settings (#1566)
Co-authored-by: sealday <sealday@gmail.com> Reviewed-on: daoyoucloud/tachybase#1566
This commit is contained in:
parent
943c4cd954
commit
b7ee485cd1
@ -341,7 +341,6 @@ export class BuiltInPlugin extends Plugin {
|
|||||||
ui: { order: 50, component: 'DesignableSwitch', pin: true, snippet: 'ui.*' },
|
ui: { order: 50, component: 'DesignableSwitch', pin: true, snippet: 'ui.*' },
|
||||||
wf: { order: 100, component: 'WorkflowLink', pin: true, snippet: 'pm.*' },
|
wf: { order: 100, component: 'WorkflowLink', pin: true, snippet: 'pm.*' },
|
||||||
ds: { order: 200, component: 'DatasourceLink', pin: true, snippet: 'pm.*' },
|
ds: { order: 200, component: 'DatasourceLink', pin: true, snippet: 'pm.*' },
|
||||||
pm: { order: 300, component: 'PluginManagerLink', pin: true, snippet: 'pm' },
|
|
||||||
sc: { order: 400, component: 'SettingsCenterDropdown', pin: true, snippet: 'pm.*' },
|
sc: { order: 400, component: 'SettingsCenterDropdown', pin: true, snippet: 'pm.*' },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import React, { useEffect, useMemo, useState } from 'react';
|
import React, { useMemo, useState } from 'react';
|
||||||
import { fuzzysearch } from '@tachybase/utils/client';
|
import { fuzzysearch } from '@tachybase/utils/client';
|
||||||
|
|
||||||
import { PageHeader } from '@ant-design/pro-layout';
|
|
||||||
import { useDebounce } from 'ahooks';
|
import { useDebounce } from 'ahooks';
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
@ -350,25 +349,10 @@ const MarketplacePlugins = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const PluginManager = () => {
|
export const PluginManager = () => {
|
||||||
const params = useParams();
|
|
||||||
const navigate = useNavigate();
|
|
||||||
const { tabName = 'local' } = params;
|
|
||||||
const { t } = useTranslation();
|
|
||||||
const { snippets = [] } = useACLRoleContext();
|
const { snippets = [] } = useACLRoleContext();
|
||||||
const { styles } = useStyles();
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const { tabName } = params;
|
|
||||||
if (!tabName) {
|
|
||||||
navigate(`/admin/pm/list/local/`, { replace: true });
|
|
||||||
}
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return snippets.includes('pm') ? (
|
return snippets.includes('pm') ? (
|
||||||
<div>
|
|
||||||
<PageHeader className={styles.pageHeader} ghost={false} title={t('Plugin manager')}></PageHeader>
|
|
||||||
<LocalPlugins />
|
<LocalPlugins />
|
||||||
</div>
|
|
||||||
) : (
|
) : (
|
||||||
<Result status="404" title="404" subTitle="Sorry, the page you visited does not exist." />
|
<Result status="404" title="404" subTitle="Sorry, the page you visited does not exist." />
|
||||||
);
|
);
|
||||||
|
@ -9,24 +9,6 @@ import { useApp } from '../../application';
|
|||||||
import { useCompile } from '../../schema-component';
|
import { useCompile } from '../../schema-component';
|
||||||
import { useToken } from '../../style';
|
import { useToken } from '../../style';
|
||||||
|
|
||||||
export const PluginManagerLink = () => {
|
|
||||||
const { t } = useTranslation();
|
|
||||||
const navigate = useNavigate();
|
|
||||||
const { token } = useToken();
|
|
||||||
return (
|
|
||||||
<Tooltip title={t('Plugin manager')}>
|
|
||||||
<Button
|
|
||||||
data-testid={'plugin-manager-button'}
|
|
||||||
icon={<ApiOutlined style={{ color: token.colorTextHeaderMenu }} />}
|
|
||||||
title={t('Plugin manager')}
|
|
||||||
onClick={() => {
|
|
||||||
navigate('/admin/pm/list');
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</Tooltip>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export const SettingsCenterDropdown = () => {
|
export const SettingsCenterDropdown = () => {
|
||||||
const compile = useCompile();
|
const compile = useCompile();
|
||||||
const { token } = useToken();
|
const { token } = useToken();
|
||||||
|
@ -2,11 +2,10 @@ import React from 'react';
|
|||||||
|
|
||||||
import { ADMIN_SETTINGS_PATH } from '../../application';
|
import { ADMIN_SETTINGS_PATH } from '../../application';
|
||||||
import { Plugin } from '../../application/Plugin';
|
import { Plugin } from '../../application/Plugin';
|
||||||
import { USER_SETTINGS_PATH } from '../../application/UserSettingsManager';
|
|
||||||
import { BlockTemplatesPane } from '../../schema-templates';
|
import { BlockTemplatesPane } from '../../schema-templates';
|
||||||
import { SystemSettingsPane } from '../system-settings';
|
import { SystemSettingsPane } from '../system-settings';
|
||||||
import { PluginManager } from './PluginManager';
|
import { PluginManager } from './PluginManager';
|
||||||
import { DatasourceLink, PluginManagerLink, SettingsCenterDropdown, WorkflowLink } from './PluginManagerLink';
|
import { SettingsCenterDropdown } from './PluginManagerLink';
|
||||||
import { AdminSettingsLayout } from './PluginSetting';
|
import { AdminSettingsLayout } from './PluginSetting';
|
||||||
|
|
||||||
export * from './PluginManager';
|
export * from './PluginManager';
|
||||||
@ -33,11 +32,16 @@ export class PMPlugin extends Plugin {
|
|||||||
Component: SystemSettingsPane,
|
Component: SystemSettingsPane,
|
||||||
aclSnippet: 'pm.system-settings.system-settings',
|
aclSnippet: 'pm.system-settings.system-settings',
|
||||||
});
|
});
|
||||||
|
this.app.pluginSettingsManager.add('plugin-manager', {
|
||||||
|
icon: 'ApiOutlined',
|
||||||
|
title: '{{t("Plugin manager")}}',
|
||||||
|
Component: PluginManager,
|
||||||
|
aclSnippet: 'pm',
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
addComponents() {
|
addComponents() {
|
||||||
this.app.addComponents({
|
this.app.addComponents({
|
||||||
PluginManagerLink,
|
|
||||||
SettingsCenterDropdown,
|
SettingsCenterDropdown,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user