| | |
| | | Button, |
| | | TextField, |
| | | Stack, |
| | | Autocomplete |
| | | Autocomplete, |
| | | InputAdornment, |
| | | IconButton, |
| | | } from '@mui/material'; |
| | | import { |
| | | useTranslate, |
| | |
| | | useNotify, |
| | | } from 'react-admin'; |
| | | import { useForm, Controller } from 'react-hook-form'; |
| | | import ProviderChoices from "./ProviderChoices"; |
| | | import Visibility from '@mui/icons-material/Visibility'; |
| | | import VisibilityOff from '@mui/icons-material/VisibilityOff'; |
| | | |
| | | const Login = (props) => { |
| | | const translate = useTranslate(); |
| | |
| | | const { control, watch, handleSubmit, setValue } = useForm(); |
| | | |
| | | const [loading, setLoading] = useState(false); |
| | | const [showPassword, setShowPassword] = useState(false); |
| | | |
| | | const username = watch('username'); |
| | | const password = watch('password'); |
| | |
| | | |
| | | useEffect(() => { |
| | | if (tenantList.length > 0 && !tenantId) { |
| | | setValue('tenantId', tenantList[0].id); |
| | | const rememberTenantId = localStorage.getItem('remember_tenantId'); |
| | | if (rememberTenantId && tenantList.some(t => t.id === Number(rememberTenantId))) { |
| | | setValue('tenantId', Number(rememberTenantId)); |
| | | } else { |
| | | setValue('tenantId', tenantList[0].id); |
| | | } |
| | | } |
| | | }, [tenantList, setValue]); |
| | | |
| | |
| | | getOptionLabel={(option) => option.name} |
| | | value={selectedTenant} |
| | | onChange={(_, newValue) => { |
| | | onChange(newValue ? newValue.id : ''); |
| | | const newTenantId = newValue ? newValue.id : ''; |
| | | onChange(newTenantId); |
| | | localStorage.setItem('remember_tenantId', newTenantId); |
| | | }} |
| | | renderInput={(params) => ( |
| | | <TextField |
| | |
| | | variant="standard" |
| | | disabled={loading} |
| | | autoFocus |
| | | autoComplete="off" |
| | | /> |
| | | )} |
| | | /> |
| | |
| | | <TextField |
| | | {...field} |
| | | label={translate('ra.auth.password')} |
| | | type="password" |
| | | type={showPassword ? 'text' : 'password'} |
| | | variant="standard" |
| | | disabled={loading} |
| | | |
| | | autoComplete="off" |
| | | InputProps={{ |
| | | endAdornment: ( |
| | | <InputAdornment position="end"> |
| | | <IconButton |
| | | aria-label="toggle password visibility" |
| | | onClick={() => setShowPassword((show) => !show)} |
| | | onMouseDown={(event) => { event.preventDefault() }} |
| | | edge="end" |
| | | > |
| | | {showPassword ? <VisibilityOff /> : <Visibility />} |
| | | </IconButton> |
| | | </InputAdornment> |
| | | ), |
| | | }} |
| | | /> |
| | | )} |
| | | /> |
| | |
| | | |
| | | </Stack> |
| | | <Box mt={1} mb={1} sx={{ textAlign: 'center' }}>or</Box> |
| | | |
| | | <ProviderChoices type="LOG IN" /> |
| | | </Box > |
| | | </> |
| | | ) |