Skip to content

Commit 7690f77

Browse files
committedApr 28, 2022
feat: new hooks
1 parent 1304a47 commit 7690f77

8 files changed

+386
-315
lines changed
 

‎package-lock.json

+320-287
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
],
88
"license": "MIT",
99
"name": "tw-react",
10-
"version": "0.3.2",
10+
"version": "0.3.5",
1111
"url": "https://github.com/tiddly-gittly/tw-react",
1212
"author": "Lin Onetwo",
1313
"types": "dist/lib/index.d.ts",
@@ -34,15 +34,15 @@
3434
"@types/eslint-plugin-prettier": "3.1.0",
3535
"@types/fs-extra": "9.0.13",
3636
"@types/prettier": "2.6.0",
37-
"@types/react": "^18.0.6",
38-
"@types/react-dom": "^18.0.2",
39-
"@typescript-eslint/eslint-plugin": "5.20.0",
40-
"@typescript-eslint/parser": "5.20.0",
37+
"@types/react": "^18.0.8",
38+
"@types/react-dom": "^18.0.0",
39+
"@typescript-eslint/eslint-plugin": "5.21.0",
40+
"@typescript-eslint/parser": "5.21.0",
4141
"archiver": "5.3.1",
42-
"browserslist": "4.20.2",
42+
"browserslist": "4.20.3",
4343
"esbuild": "0.14.38",
4444
"esbuild-plugin-browserslist": "0.4.9",
45-
"eslint": "8.13.0",
45+
"eslint": "8.14.0",
4646
"eslint-config-prettier": "8.5.0",
4747
"eslint-config-standard": "17.0.0",
4848
"eslint-config-standard-with-typescript": "21.0.1",
@@ -55,7 +55,7 @@
5555
"eslint-plugin-prettier": "4.0.0",
5656
"eslint-plugin-promise": "6.0.0",
5757
"eslint-plugin-react": "7.29.4",
58-
"eslint-plugin-react-hooks": "4.4.0",
58+
"eslint-plugin-react-hooks": "4.5.0",
5959
"eslint-plugin-security": "1.5.0",
6060
"eslint-plugin-security-node": "1.1.1",
6161
"eslint-plugin-typescript-sort-keys": "2.1.0",
@@ -68,14 +68,14 @@
6868
"tiddlywiki": "5.2.2",
6969
"tslib": "2.4.0",
7070
"tw5-plugin-packer": "0.0.10",
71-
"tw5-typed": "0.2.3",
71+
"tw5-typed": "0.2.6",
7272
"typescript": "4.6.3",
73-
"typesync": "0.9.0",
74-
"react": "^18.0.0",
73+
"typesync": "0.9.1",
74+
"react": "^18.1.0",
7575
"zx": "6.1.0"
7676
},
7777
"peerDependencies": {
78-
"react": "^18.0.0",
79-
"react-dom": "^18.0.0"
78+
"react": "^18.1.0",
79+
"react-dom": "^18.1.0"
8080
}
8181
}

‎src/hooks/context.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { createContext } from 'react';
2+
import { Widget } from 'tiddlywiki';
3+
4+
/**
5+
* A widget context for rendering child widgets
6+
*
7+
* > it will read the current context value from the closest matching Provider above it in the tree
8+
* > https://reactjs.org/docs/context.html#reactcreatecontext
9+
* so even multiple context is created in different react widget, the value may not collide, I think...
10+
*
11+
* */
12+
export const ParentWidgetContext = createContext<Widget | undefined>(undefined);

‎src/hooks/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
export * from './useFilter';
22
export * from './useRenderTiddler';
3+
export * from './useWidget';
4+
export * from './context';

‎src/hooks/useRenderTiddler.ts

+2-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
1-
import { createContext, RefObject, useContext, useEffect } from 'react';
2-
import { Widget } from 'tiddlywiki';
3-
4-
/**
5-
* A widget context for rendering child widgets
6-
*
7-
* > it will read the current context value from the closest matching Provider above it in the tree
8-
* > https://reactjs.org/docs/context.html#reactcreatecontext
9-
* so even multiple context is created in different react widget, the value may not collide, I think...
10-
*
11-
* */
12-
export const ParentWidgetContext = createContext<Widget | undefined>(undefined);
1+
import { RefObject, useContext, useEffect } from 'react';
2+
import { ParentWidgetContext } from './context';
133

144
export function useRenderTiddler(tiddlerTitle: string, containerRef: RefObject<HTMLDivElement>) {
155
const parentWidget = useContext(ParentWidgetContext);

‎src/hooks/useWidget.ts

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { RefObject, useContext, useEffect } from 'react';
2+
import { IParseTreeNode } from 'tiddlywiki';
3+
import { ParentWidgetContext } from './context';
4+
5+
export function useWidget(parseTreeNode: IParseTreeNode, containerRef: RefObject<HTMLDivElement>) {
6+
const parentWidget = useContext(ParentWidgetContext);
7+
useEffect(() => {
8+
if (containerRef.current === null) {
9+
return;
10+
}
11+
if (parentWidget === undefined) {
12+
throw new Error('Your plugin have a bug: `parentWidget` is undefined, you should use `<ParentWidgetContext.Provider value={props.parentWidget}>`, see tw-react for document.');
13+
}
14+
const newWidgetNode = new $tw.rootWidget.widgetClasses.widget(parseTreeNode, {
15+
document,
16+
parentWidget,
17+
recursionMarker: 'yes',
18+
mode: 'block',
19+
importPageMacros: true,
20+
});
21+
22+
newWidgetNode.render(containerRef.current, null);
23+
parentWidget.children.push(newWidgetNode);
24+
}, [parseTreeNode, containerRef.current]);
25+
}

‎src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
* And won't be packaged into the plugin bundle.
44
*/
55
export * from './hooks';
6-
export type { IReactWidget, ReactWidget } from './widget';
6+
export type { IReactWidget, ReactWidget, IDefaultWidgetProps } from './widget';

‎src/widget.ts

+11-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ const Widget = require('$:/core/modules/widgets/widget.js').widget as typeof IWi
99
const ReactDom: ReactDomType = require('react-dom');
1010
const React: ReactType = require('react');
1111

12-
export class ReactWidget<P extends {} = Record<string, any>> extends Widget {
12+
export interface IDefaultWidgetProps {
13+
parentWidget?: IWidget;
14+
}
15+
export class ReactWidget<
16+
IUserProps extends Record<string, any> = {},
17+
IProps extends IUserProps & IDefaultWidgetProps = IDefaultWidgetProps & Record<string, any> & any,
18+
> extends Widget {
1319
private root: ReturnType<typeof ReactDom.createRoot> | undefined;
1420
private containerElement: HTMLDivElement | undefined;
1521

@@ -31,7 +37,7 @@ export class ReactWidget<P extends {} = Record<string, any>> extends Widget {
3137
| ReactType.ComponentClass<any>
3238
| null = null;
3339

34-
protected getProps: () => P = () => ({} as P);
40+
protected getProps: () => IProps = () => ({ parentWidget: this } as unknown as IProps);
3541

3642
/**
3743
* Lifecycle method: Render this widget into the DOM
@@ -44,6 +50,9 @@ export class ReactWidget<P extends {} = Record<string, any>> extends Widget {
4450
return;
4551
}
4652
const currentProps = this.getProps();
53+
if (typeof currentProps === undefined || currentProps === null) {
54+
currentProps.parentWidget = this;
55+
}
4756
// TODO: is this useful?
4857
// this.renderChildren(parent,nextSibling);
4958

0 commit comments

Comments
 (0)
Please sign in to comment.