mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-25 20:44:49 -04:00
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:
parent
0a8945d934
commit
e13055736a
9 changed files with 95 additions and 15 deletions
20
frontend/src/hooks/common/use-lowercase-on-input-change.ts
Normal file
20
frontend/src/hooks/common/use-lowercase-on-input-change.ts
Normal 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]))
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue