mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
e50b23d081
* chore(js): be stricter about dead code warnings * chore(js): remove dead code and unused exports * rebase * chore: remove unused files * chore(deps): remove unused prop-types dep * chore(js): remove unused function * chore(deps): remove + check unused deps * chore(js): remove unused exports. Closes #3036
80 lines
2 KiB
TypeScript
80 lines
2 KiB
TypeScript
import dynamic from 'next/dynamic';
|
|
|
|
// Lazy loaded components
|
|
|
|
const CheckCircleFilled = dynamic(() => import('@ant-design/icons/CheckCircleFilled'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const ExclamationCircleFilled = dynamic(() => import('@ant-design/icons/ExclamationCircleFilled'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const LoadingOutlined = dynamic(() => import('@ant-design/icons/LoadingOutlined'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const WarningOutlined = dynamic(() => import('@ant-design/icons/WarningOutlined'), {
|
|
ssr: false,
|
|
});
|
|
|
|
export const STATUS_ERROR = 'error';
|
|
export const STATUS_PROCESSING = 'proessing';
|
|
export const STATUS_SUCCESS = 'success';
|
|
export const STATUS_WARNING = 'warning';
|
|
|
|
const STATUS_INVALID = 'invalid';
|
|
|
|
export type InputStatusTypes = 'error' | 'invalid' | 'proessing' | 'success' | 'warning';
|
|
|
|
export interface StatusState {
|
|
type: InputStatusTypes;
|
|
icon: any; // Element type of sorts?
|
|
message: string;
|
|
}
|
|
interface InputStates {
|
|
[key: string]: StatusState;
|
|
}
|
|
|
|
const INPUT_STATES: InputStates = {
|
|
[STATUS_SUCCESS]: {
|
|
type: STATUS_SUCCESS,
|
|
icon: <CheckCircleFilled style={{ color: 'green' }} />,
|
|
message: 'Success!',
|
|
},
|
|
[STATUS_ERROR]: {
|
|
type: STATUS_ERROR,
|
|
icon: <ExclamationCircleFilled style={{ color: 'red' }} />,
|
|
message: 'An error occurred.',
|
|
},
|
|
[STATUS_INVALID]: {
|
|
type: STATUS_INVALID,
|
|
icon: <ExclamationCircleFilled style={{ color: 'red' }} />,
|
|
message: 'An error occurred.',
|
|
},
|
|
[STATUS_PROCESSING]: {
|
|
type: STATUS_PROCESSING,
|
|
icon: <LoadingOutlined />,
|
|
message: '',
|
|
},
|
|
[STATUS_WARNING]: {
|
|
type: STATUS_WARNING,
|
|
icon: <WarningOutlined style={{ color: '#fc0' }} />,
|
|
message: '',
|
|
},
|
|
};
|
|
|
|
// Don't like any of the default messages in INPUT_STATES? Create a state with custom message by providing an icon style with your message.
|
|
export function createInputStatus(type: InputStatusTypes, message?: string): StatusState {
|
|
if (!type || !INPUT_STATES[type]) {
|
|
return null;
|
|
}
|
|
if (!message) {
|
|
return INPUT_STATES[type];
|
|
}
|
|
return {
|
|
type,
|
|
icon: INPUT_STATES[type].icon,
|
|
message,
|
|
};
|
|
}
|