-
Notifications
You must be signed in to change notification settings - Fork 3
FCE-2596 Add support for data channels #447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
50288e2
Add support for data channels
Qizot 4de575e
Add support for protobufs as data channel messages
Qizot 352f587
Regenerate protos
Qizot 811e285
Refactor data channels initialization
Qizot 086bf8f
Adjust to CR
Qizot cbbcab1
fix demo app
czerwiukk a3725c3
remove auto connect mentions
czerwiukk 4bec8e7
Apply suggestions from code review
Qizot 63df177
Fix linter
Qizot 1fdad1c
Update node version in tests
Qizot 5d747d8
Merge branch 'main' into data-channels
Qizot 97dd9f1
Update lock
Qizot cbd211f
Merge branch 'main' into data-channels
Gawor270 d91913f
Rename data publishers to data channels
Qizot ec7994b
Merge branch 'main' into data-channels
Qizot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| [submodule "packages/protobufs/protos"] | ||
| path = packages/protobufs/protos | ||
| url = https://github.com/fishjam-cloud/protos.git | ||
| branch = master | ||
| branch = master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| VITE_FISHJAM_ID="your-fishjam-id" # get it at https://fishjam.io/app/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| node_modules | ||
| dist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| { | ||
| "extends": ["../../../.eslintrc.js"], | ||
| "ignorePatterns": ["lib"], | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "printWidth": 80 | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <!doctype html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Fishjam Chat</title> | ||
| </head> | ||
| <body> | ||
| <div id="root"></div> | ||
| <script type="module" src="/src/main.tsx"></script> | ||
| </body> | ||
| </html> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| { | ||
| "name": "@fishjam-example/text-chat-example", | ||
| "private": true, | ||
| "version": "0.10.2", | ||
| "type": "module", | ||
| "license": "Apache-2.0", | ||
| "scripts": { | ||
| "dev": "vite", | ||
| "build": "tsc && vite build", | ||
| "watch": "tsc --noEmit --watch", | ||
| "preview": "vite preview", | ||
| "format": "prettier --write . --ignore-path ./.eslintignore", | ||
| "format:check": "prettier --check . --ignore-path ./.eslintignore", | ||
| "lint": "eslint . --ext .ts,.tsx --fix", | ||
| "lint:check": "eslint . --ext .ts,.tsx" | ||
| }, | ||
| "dependencies": { | ||
| "@fishjam-cloud/react-client": "workspace:*", | ||
| "react": "^19.0.0", | ||
| "react-dom": "^19.0.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/react": "^19.0.12", | ||
| "@types/react-dom": "^19.0.4", | ||
| "@vitejs/plugin-react-swc": "^3.8.1", | ||
| "autoprefixer": "^10.4.21", | ||
| "postcss": "^8.5.3", | ||
| "typescript": "^5.8.3", | ||
| "vite": "^6.2.6", | ||
| "vite-plugin-checker": "^0.9.1" | ||
| }, | ||
| "lint-staged": { | ||
| "*": [ | ||
| "yarn format" | ||
| ], | ||
| "*.(js|ts|tsx)": [ | ||
| "yarn lint" | ||
| ] | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.