mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 06:34:39 -04:00

Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
21 lines
758 B
TypeScript
21 lines
758 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { useApplicationState } from './use-application-state'
|
|
import type { NotePermissions } from '@hedgedoc/commons'
|
|
import { userIsOwner } from '@hedgedoc/commons'
|
|
import { useMemo } from 'react'
|
|
|
|
/**
|
|
* Determines if the current user is the owner of the current note.
|
|
*
|
|
* @return True, if the current user is owner.
|
|
*/
|
|
export const useIsOwner = (): boolean => {
|
|
const me: string | undefined = useApplicationState((state) => state.user?.username)
|
|
const permissions: NotePermissions = useApplicationState((state) => state.noteDetails.permissions)
|
|
|
|
return useMemo(() => userIsOwner(permissions, me), [permissions, me])
|
|
}
|