feat(frontend): handle username in lowercase

When handling usernames for login and registering with local or permissions, this makes sure that the username is always in lowercase.

Signed-off-by: Philip Molares <philip.molares@udo.edu>
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Philip Molares 2023-05-21 21:59:46 +02:00 committed by Tilman Vatteroth
parent 0a8945d934
commit e13055736a
9 changed files with 95 additions and 15 deletions

View file

@ -0,0 +1,20 @@
/*
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { useOnInputChange } from './use-on-input-change'
import type { ChangeEvent } from 'react'
import { useCallback } from 'react'
/**
* Takes an input change event and sends the lower case event value to a state setter.
*
* @param setter The setter method for the state.
* @return Hook that can be used as callback for onChange.
*/
export const useLowercaseOnInputChange = (
setter: (value: string) => void
): ((event: ChangeEvent<HTMLInputElement>) => void) => {
return useOnInputChange(useCallback((value) => setter(value.toLowerCase()), [setter]))
}