* feat ui: dashboards redesign start * more cards * fix ui: more different cards... * feat ui: finish cards, all trigger, all icons * change(ui): added missin const * feature(ui): new dashboard modal * feature(ui): new dashboard modal * change(ui): new cards * change(ui): dashboard redesign * change(ui): dashboard redesign * change(ui): dashboard redesign * change(ui): modal context and alert form * change(ui): table card show more with modal * change(ui): examples * change(ui): example categorize and other improvements * change(ui): example categorize and other improvements * change(ui): performance cards * change(ui): insights card * Various style updates in dashboards and other pages. (#2308) * Various minor style updates * Various style improvements * Update ExampleCards.tsx * change(ui): fixed an issue with card create * change(ui): fixed an issue with card create * change(ui): default filters and events order * change(ui): random data * Dashboards redesign - improvments (#2313) * Various minor style updates * Various style improvements * Update ExampleCards.tsx * various minor improvements in dashbaords. * revised dashboard widget header * change(ui): sessions by user * change(ui): funnel example * change(ui): modal height and scroll * change(ui): example cards with data * change(ui): example cards with data * change(ui): funnel bar text color * change(ui): example cards overlay click * change(ui): path analysis filter card --------- Co-authored-by: Shekar Siri <sshekarsiri@gmail.com> Co-authored-by: Sudheer Salavadi <connect.uxmaster@gmail.com>
72 lines
2.5 KiB
TypeScript
72 lines
2.5 KiB
TypeScript
import React, { useEffect } from 'react';
|
|
import ModuleCard from 'Components/Client/Modules/ModuleCard';
|
|
import { modules as list } from './';
|
|
import withPageTitle from 'HOCs/withPageTitle';
|
|
import { connect } from 'react-redux';
|
|
import { userService } from 'App/services';
|
|
import { toast } from 'react-toastify';
|
|
import { updateModule } from 'Duck/user';
|
|
|
|
interface Props {
|
|
modules: string[];
|
|
updateModule: (moduleKey: string) => void;
|
|
isEnterprise: boolean;
|
|
}
|
|
|
|
function Modules(props: Props) {
|
|
const { modules } = props;
|
|
const [modulesState, setModulesState, isEnterprise = false] = React.useState<any[]>([]);
|
|
|
|
const onToggle = async (module: any) => {
|
|
try {
|
|
const isEnabled = !module.isEnabled;
|
|
module.isEnabled = isEnabled;
|
|
setModulesState((prevState) => [...prevState]);
|
|
await userService.saveModules({
|
|
module: module.key,
|
|
status: isEnabled,
|
|
});
|
|
props.updateModule(module.key);
|
|
toast.success(`Module ${module.label} ${!isEnabled ? 'enabled' : 'disabled'}`);
|
|
} catch (err) {
|
|
console.error(err);
|
|
toast.error(`Failed to ${module.isEnabled ? 'disable' : 'enable'} module ${module.label}`);
|
|
module.isEnabled = !module.isEnabled;
|
|
setModulesState((prevState) => [...prevState]);
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
list.forEach((module) => {
|
|
module.isEnabled = modules.includes(module.key);
|
|
});
|
|
setModulesState(list.filter((module) => !module.hidden && (!module.enterprise || isEnterprise)));
|
|
}, [modules]);
|
|
|
|
|
|
return (
|
|
<div>
|
|
<div className='bg-white rounded-lg border shadow-sm p-4'>
|
|
<h3 className='text-2xl'>Modules</h3>
|
|
<ul className='mt-3 ml-4 list-disc'>
|
|
<li>OpenReplay's modules are a collection of advanced features that provide enhanced functionality.</li>
|
|
<li>Easily enable any desired module within the user interface to access its capabilities</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div className='mt-4 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-3'>
|
|
{modulesState.map((module) => (
|
|
<div key={module.key} className='flex flex-col h-full'>
|
|
<ModuleCard module={module} onToggle={onToggle} />
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
|
|
export default withPageTitle('Modules - OpenReplay Preferences')(connect((state: any) => ({
|
|
modules: state.getIn(['user', 'account', 'settings', 'modules']) || [],
|
|
isEnterprise: state.getIn(['user', 'account', 'edition']) === 'ee'
|
|
}), { updateModule })(Modules));
|