1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-31 00:16:47 +01:00
unleash.unleash/frontend/src/component/application/ApplicationUpdate/ApplicationUpdate.tsx
Nuno Góis 4167a60588
feat: biome lint frontend (#4903)
Follows up on https://github.com/Unleash/unleash/pull/4853 to add Biome
to the frontend as well.


![image](https://github.com/Unleash/unleash/assets/14320932/1906faf1-fc29-4172-a4d4-b2716d72cd65)

Added a few `biome-ignore` to speed up the process but we may want to
check and fix them in the future.
2023-10-02 13:25:46 +01:00

86 lines
3.3 KiB
TypeScript

import { ChangeEvent, useState } from 'react';
import { Grid, TextField } from '@mui/material';
import { useThemeStyles } from 'themes/themeStyles';
import icons from 'component/application/iconNames';
import GeneralSelect from 'component/common/GeneralSelect/GeneralSelect';
import useApplicationsApi from 'hooks/api/actions/useApplicationsApi/useApplicationsApi';
import useToast from 'hooks/useToast';
import { IApplication } from 'interfaces/application';
import useApplication from 'hooks/api/getters/useApplication/useApplication';
import { formatUnknownError } from 'utils/formatUnknownError';
interface IApplicationUpdateProps {
application: IApplication;
}
export const ApplicationUpdate = ({ application }: IApplicationUpdateProps) => {
const { storeApplicationMetaData } = useApplicationsApi();
const { appName, icon, url, description } = application;
const { refetchApplication } = useApplication(appName);
const [localUrl, setLocalUrl] = useState(url || '');
const [localDescription, setLocalDescription] = useState(description || '');
const { setToastData, setToastApiError } = useToast();
const { classes: themeStyles } = useThemeStyles();
const onChange = async (
field: string,
value: string,
event?: ChangeEvent,
) => {
event?.preventDefault();
try {
await storeApplicationMetaData(appName, field, value);
refetchApplication();
setToastData({
type: 'success',
title: 'Updated Successfully',
text: `${field} successfully updated`,
});
} catch (error: unknown) {
setToastApiError(formatUnknownError(error));
}
};
return (
<Grid container style={{ marginTop: '1rem' }}>
<Grid item sm={12} xs={12} className={themeStyles.contentSpacingY}>
<Grid item>
<GeneralSelect
name='iconSelect'
id='selectIcon'
label='Icon'
options={icons.map((v) => ({ key: v, label: v }))}
value={icon || 'apps'}
onChange={(key) => onChange('icon', key)}
/>
</Grid>
<Grid item>
<TextField
value={localUrl}
onChange={(e) => setLocalUrl(e.target.value)}
label='Application URL'
placeholder='https://example.com'
type='url'
variant='outlined'
size='small'
onBlur={(e) => onChange('url', localUrl, e)}
/>
</Grid>
<Grid item>
<TextField
value={localDescription}
label='Description'
variant='outlined'
size='small'
rows={2}
onChange={(e) => setLocalDescription(e.target.value)}
onBlur={(e) =>
onChange('description', localDescription, e)
}
/>
</Grid>
</Grid>
</Grid>
);
};