-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstate.mjs
More file actions
152 lines (124 loc) · 3.03 KB
/
state.mjs
File metadata and controls
152 lines (124 loc) · 3.03 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
const hostname = 'https://__HOSTNAME__';
/**
* @example
* const state = await State.get(localStorage.stateId);
* localStorage.stateId = state.id;
* state.addEventListener('change', console.log);
* await state.set('key', value);
* await state.remove('key');
* console.log(state.current);
*/
class State extends EventTarget {
static async get(id) {
const state = new State(id);
await state.init();
return state;
}
constructor(id) {
super();
this.id = id;
this.state = null;
this._onchange = null;
}
async init() {
if (this.id) {
await this.refresh();
}
if (!this.state) {
await this.create();
}
this.connect();
}
get onchange() {
return this._onchange;
}
set onchange(v) {
return this._onchange = v;
}
get current() {
return this.state?.state;
}
connect() {
const source = new EventSource(`${hostname}/events?id=${this.id}`);
source.onerror = () => setTimeout(() => this.connect(), 1000);
source.onmessage = (message) => {
this.state = JSON.parse(message.data);
this.emitState();
};
}
emitState() {
const e = new CustomEvent('change', { detail: this.current });
this.dispatchEvent(e);
this._onchange && this._onchange(e);
}
async create() {
const state = await fetch(`${hostname}/states`, { method: 'POST', mode: 'cors' });
if (state.ok) {
this.state = await state.json();
this.id = this.state.id;
}
}
async refresh() {
const state = await fetch(`${hostname}/states?id=${this.id}`, { mode: 'cors' });
this.state = state.ok ? await state.json() : null;
}
set(key, value) {
this.add(key, value);
}
async add(key, value) {
const action = { type: 'add', key, value };
await this.dispatch(action);
}
async remove(key) {
const action = { type: 'remove', key };
await this.dispatch(action);
}
async update(value) {
const action = { type: 'update', value };
await this.dispatch(action);
}
async dispatch(payload) {
const action = {
...payload,
id: this.id,
version: this.state.version,
};
const body = JSON.stringify(action);
const headers = { 'content-type': 'application/json' };
const request = await fetch(`${hostname}/events`, {
mode: 'cors',
headers,
method: 'POST',
body,
});
if (request.ok) {
this.apply(action);
this.state.version = Number(await request.text());
return;
}
if (request.status === 409) {
await this.refresh();
return await this.dispatch(payload);
}
}
apply(action) {
if (action.version <= this.state.version) {
return;
}
switch (action.type) {
case 'add':
this.state.state[action.key] = action.value;
break;
case 'update':
this.state.state = action.value;
break;
case 'remove':
delete this.state.state[action.key];
break;
default:
return;
}
this.emitState();
}
}
export default State;