misc_pterodactyl-panel/resources/scripts/components/FlashMessageRender.tsx

39 lines
1.1 KiB
TypeScript
Raw Normal View History

import React from 'react';
import MessageBox from '@/components/MessageBox';
import { State, useStoreState } from 'easy-peasy';
import { ApplicationStore } from '@/state';
type Props = Readonly<{
byKey?: string;
2019-06-16 23:57:57 +00:00
spacerClass?: string;
2019-07-17 05:15:14 +00:00
className?: string;
}>;
2019-07-17 05:15:14 +00:00
export default ({ className, spacerClass, byKey }: Props) => {
const flashes = useStoreState((state: State<ApplicationStore>) => state.flashes.items);
let filtered = flashes;
if (byKey) {
filtered = flashes.filter(flash => flash.key === byKey);
}
if (filtered.length === 0) {
return null;
}
return (
2019-07-17 05:15:14 +00:00
<div className={className}>
{
filtered.map((flash, index) => (
<React.Fragment key={flash.id || flash.type + flash.message}>
{index > 0 && <div className={spacerClass || 'mt-2'}></div>}
<MessageBox type={flash.type} title={flash.title}>
{flash.message}
</MessageBox>
</React.Fragment>
))
}
</div>
);
};