-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.tsx
52 lines (42 loc) · 1.31 KB
/
example.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import React, { useEffect, useState, useRef } from "react";
import { View, Text, TouchableOpacity } from "react-native";
import EventRouter from "./event-router";
type State = "one" | "two";
class ClassWithEvent {
private _state: State = "one";
private onStateChangedRouter: EventRouter<State>;
constructor() {
this.onStateChangedRouter = new EventRouter();
}
public get state() {
return this._state;
}
public set state(newState: State) {
this.state = newState;
this.onStateChangedRouter.trigger(newState);
}
public get onStateChanged() {
return this.onStateChangedRouter.subscribe.bind(this.onStateChangedRouter);
}
}
function Component() {
const ref = useRef();
function getInstance() {
if(!ref.current) ref.current = new ClassWithEvent();
return ref.current;
}
const [state, setState] = useState<State>(undefined);
useEffect(() => {
const sub = getInstance().onStateChanged(setState);
return sub.remove;
}, []);
return (
<View>
<Text>{state ?? "No state yet..."}</Text>
<TouchableOpacity onPress={() => getInstance().state = "two"}>
<Text>Set state</Text>
</TouchableOpacity>
</View>
);
}
export default Component;