@liveblocks/react 0.18.1 → 0.18.3-test1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{index.d.ts → dist/index.d.ts} +25 -22
- package/{index.js → dist/index.js} +71 -55
- package/{index.mjs → dist/index.mjs} +0 -0
- package/package.json +42 -13
- package/.built-by-link-script +0 -1
- package/LICENSE +0 -201
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ReactElement, ReactNode } from 'react';
|
|
2
2
|
import { JsonObject, LsonObject, BaseUserMeta, LiveObject, User, Others, Json, Room, BroadcastOptions, History, Client } from '@liveblocks/client';
|
|
3
3
|
export { Json, JsonObject, shallow } from '@liveblocks/client';
|
|
4
|
-
import { ToImmutable, Resolve, RoomInitializers } from '@liveblocks/
|
|
4
|
+
import { ToImmutable, Resolve, RoomInitializers } from '@liveblocks/core';
|
|
5
5
|
|
|
6
6
|
declare type Props = {
|
|
7
7
|
fallback: NonNullable<ReactNode> | null;
|
|
@@ -32,6 +32,30 @@ declare type RoomProviderProps<TPresence extends JsonObject, TStorage extends Ls
|
|
|
32
32
|
*/
|
|
33
33
|
id: string;
|
|
34
34
|
children: React.ReactNode;
|
|
35
|
+
/**
|
|
36
|
+
* Whether or not the room should connect to Liveblocks servers
|
|
37
|
+
* when the RoomProvider is rendered.
|
|
38
|
+
*
|
|
39
|
+
* By default equals to `typeof window !== "undefined"`,
|
|
40
|
+
* meaning the RoomProvider tries to connect to Liveblocks servers
|
|
41
|
+
* only on the client side.
|
|
42
|
+
*/
|
|
43
|
+
shouldInitiallyConnect?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* If you're on React 17 or lower, pass in a reference to
|
|
46
|
+
* `ReactDOM.unstable_batchedUpdates` or
|
|
47
|
+
* `ReactNative.unstable_batchedUpdates` here.
|
|
48
|
+
*
|
|
49
|
+
* @example
|
|
50
|
+
* import { unstable_batchedUpdates } from "react-dom";
|
|
51
|
+
*
|
|
52
|
+
* <RoomProvider ... unstable_batchedUpdates={unstable_batchedUpdates} />
|
|
53
|
+
*
|
|
54
|
+
* This will prevent you from running into the so-called "stale props"
|
|
55
|
+
* and/or "zombie child" problem that React 17 and lower can suffer from.
|
|
56
|
+
* Not necessary when you're on React v18 or later.
|
|
57
|
+
*/
|
|
58
|
+
unstable_batchedUpdates?: (cb: () => void) => void;
|
|
35
59
|
} & RoomInitializers<TPresence, TStorage>>;
|
|
36
60
|
/**
|
|
37
61
|
* For any function type, returns a similar function type, but without the
|
|
@@ -318,16 +342,6 @@ declare type RoomContextBundle<TPresence extends JsonObject, TStorage extends Ls
|
|
|
318
342
|
* );
|
|
319
343
|
*/
|
|
320
344
|
useOthersMapped<T>(itemSelector: (other: User<TPresence, TUserMeta>) => T, itemIsEqual?: (prev: T, curr: T) => boolean): ReadonlyArray<readonly [connectionId: number, data: T]>;
|
|
321
|
-
/**
|
|
322
|
-
* Given a connection ID (as obtained by using `useOthersConnectionIds`), you can
|
|
323
|
-
* call this selector deep down in your component stack to only have the
|
|
324
|
-
* component re-render if properties for this particular user change.
|
|
325
|
-
*
|
|
326
|
-
* @example
|
|
327
|
-
* // Returns full user and re-renders whenever anything on the user changes
|
|
328
|
-
* const secondUser = useOther(2);
|
|
329
|
-
*/
|
|
330
|
-
useOther(connectionId: number): User<TPresence, TUserMeta>;
|
|
331
345
|
/**
|
|
332
346
|
* Given a connection ID (as obtained by using `useOthersConnectionIds`), you
|
|
333
347
|
* can call this selector deep down in your component stack to only have the
|
|
@@ -635,17 +649,6 @@ declare type RoomContextBundle<TPresence extends JsonObject, TStorage extends Ls
|
|
|
635
649
|
* );
|
|
636
650
|
*/
|
|
637
651
|
useOthersMapped<T>(itemSelector: (other: User<TPresence, TUserMeta>) => T, itemIsEqual?: (prev: T, curr: T) => boolean): ReadonlyArray<readonly [connectionId: number, data: T]>;
|
|
638
|
-
/**
|
|
639
|
-
* Given a connection ID (as obtained by using `useOthersConnectionIds`),
|
|
640
|
-
* you can call this selector deep down in your component stack to only
|
|
641
|
-
* have the component re-render if properties for this particular user
|
|
642
|
-
* change.
|
|
643
|
-
*
|
|
644
|
-
* @example
|
|
645
|
-
* // Returns full user and re-renders whenever anything on the user changes
|
|
646
|
-
* const secondUser = useOther(2);
|
|
647
|
-
*/
|
|
648
|
-
useOther(connectionId: number): User<TPresence, TUserMeta>;
|
|
649
652
|
/**
|
|
650
653
|
* Given a connection ID (as obtained by using `useOthersConnectionIds`),
|
|
651
654
|
* you can call this selector deep down in your component stack to only
|
|
@@ -12,7 +12,11 @@ function ClientSideSuspense(props) {
|
|
|
12
12
|
|
|
13
13
|
// src/factory.tsx
|
|
14
14
|
var _client = require('@liveblocks/client');
|
|
15
|
-
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
var _core = require('@liveblocks/core');
|
|
16
20
|
|
|
17
21
|
var _withselector = require('use-sync-external-store/shim/with-selector');
|
|
18
22
|
|
|
@@ -33,10 +37,22 @@ function useInitial(value) {
|
|
|
33
37
|
var noop = () => {
|
|
34
38
|
};
|
|
35
39
|
var identity = (x) => x;
|
|
36
|
-
|
|
37
|
-
|
|
40
|
+
var missing_unstable_batchedUpdates = (reactVersion, roomId) => `We noticed you\u2019re using React ${reactVersion}. Please pass unstable_batchedUpdates at the RoomProvider level until you\u2019re ready to upgrade to React 18:
|
|
41
|
+
|
|
42
|
+
import { unstable_batchedUpdates } from "react-dom"; // or "react-native"
|
|
43
|
+
|
|
44
|
+
<RoomProvider id=${JSON.stringify(
|
|
45
|
+
roomId
|
|
46
|
+
)} ... unstable_batchedUpdates={unstable_batchedUpdates}>
|
|
47
|
+
...
|
|
48
|
+
</RoomProvider>
|
|
49
|
+
|
|
50
|
+
Why? Please see https://liveblocks.io/docs/guides/troubleshooting#stale-props-zombie-child for more information`;
|
|
51
|
+
var superfluous_unstable_batchedUpdates = "You don\u2019t need to pass unstable_batchedUpdates to RoomProvider anymore, since you\u2019re on React 18+ already.";
|
|
52
|
+
function useSyncExternalStore(s, gs, gss) {
|
|
53
|
+
return _withselector.useSyncExternalStoreWithSelector.call(void 0, s, gs, gss, identity);
|
|
38
54
|
}
|
|
39
|
-
var EMPTY_OTHERS =
|
|
55
|
+
var EMPTY_OTHERS = _core.asArrayWithLegacyMethods.call(void 0, []);
|
|
40
56
|
function getEmptyOthers() {
|
|
41
57
|
return EMPTY_OTHERS;
|
|
42
58
|
}
|
|
@@ -70,7 +86,13 @@ function makeMutationContext(room) {
|
|
|
70
86
|
function createRoomContext(client) {
|
|
71
87
|
const RoomContext = React2.createContext(null);
|
|
72
88
|
function RoomProvider(props) {
|
|
73
|
-
const {
|
|
89
|
+
const {
|
|
90
|
+
id: roomId,
|
|
91
|
+
initialPresence,
|
|
92
|
+
initialStorage,
|
|
93
|
+
unstable_batchedUpdates,
|
|
94
|
+
shouldInitiallyConnect
|
|
95
|
+
} = props;
|
|
74
96
|
if (process.env.NODE_ENV !== "production") {
|
|
75
97
|
if (!roomId) {
|
|
76
98
|
throw new Error(
|
|
@@ -80,16 +102,29 @@ function createRoomContext(client) {
|
|
|
80
102
|
if (typeof roomId !== "string") {
|
|
81
103
|
throw new Error("RoomProvider id property should be a string.");
|
|
82
104
|
}
|
|
105
|
+
const majorReactVersion = parseInt(React2.version) || 1;
|
|
106
|
+
const oldReactVersion = majorReactVersion < 18;
|
|
107
|
+
_core.errorIf.call(void 0,
|
|
108
|
+
oldReactVersion && props.unstable_batchedUpdates === void 0,
|
|
109
|
+
missing_unstable_batchedUpdates(majorReactVersion, roomId)
|
|
110
|
+
);
|
|
111
|
+
_core.deprecateIf.call(void 0,
|
|
112
|
+
!oldReactVersion && props.unstable_batchedUpdates !== void 0,
|
|
113
|
+
superfluous_unstable_batchedUpdates
|
|
114
|
+
);
|
|
83
115
|
}
|
|
84
116
|
const frozen = useInitial({
|
|
85
117
|
initialPresence,
|
|
86
|
-
initialStorage
|
|
118
|
+
initialStorage,
|
|
119
|
+
unstable_batchedUpdates,
|
|
120
|
+
shouldInitiallyConnect: shouldInitiallyConnect === void 0 ? typeof window !== "undefined" : shouldInitiallyConnect
|
|
87
121
|
});
|
|
88
122
|
const [room, setRoom] = React2.useState(
|
|
89
123
|
() => client.enter(roomId, {
|
|
90
|
-
initialPresence,
|
|
91
|
-
initialStorage,
|
|
92
|
-
|
|
124
|
+
initialPresence: frozen.initialPresence,
|
|
125
|
+
initialStorage: frozen.initialStorage,
|
|
126
|
+
unstable_batchedUpdates: frozen.unstable_batchedUpdates,
|
|
127
|
+
shouldInitiallyConnect: frozen.shouldInitiallyConnect
|
|
93
128
|
})
|
|
94
129
|
);
|
|
95
130
|
React2.useEffect(() => {
|
|
@@ -97,7 +132,8 @@ function createRoomContext(client) {
|
|
|
97
132
|
client.enter(roomId, {
|
|
98
133
|
initialPresence: frozen.initialPresence,
|
|
99
134
|
initialStorage: frozen.initialStorage,
|
|
100
|
-
|
|
135
|
+
unstable_batchedUpdates: frozen.unstable_batchedUpdates,
|
|
136
|
+
withoutConnecting: frozen.shouldInitiallyConnect
|
|
101
137
|
})
|
|
102
138
|
);
|
|
103
139
|
return () => {
|
|
@@ -164,50 +200,34 @@ function createRoomContext(client) {
|
|
|
164
200
|
);
|
|
165
201
|
return useOthers(wrappedSelector, wrappedIsEqual);
|
|
166
202
|
}
|
|
167
|
-
const
|
|
203
|
+
const NOT_FOUND = Symbol();
|
|
168
204
|
function useOther(connectionId, selector, isEqual) {
|
|
169
|
-
const
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
(others) => others.find((other2) => other2.connectionId === connectionId),
|
|
174
|
-
[connectionId]
|
|
175
|
-
);
|
|
176
|
-
const other = _useOthers(selector2, _client.shallow);
|
|
177
|
-
if (other === void 0) {
|
|
178
|
-
throw new Error(
|
|
179
|
-
`No such other user with connection id ${connectionId} exists`
|
|
205
|
+
const wrappedSelector = React2.useCallback(
|
|
206
|
+
(others) => {
|
|
207
|
+
const other2 = others.find(
|
|
208
|
+
(other3) => other3.connectionId === connectionId
|
|
180
209
|
);
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
return eq(prev, curr);
|
|
200
|
-
},
|
|
201
|
-
[isEqual]
|
|
210
|
+
return other2 !== void 0 ? selector(other2) : NOT_FOUND;
|
|
211
|
+
},
|
|
212
|
+
[connectionId, selector]
|
|
213
|
+
);
|
|
214
|
+
const wrappedIsEqual = React2.useCallback(
|
|
215
|
+
(prev, curr) => {
|
|
216
|
+
if (prev === NOT_FOUND || curr === NOT_FOUND) {
|
|
217
|
+
return prev === curr;
|
|
218
|
+
}
|
|
219
|
+
const eq = isEqual != null ? isEqual : Object.is;
|
|
220
|
+
return eq(prev, curr);
|
|
221
|
+
},
|
|
222
|
+
[isEqual]
|
|
223
|
+
);
|
|
224
|
+
const other = useOthers(wrappedSelector, wrappedIsEqual);
|
|
225
|
+
if (other === NOT_FOUND) {
|
|
226
|
+
throw new Error(
|
|
227
|
+
`No such other user with connection id ${connectionId} exists`
|
|
202
228
|
);
|
|
203
|
-
const other = _useOthers(wrappedSelector, wrappedIsEqual);
|
|
204
|
-
if (other === sentinel) {
|
|
205
|
-
throw new Error(
|
|
206
|
-
`No such other user with connection id ${connectionId} exists`
|
|
207
|
-
);
|
|
208
|
-
}
|
|
209
|
-
return other;
|
|
210
229
|
}
|
|
230
|
+
return other;
|
|
211
231
|
}
|
|
212
232
|
function useBroadcastEvent() {
|
|
213
233
|
const room = useRoom();
|
|
@@ -443,11 +463,7 @@ function createRoomContext(client) {
|
|
|
443
463
|
}
|
|
444
464
|
function useOtherSuspense(connectionId, selector, isEqual) {
|
|
445
465
|
useSuspendUntilPresenceLoaded();
|
|
446
|
-
return useOther(
|
|
447
|
-
connectionId,
|
|
448
|
-
selector,
|
|
449
|
-
isEqual
|
|
450
|
-
);
|
|
466
|
+
return useOther(connectionId, selector, isEqual);
|
|
451
467
|
}
|
|
452
468
|
function useLegacyKeySuspense(key) {
|
|
453
469
|
useSuspendUntilStorageLoaded();
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liveblocks/react",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.3-test1",
|
|
4
4
|
"description": "A set of React hooks and providers to use Liveblocks declaratively.",
|
|
5
|
-
"main": "./index.js",
|
|
6
|
-
"module": "./index.mjs",
|
|
7
|
-
"types": "./index.d.ts",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"types": "./index.d.ts"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/**",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
15
12
|
"keywords": [
|
|
16
13
|
"react",
|
|
17
14
|
"liveblocks",
|
|
@@ -22,14 +19,46 @@
|
|
|
22
19
|
"bugs": {
|
|
23
20
|
"url": "https://github.com/liveblocks/liveblocks/issues"
|
|
24
21
|
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsup && ../../scripts/build.sh",
|
|
24
|
+
"start": "tsup --watch",
|
|
25
|
+
"format": "eslint --fix src/ && prettier --write src/",
|
|
26
|
+
"lint": "eslint src/ && npm run check:exports",
|
|
27
|
+
"check:exports": "tsc scripts/check-factory-exports.ts && node scripts/check-factory-exports.js",
|
|
28
|
+
"test": "jest --watch --silent --verbose",
|
|
29
|
+
"test-ci": "jest --silent --verbose"
|
|
30
|
+
},
|
|
25
31
|
"license": "Apache-2.0",
|
|
26
32
|
"dependencies": {
|
|
27
|
-
"use-sync-external-store": "^1.2.0"
|
|
33
|
+
"use-sync-external-store": "^1.2.0",
|
|
34
|
+
"@liveblocks/core": "0.18.3-test1",
|
|
35
|
+
"@liveblocks/client": "0.18.3-test1"
|
|
28
36
|
},
|
|
29
37
|
"peerDependencies": {
|
|
30
|
-
"@liveblocks/client": "0.18.1",
|
|
31
38
|
"react": "^16.14.0 || ^17 || ^18"
|
|
32
39
|
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
42
|
+
"@testing-library/react": "^13.1.1",
|
|
43
|
+
"@types/jest": "^29.1.2",
|
|
44
|
+
"@types/use-sync-external-store": "^0.0.3",
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "^5.26.0",
|
|
46
|
+
"@typescript-eslint/parser": "^5.26.0",
|
|
47
|
+
"eslint": "^8.12.0",
|
|
48
|
+
"eslint-plugin-import": "^2.26.0",
|
|
49
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
50
|
+
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
51
|
+
"jest": "^29.1.2",
|
|
52
|
+
"jest-environment-jsdom": "^29.1.2",
|
|
53
|
+
"msw": "^0.27.1",
|
|
54
|
+
"prettier": "^2.7.1",
|
|
55
|
+
"react-error-boundary": "^3.1.1",
|
|
56
|
+
"ts-jest": "^29.0.3",
|
|
57
|
+
"ts-node": "^10.8.1",
|
|
58
|
+
"tsup": "^6.2.2",
|
|
59
|
+
"typescript": "^4.7.3",
|
|
60
|
+
"whatwg-fetch": "^3.6.2"
|
|
61
|
+
},
|
|
33
62
|
"repository": {
|
|
34
63
|
"type": "git",
|
|
35
64
|
"url": "https://github.com/liveblocks/liveblocks.git",
|
package/.built-by-link-script
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
ab4dc80c03188cfbc87c124cad9c824347a785b0
|
package/LICENSE
DELETED
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
Apache License
|
|
2
|
-
Version 2.0, January 2004
|
|
3
|
-
http://www.apache.org/licenses/
|
|
4
|
-
|
|
5
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
-
|
|
7
|
-
1. Definitions.
|
|
8
|
-
|
|
9
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
-
|
|
12
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
-
the copyright owner that is granting the License.
|
|
14
|
-
|
|
15
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
-
other entities that control, are controlled by, or are under common
|
|
17
|
-
control with that entity. For the purposes of this definition,
|
|
18
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
-
direction or management of such entity, whether by contract or
|
|
20
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
-
|
|
23
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
-
exercising permissions granted by this License.
|
|
25
|
-
|
|
26
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
-
including but not limited to software source code, documentation
|
|
28
|
-
source, and configuration files.
|
|
29
|
-
|
|
30
|
-
"Object" form shall mean any form resulting from mechanical
|
|
31
|
-
transformation or translation of a Source form, including but
|
|
32
|
-
not limited to compiled object code, generated documentation,
|
|
33
|
-
and conversions to other media types.
|
|
34
|
-
|
|
35
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
-
Object form, made available under the License, as indicated by a
|
|
37
|
-
copyright notice that is included in or attached to the work
|
|
38
|
-
(an example is provided in the Appendix below).
|
|
39
|
-
|
|
40
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
-
form, that is based on (or derived from) the Work and for which the
|
|
42
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
-
of this License, Derivative Works shall not include works that remain
|
|
45
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
-
the Work and Derivative Works thereof.
|
|
47
|
-
|
|
48
|
-
"Contribution" shall mean any work of authorship, including
|
|
49
|
-
the original version of the Work and any modifications or additions
|
|
50
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
-
means any form of electronic, verbal, or written communication sent
|
|
55
|
-
to the Licensor or its representatives, including but not limited to
|
|
56
|
-
communication on electronic mailing lists, source code control systems,
|
|
57
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
-
excluding communication that is conspicuously marked or otherwise
|
|
60
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
-
|
|
62
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
-
subsequently incorporated within the Work.
|
|
65
|
-
|
|
66
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
-
Work and such Derivative Works in Source or Object form.
|
|
72
|
-
|
|
73
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
-
(except as stated in this section) patent license to make, have made,
|
|
77
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
-
where such license applies only to those patent claims licensable
|
|
79
|
-
by such Contributor that are necessarily infringed by their
|
|
80
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
-
institute patent litigation against any entity (including a
|
|
83
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
-
or contributory patent infringement, then any patent licenses
|
|
86
|
-
granted to You under this License for that Work shall terminate
|
|
87
|
-
as of the date such litigation is filed.
|
|
88
|
-
|
|
89
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
-
modifications, and in Source or Object form, provided that You
|
|
92
|
-
meet the following conditions:
|
|
93
|
-
|
|
94
|
-
(a) You must give any other recipients of the Work or
|
|
95
|
-
Derivative Works a copy of this License; and
|
|
96
|
-
|
|
97
|
-
(b) You must cause any modified files to carry prominent notices
|
|
98
|
-
stating that You changed the files; and
|
|
99
|
-
|
|
100
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
-
that You distribute, all copyright, patent, trademark, and
|
|
102
|
-
attribution notices from the Source form of the Work,
|
|
103
|
-
excluding those notices that do not pertain to any part of
|
|
104
|
-
the Derivative Works; and
|
|
105
|
-
|
|
106
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
-
distribution, then any Derivative Works that You distribute must
|
|
108
|
-
include a readable copy of the attribution notices contained
|
|
109
|
-
within such NOTICE file, excluding those notices that do not
|
|
110
|
-
pertain to any part of the Derivative Works, in at least one
|
|
111
|
-
of the following places: within a NOTICE text file distributed
|
|
112
|
-
as part of the Derivative Works; within the Source form or
|
|
113
|
-
documentation, if provided along with the Derivative Works; or,
|
|
114
|
-
within a display generated by the Derivative Works, if and
|
|
115
|
-
wherever such third-party notices normally appear. The contents
|
|
116
|
-
of the NOTICE file are for informational purposes only and
|
|
117
|
-
do not modify the License. You may add Your own attribution
|
|
118
|
-
notices within Derivative Works that You distribute, alongside
|
|
119
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
-
that such additional attribution notices cannot be construed
|
|
121
|
-
as modifying the License.
|
|
122
|
-
|
|
123
|
-
You may add Your own copyright statement to Your modifications and
|
|
124
|
-
may provide additional or different license terms and conditions
|
|
125
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
-
the conditions stated in this License.
|
|
129
|
-
|
|
130
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
-
this License, without any additional terms or conditions.
|
|
134
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
-
the terms of any separate license agreement you may have executed
|
|
136
|
-
with Licensor regarding such Contributions.
|
|
137
|
-
|
|
138
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
-
except as required for reasonable and customary use in describing the
|
|
141
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
-
|
|
143
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
-
implied, including, without limitation, any warranties or conditions
|
|
148
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
-
appropriateness of using or redistributing the Work and assume any
|
|
151
|
-
risks associated with Your exercise of permissions under this License.
|
|
152
|
-
|
|
153
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
-
unless required by applicable law (such as deliberate and grossly
|
|
156
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
-
liable to You for damages, including any direct, indirect, special,
|
|
158
|
-
incidental, or consequential damages of any character arising as a
|
|
159
|
-
result of this License or out of the use or inability to use the
|
|
160
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
-
other commercial damages or losses), even if such Contributor
|
|
163
|
-
has been advised of the possibility of such damages.
|
|
164
|
-
|
|
165
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
-
or other liability obligations and/or rights consistent with this
|
|
169
|
-
License. However, in accepting such obligations, You may act only
|
|
170
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
-
defend, and hold each Contributor harmless for any liability
|
|
173
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
-
of your accepting any such warranty or additional liability.
|
|
175
|
-
|
|
176
|
-
END OF TERMS AND CONDITIONS
|
|
177
|
-
|
|
178
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
-
|
|
180
|
-
To apply the Apache License to your work, attach the following
|
|
181
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
-
replaced with your own identifying information. (Don't include
|
|
183
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
-
comment syntax for the file format. We also recommend that a
|
|
185
|
-
file or class name and description of purpose be included on the
|
|
186
|
-
same "printed page" as the copyright notice for easier
|
|
187
|
-
identification within third-party archives.
|
|
188
|
-
|
|
189
|
-
Copyright 2021 LIVEBLOCKS PTY LTD
|
|
190
|
-
|
|
191
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
-
you may not use this file except in compliance with the License.
|
|
193
|
-
You may obtain a copy of the License at
|
|
194
|
-
|
|
195
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
-
|
|
197
|
-
Unless required by applicable law or agreed to in writing, software
|
|
198
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
-
See the License for the specific language governing permissions and
|
|
201
|
-
limitations under the License.
|