misc_pterodactyl-panel/resources/scripts/components/server/features/PIDLimitModalFeature.tsx

107 lines
4.6 KiB
TypeScript
Raw Normal View History

2022-01-18 03:02:10 +00:00
import React, { useEffect, useState } from 'react';
import { ServerContext } from '@/state/server';
import Modal from '@/components/elements/Modal';
import tw from 'twin.macro';
import Button from '@/components/elements/Button';
import FlashMessageRender from '@/components/FlashMessageRender';
import useFlash from '@/plugins/useFlash';
import { SocketEvent } from '@/components/server/events';
import { useStoreState } from 'easy-peasy';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons';
const PIDLimitModalFeature = () => {
const [visible, setVisible] = useState(false);
const [loading] = useState(false);
2022-01-18 03:02:10 +00:00
const status = ServerContext.useStoreState((state) => state.status.value);
2022-01-18 03:02:10 +00:00
const { clearFlashes } = useFlash();
const { connected, instance } = ServerContext.useStoreState((state) => state.socket);
const isAdmin = useStoreState((state) => state.user.data!.rootAdmin);
2022-01-18 03:02:10 +00:00
useEffect(() => {
if (!connected || !instance || status === 'running') return;
const errors = [
'pthread_create failed',
'failed to create thread',
'unable to create thread',
2022-01-18 03:02:10 +00:00
'unable to create native thread',
'unable to create new native thread',
'exception in thread "craft async scheduler management thread"',
2022-01-18 03:02:10 +00:00
];
const listener = (line: string) => {
if (errors.some((p) => line.toLowerCase().includes(p))) {
2022-01-18 03:02:10 +00:00
setVisible(true);
}
};
instance.addListener(SocketEvent.CONSOLE_OUTPUT, listener);
return () => {
instance.removeListener(SocketEvent.CONSOLE_OUTPUT, listener);
};
}, [connected, instance, status]);
2022-01-18 03:02:10 +00:00
useEffect(() => {
clearFlashes('feature:pidLimit');
}, []);
return (
<Modal
visible={visible}
onDismissed={() => setVisible(false)}
closeOnBackground={false}
showSpinnerOverlay={loading}
>
2022-01-18 03:02:10 +00:00
<FlashMessageRender key={'feature:pidLimit'} css={tw`mb-4`} />
{isAdmin ? (
2022-01-18 03:02:10 +00:00
<>
<div css={tw`mt-4 sm:flex items-center`}>
<FontAwesomeIcon css={tw`pr-4`} icon={faExclamationTriangle} color={'orange'} size={'4x'} />
2022-01-18 03:02:10 +00:00
<h2 css={tw`text-2xl mb-4 text-neutral-100 `}>Memory or process limit reached...</h2>
</div>
<p css={tw`mt-4`}>This server has reached the maximum process or memory limit.</p>
<p css={tw`mt-4`}>
Increasing <code css={tw`font-mono bg-neutral-900`}>container_pid_limit</code> in the wings
configuration, <code css={tw`font-mono bg-neutral-900`}>config.yml</code>, might help resolve
this issue.
</p>
<p css={tw`mt-4`}>
<b>Note: Wings must be restarted for the configuration file changes to take effect</b>
</p>
2022-01-18 03:02:10 +00:00
<div css={tw`mt-8 sm:flex items-center justify-end`}>
<Button onClick={() => setVisible(false)} css={tw`w-full sm:w-auto border-transparent`}>
Close
</Button>
</div>
</>
) : (
2022-01-18 03:02:10 +00:00
<>
<div css={tw`mt-4 sm:flex items-center`}>
<FontAwesomeIcon css={tw`pr-4`} icon={faExclamationTriangle} color={'orange'} size={'4x'} />
2022-01-18 03:02:10 +00:00
<h2 css={tw`text-2xl mb-4 text-neutral-100`}>Possible resource limit reached...</h2>
</div>
<p css={tw`mt-4`}>
This server is attempting to use more resources than allocated. Please contact the administrator
and give them the error below.
</p>
<p css={tw`mt-4`}>
<code css={tw`font-mono bg-neutral-900`}>
pthread_create failed, Possibly out of memory or process/resource limits reached
</code>
</p>
2022-01-18 03:02:10 +00:00
<div css={tw`mt-8 sm:flex items-center justify-end`}>
<Button onClick={() => setVisible(false)} css={tw`w-full sm:w-auto border-transparent`}>
Close
</Button>
</div>
</>
)}
2022-01-18 03:02:10 +00:00
</Modal>
);
};
export default PIDLimitModalFeature;