refactor: Keep hook function convention the same (#2358)

I standardized the definition of the `useEditor hook` by changing it
from an `arrow function` to a `regular function`, in line with other
editor-related hooks.


### Change Type

- [ ] `patch` — Bug fix
- [ ] `minor` — New feature
- [ ] `major` — Breaking change
- [ ] `dependencies` — Changes to package dependencies[^1]
- [ ] `documentation` — Changes to the documentation only[^2]
- [ ] `tests` — Changes to any test code only[^2]
- [x] `internal` — Any other changes that don't affect the published
package[^2]
- [ ] I don't know

[^1]: publishes a `patch` release, for devDependencies use `internal`
[^2]: will not publish a new version

### Test Plan

1. Add a step-by-step description of how to test your PR here.
2.

- [x] Unit Tests
- [x] End to end tests

### Release Notes

- Add a brief release note for your PR here.
taha/add-custom-shape-example
MinhoPark 2023-12-20 18:06:20 +09:00 zatwierdzone przez GitHub
rodzic f6e7793f49
commit 3ffcd1601d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 16 dodań i 15 usunięć

Wyświetl plik

@ -2653,7 +2653,7 @@ export { useComputed }
export function useContainer(): HTMLDivElement;
// @public (undocumented)
export const useEditor: () => Editor;
export function useEditor(): Editor;
// @public (undocumented)
export function useIsCropping(shapeId: TLShapeId): boolean;

Wyświetl plik

@ -42130,32 +42130,33 @@
"name": "useContainer"
},
{
"kind": "Variable",
"canonicalReference": "@tldraw/editor!useEditor:var",
"kind": "Function",
"canonicalReference": "@tldraw/editor!useEditor:function(1)",
"docComment": "/**\n * @public\n */\n",
"excerptTokens": [
{
"kind": "Content",
"text": "useEditor: "
},
{
"kind": "Content",
"text": "() => "
"text": "export declare function useEditor(): "
},
{
"kind": "Reference",
"text": "Editor",
"canonicalReference": "@tldraw/editor!Editor:class"
},
{
"kind": "Content",
"text": ";"
}
],
"fileUrlPath": "packages/editor/src/lib/hooks/useEditor.ts",
"isReadonly": true,
"releaseTag": "Public",
"name": "useEditor",
"variableTypeTokenRange": {
"returnTypeTokenRange": {
"startIndex": 1,
"endIndex": 3
}
"endIndex": 2
},
"releaseTag": "Public",
"overloadIndex": 1,
"parameters": [],
"name": "useEditor"
},
{
"kind": "Function",

Wyświetl plik

@ -4,6 +4,6 @@ import { Editor } from '../editor/Editor'
export const EditorContext = React.createContext({} as Editor)
/** @public */
export const useEditor = (): Editor => {
export function useEditor(): Editor {
return React.useContext(EditorContext)
}