├── .github └── workflows │ ├── codeql-analysis.yml │ ├── main.yml │ └── size.yml ├── .gitignore ├── LICENSE ├── README.md ├── errors └── no-provider.md ├── example ├── .npmignore ├── index.html ├── index.tsx ├── package.json ├── server.js ├── tsconfig.json └── yarn.lock ├── misc └── logo.png ├── package.json ├── src ├── RoomServiceProvider.tsx ├── contextForClient.tsx ├── errors.tsx ├── index.tsx ├── useList.tsx ├── useMap.tsx ├── usePresence.tsx └── useRoom.tsx ├── tsconfig.json └── yarn.lock /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/.github/workflows/size.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | .cache 5 | dist 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/README.md -------------------------------------------------------------------------------- /errors/no-provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/errors/no-provider.md -------------------------------------------------------------------------------- /example/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache 3 | dist -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/example/package.json -------------------------------------------------------------------------------- /example/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/example/server.js -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /misc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/misc/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/package.json -------------------------------------------------------------------------------- /src/RoomServiceProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/src/RoomServiceProvider.tsx -------------------------------------------------------------------------------- /src/contextForClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/src/contextForClient.tsx -------------------------------------------------------------------------------- /src/errors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/src/errors.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/useList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/src/useList.tsx -------------------------------------------------------------------------------- /src/useMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/src/useMap.tsx -------------------------------------------------------------------------------- /src/usePresence.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/src/usePresence.tsx -------------------------------------------------------------------------------- /src/useRoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/src/useRoom.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getroomservice/react/HEAD/yarn.lock --------------------------------------------------------------------------------