Compare commits
10 Commits
pre-releas
...
refactor/p
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d14509e22f | ||
|
|
f0c8340078 | ||
|
|
a62aa97774 | ||
|
|
801a886efb | ||
|
|
3354c0a0d8 | ||
|
|
76753454c2 | ||
|
|
9809666427 | ||
|
|
5fab04a8f4 | ||
|
|
a3d3326f4b | ||
|
|
3b22dada26 |
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"cojson": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Export the coValue loading config to reduce the timeout on tests
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
"jazz-react-native-auth-clerk": minor
|
|
||||||
"jazz-react-auth-clerk": minor
|
|
||||||
"cojson-transport-ws": minor
|
|
||||||
"jazz-react-native": minor
|
|
||||||
"jazz-auth-clerk": minor
|
|
||||||
"jazz-react-core": minor
|
|
||||||
"jazz-inspector": minor
|
|
||||||
"jazz-browser": minor
|
|
||||||
"jazz-nodejs": minor
|
|
||||||
"jazz-react": minor
|
|
||||||
"jazz-tools": minor
|
|
||||||
"cojson": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Introducing the new auth system!
|
|
||||||
@@ -6,23 +6,18 @@
|
|||||||
"linked": [
|
"linked": [
|
||||||
[
|
[
|
||||||
"cojson",
|
"cojson",
|
||||||
"cojson-storage",
|
|
||||||
"cojson-storage-indexeddb",
|
|
||||||
"cojson-storage-sqlite",
|
|
||||||
"cojson-transport-ws",
|
|
||||||
"jazz-browser",
|
|
||||||
"jazz-auth-clerk",
|
|
||||||
"jazz-browser-media-images",
|
|
||||||
"jazz-nodejs",
|
|
||||||
"jazz-react",
|
|
||||||
"jazz-react-auth-clerk",
|
|
||||||
"jazz-react-native",
|
|
||||||
"jazz-react-native-auth-clerk",
|
|
||||||
"jazz-react-native-media-images",
|
|
||||||
"jazz-run",
|
|
||||||
"jazz-svelte",
|
|
||||||
"jazz-tools",
|
"jazz-tools",
|
||||||
"jazz-vue"
|
"jazz-browser",
|
||||||
|
"jazz-browser-media-images",
|
||||||
|
"jazz-browser-auth-clerk",
|
||||||
|
"jazz-react-auth-clerk",
|
||||||
|
"jazz-react",
|
||||||
|
"jazz-react-native",
|
||||||
|
"jazz-nodejs",
|
||||||
|
"jazz-run",
|
||||||
|
"cojson-transport-ws",
|
||||||
|
"cojson-storage-indexeddb",
|
||||||
|
"cojson-storage-sqlite"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"access": "public",
|
"access": "public",
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"create-jazz-app": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Add framework and api-key param to create-jazz-app
|
|
||||||
6
.changeset/heavy-beds-whisper.md
Normal file
6
.changeset/heavy-beds-whisper.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
"cojson": patch
|
||||||
|
"jazz-tools": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Optimise large record-like CoMaps for access of latest value
|
||||||
7
.changeset/many-rabbits-obey.md
Normal file
7
.changeset/many-rabbits-obey.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
"cojson-storage-indexeddb": patch
|
||||||
|
"cojson-storage-sqlite": patch
|
||||||
|
"cojson-storage": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Refactor the SQLite and IndexedDB storage packages to extract common synchronization functionality into newly created cojson-storage package.
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
"jazz-nodejs": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Remove ws dependency to use native WebSocket.
|
|
||||||
|
|
||||||
NodeJS versions prior to v22 will need to provide a WebSocket constructor from ws:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
import { WebSocket } from "ws"
|
|
||||||
|
|
||||||
const { worker } = await startWorker({ WebSocket, synServer });
|
|
||||||
```
|
|
||||||
|
|
||||||
This makes it easier to run workers on every JS runtime.
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
"jazz-react-core": minor
|
|
||||||
"jazz-svelte": minor
|
|
||||||
"jazz-tools": minor
|
|
||||||
"jazz-vue": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Return null when a coValue is not found
|
|
||||||
9
.github/workflows/build-examples.yaml
vendored
9
.github/workflows/build-examples.yaml
vendored
@@ -27,13 +27,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- name: Enable latestcorepack
|
- name: Enable corepack
|
||||||
run: |
|
run: corepack enable
|
||||||
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
|
|
||||||
npm install -g corepack@latest
|
|
||||||
echo "After : corepack version => $(corepack --version)"
|
|
||||||
corepack enable
|
|
||||||
pnpm --version
|
|
||||||
|
|
||||||
- name: Install Node.js
|
- name: Install Node.js
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
|
|||||||
57
.github/workflows/build-starters.yaml
vendored
57
.github/workflows/build-starters.yaml
vendored
@@ -1,57 +0,0 @@
|
|||||||
name: Build Starters
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ "main" ]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-starters:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
starter: [
|
|
||||||
"react-demo-auth-tailwind",
|
|
||||||
]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
submodules: true
|
|
||||||
|
|
||||||
- name: Enable latestcorepack
|
|
||||||
run: |
|
|
||||||
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
|
|
||||||
npm install -g corepack@latest
|
|
||||||
echo "After : corepack version => $(corepack --version)"
|
|
||||||
corepack enable
|
|
||||||
pnpm --version
|
|
||||||
|
|
||||||
- name: Install Node.js
|
|
||||||
uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
node-version-file: '.node-version'
|
|
||||||
cache: 'pnpm'
|
|
||||||
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- uses: actions/cache@v3
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: pnpm install --frozen-lockfile
|
|
||||||
|
|
||||||
|
|
||||||
- name: Pnpm Build
|
|
||||||
run: |
|
|
||||||
pnpm install
|
|
||||||
pnpm turbo build;
|
|
||||||
working-directory: ./starters/${{ matrix.starter }}
|
|
||||||
9
.github/workflows/jazz-run.yml
vendored
9
.github/workflows/jazz-run.yml
vendored
@@ -16,13 +16,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- name: Enable latestcorepack
|
- name: Enable corepack
|
||||||
run: |
|
run: corepack enable
|
||||||
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
|
|
||||||
npm install -g corepack@latest
|
|
||||||
echo "After : corepack version => $(corepack --version)"
|
|
||||||
corepack enable
|
|
||||||
pnpm --version
|
|
||||||
|
|
||||||
- name: Install Node.js
|
- name: Install Node.js
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
|
|||||||
19
.github/workflows/playwright.yml
vendored
19
.github/workflows/playwright.yml
vendored
@@ -13,20 +13,15 @@ jobs:
|
|||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
project: ["tests/e2e", "examples/chat", "examples/file-share-svelte", "examples/form", "examples/music-player", "examples/pets", "examples/onboarding", "starters/react-demo-auth-tailwind"]
|
project: ["tests/e2e", "examples/chat", "examples/music-player", "examples/pets", "examples/onboarding"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- name: Enable latestcorepack
|
- name: Enable corepack
|
||||||
run: |
|
run: corepack enable
|
||||||
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
|
|
||||||
npm install -g corepack@latest
|
|
||||||
echo "After : corepack version => $(corepack --version)"
|
|
||||||
corepack enable
|
|
||||||
pnpm --version
|
|
||||||
|
|
||||||
- name: Install Node.js
|
- name: Install Node.js
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
@@ -46,16 +41,20 @@ jobs:
|
|||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-pnpm-store-
|
${{ runner.os }}-pnpm-store-
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pnpm install --frozen-lockfile
|
run: pnpm install --frozen-lockfile
|
||||||
|
|
||||||
- name: Pnpm Build
|
- name: Pnpm Build
|
||||||
run: pnpm turbo build
|
run: pnpm turbo build
|
||||||
working-directory: ./${{ matrix.project }}
|
working-directory: ./${{ matrix.project }}
|
||||||
|
|
||||||
|
- name: Build jazz-run
|
||||||
|
run: pnpm exec turbo build && chmod +x dist/index.js;
|
||||||
|
working-directory: ./packages/jazz-run
|
||||||
|
|
||||||
- name: Install Playwright Browsers
|
- name: Install Playwright Browsers
|
||||||
run: pnpm exec playwright install
|
run: pnpm exec playwright install --with-deps
|
||||||
working-directory: ./${{ matrix.project }}
|
working-directory: ./${{ matrix.project }}
|
||||||
|
|
||||||
- name: Run Playwright tests
|
- name: Run Playwright tests
|
||||||
|
|||||||
49
.github/workflows/pre-release.yml
vendored
49
.github/workflows/pre-release.yml
vendored
@@ -1,49 +0,0 @@
|
|||||||
name: Pre-Publish tagged Pull Requests
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types: [opened, synchronize, reopened]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
pre-release:
|
|
||||||
if: contains(github.event.pull_request.labels.*.name, 'pre-release')
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Enable latestcorepack
|
|
||||||
run: |
|
|
||||||
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
|
|
||||||
npm install -g corepack@latest
|
|
||||||
echo "After : corepack version => $(corepack --version)"
|
|
||||||
corepack enable
|
|
||||||
pnpm --version
|
|
||||||
|
|
||||||
- name: Install Node.js
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version-file: '.node-version'
|
|
||||||
cache: 'pnpm'
|
|
||||||
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: pnpm install --frozen-lockfile
|
|
||||||
|
|
||||||
- name: Pnpm Build
|
|
||||||
run: pnpm turbo build --filter="./packages/*"
|
|
||||||
|
|
||||||
- name: Pre publish
|
|
||||||
run: pnpm exec pkg-pr-new publish "./packages/*"
|
|
||||||
25
.github/workflows/release.yml
vendored
25
.github/workflows/release.yml
vendored
@@ -4,13 +4,6 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
debug_enabled:
|
|
||||||
type: boolean
|
|
||||||
description: "Run tmate session for debugging"
|
|
||||||
required: false
|
|
||||||
default: false
|
|
||||||
|
|
||||||
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
|
||||||
@@ -22,13 +15,8 @@ jobs:
|
|||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Enable latestcorepack
|
- name: Enable corepack
|
||||||
run: |
|
run: corepack enable
|
||||||
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
|
|
||||||
npm install -g corepack@latest
|
|
||||||
echo "After : corepack version => $(corepack --version)"
|
|
||||||
corepack enable
|
|
||||||
pnpm --version
|
|
||||||
|
|
||||||
- name: Install Node.js
|
- name: Install Node.js
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
@@ -60,11 +48,4 @@ jobs:
|
|||||||
publish: pnpm release
|
publish: pnpm release
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
|
|
||||||
# Enable tmate debugging only if the workflow is manually triggered, debug_enabled is true, and the workflow failed
|
|
||||||
- name: Setup tmate session for debugging
|
|
||||||
if: ${{ failure() && github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
|
|
||||||
uses: mxschmitt/action-tmate@v3
|
|
||||||
with:
|
|
||||||
timeout-minutes: 15
|
|
||||||
11
.github/workflows/unit-test.yml
vendored
11
.github/workflows/unit-test.yml
vendored
@@ -15,13 +15,8 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Enable latestcorepack
|
- name: Enable corepack
|
||||||
run: |
|
run: corepack enable
|
||||||
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
|
|
||||||
npm install -g corepack@latest
|
|
||||||
echo "After : corepack version => $(corepack --version)"
|
|
||||||
corepack enable
|
|
||||||
pnpm --version
|
|
||||||
|
|
||||||
- name: Install Node.js
|
- name: Install Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
@@ -46,7 +41,7 @@ jobs:
|
|||||||
run: pnpm install --frozen-lockfile
|
run: pnpm install --frozen-lockfile
|
||||||
|
|
||||||
- name: Pnpm Build
|
- name: Pnpm Build
|
||||||
run: pnpm turbo build --filter="./packages/*"
|
run: pnpm turbo build
|
||||||
|
|
||||||
- name: Unit Tests
|
- name: Unit Tests
|
||||||
run: pnpm test:ci
|
run: pnpm test:ci
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,7 +5,6 @@ docsTmp
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
.turbo
|
.turbo
|
||||||
coverage
|
coverage
|
||||||
.direnv
|
|
||||||
|
|
||||||
# Next.js
|
# Next.js
|
||||||
**/.next
|
**/.next
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
22
|
20
|
||||||
59
biome.json
59
biome.json
@@ -25,62 +25,7 @@
|
|||||||
"linter": {
|
"linter": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"rules": {
|
"rules": {
|
||||||
"recommended": true,
|
"recommended": true
|
||||||
"correctness": {
|
|
||||||
"useImportExtensions": {
|
|
||||||
"level": "error",
|
|
||||||
"options": {
|
|
||||||
"suggestedExtensions": {
|
|
||||||
"ts": {
|
|
||||||
"module": "js",
|
|
||||||
"component": "jsx"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"overrides": [
|
|
||||||
{
|
|
||||||
"include": ["**/package.json"],
|
|
||||||
"linter": {
|
|
||||||
"enabled": false
|
|
||||||
},
|
|
||||||
"formatter": {
|
|
||||||
"enabled": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"include": ["packages/**/src/**"],
|
|
||||||
"linter": {
|
|
||||||
"enabled": true,
|
|
||||||
"rules": {
|
|
||||||
"recommended": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"include": ["packages/**/src/tests/**", "packages/**/src/test/**"],
|
|
||||||
"linter": {
|
|
||||||
"rules": {
|
|
||||||
"correctness": {
|
|
||||||
"useImportExtensions": "off"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"include": ["packages/cojson-storage-indexeddb/**"],
|
|
||||||
"linter": {
|
|
||||||
"enabled": true,
|
|
||||||
"rules": {
|
|
||||||
"recommended": true,
|
|
||||||
"suspicious": {
|
|
||||||
"noExplicitAny": "info"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
36
examples/book-shelf/.gitignore
vendored
Normal file
36
examples/book-shelf/.gitignore
vendored
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
/node_modules
|
||||||
|
/.pnp
|
||||||
|
.pnp.js
|
||||||
|
.yarn/install-state.gz
|
||||||
|
|
||||||
|
# testing
|
||||||
|
/coverage
|
||||||
|
|
||||||
|
# next.js
|
||||||
|
/.next/
|
||||||
|
/out/
|
||||||
|
|
||||||
|
# production
|
||||||
|
/build
|
||||||
|
|
||||||
|
# misc
|
||||||
|
.DS_Store
|
||||||
|
*.pem
|
||||||
|
|
||||||
|
# debug
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# local env files
|
||||||
|
.env*.local
|
||||||
|
|
||||||
|
# vercel
|
||||||
|
.vercel
|
||||||
|
|
||||||
|
# typescript
|
||||||
|
*.tsbuildinfo
|
||||||
|
next-env.d.ts
|
||||||
229
examples/book-shelf/CHANGELOG.md
Normal file
229
examples/book-shelf/CHANGELOG.md
Normal file
@@ -0,0 +1,229 @@
|
|||||||
|
# jazz-example-book-shelf
|
||||||
|
|
||||||
|
## 0.1.27
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [9212ab8]
|
||||||
|
- Updated dependencies [8b87117]
|
||||||
|
- jazz-react@0.8.35
|
||||||
|
- jazz-tools@0.8.35
|
||||||
|
- jazz-browser-media-images@0.8.35
|
||||||
|
|
||||||
|
## 0.1.26
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-react@0.8.34
|
||||||
|
- jazz-tools@0.8.34
|
||||||
|
- jazz-browser-media-images@0.8.34
|
||||||
|
|
||||||
|
## 0.1.25
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-browser-media-images@0.8.33
|
||||||
|
- jazz-react@0.8.33
|
||||||
|
|
||||||
|
## 0.1.24
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [df42b2b]
|
||||||
|
- jazz-tools@0.8.32
|
||||||
|
- jazz-react@0.8.32
|
||||||
|
- jazz-browser-media-images@0.8.32
|
||||||
|
|
||||||
|
## 0.1.23
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-react@0.8.31
|
||||||
|
- jazz-tools@0.8.31
|
||||||
|
- jazz-browser-media-images@0.8.31
|
||||||
|
|
||||||
|
## 0.1.22
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-react@0.8.30
|
||||||
|
- jazz-tools@0.8.30
|
||||||
|
- jazz-browser-media-images@0.8.30
|
||||||
|
|
||||||
|
## 0.1.21
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-react@0.8.29
|
||||||
|
- jazz-tools@0.8.29
|
||||||
|
- jazz-browser-media-images@0.8.29
|
||||||
|
|
||||||
|
## 0.1.20
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-react@0.8.28
|
||||||
|
- jazz-tools@0.8.28
|
||||||
|
- jazz-browser-media-images@0.8.28
|
||||||
|
|
||||||
|
## 0.1.19
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-react@0.8.27
|
||||||
|
- jazz-tools@0.8.27
|
||||||
|
- jazz-browser-media-images@0.8.27
|
||||||
|
|
||||||
|
## 0.1.18
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [59d37df]
|
||||||
|
- jazz-react@0.8.26
|
||||||
|
|
||||||
|
## 0.1.17
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-browser-media-images@0.8.24
|
||||||
|
- jazz-react@0.8.24
|
||||||
|
|
||||||
|
## 0.1.16
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [d348c2d]
|
||||||
|
- Updated dependencies [6902b5b]
|
||||||
|
- Updated dependencies [1a0cd3d]
|
||||||
|
- jazz-tools@0.8.23
|
||||||
|
- jazz-react@0.8.23
|
||||||
|
- jazz-browser-media-images@0.8.23
|
||||||
|
|
||||||
|
## 0.1.15
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [59cc64d]
|
||||||
|
- jazz-react@0.8.22
|
||||||
|
- jazz-browser-media-images@0.8.22
|
||||||
|
|
||||||
|
## 0.1.14
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [149ca97]
|
||||||
|
- jazz-tools@0.8.21
|
||||||
|
- jazz-react@0.8.21
|
||||||
|
- jazz-browser-media-images@0.8.21
|
||||||
|
|
||||||
|
## 0.1.13
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [dd9b13f]
|
||||||
|
- Updated dependencies [a69ed0b]
|
||||||
|
- Updated dependencies [3ef3ff3]
|
||||||
|
- Updated dependencies [c6931b8]
|
||||||
|
- jazz-react@0.8.20
|
||||||
|
- jazz-browser-media-images@0.8.20
|
||||||
|
|
||||||
|
## 0.1.12
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-react@0.8.19
|
||||||
|
- jazz-tools@0.8.19
|
||||||
|
- jazz-browser-media-images@0.8.19
|
||||||
|
|
||||||
|
## 0.1.11
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-react@0.8.18
|
||||||
|
- jazz-tools@0.8.18
|
||||||
|
- jazz-browser-media-images@0.8.18
|
||||||
|
|
||||||
|
## 0.1.10
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-react@0.8.17
|
||||||
|
- jazz-tools@0.8.17
|
||||||
|
- jazz-browser-media-images@0.8.17
|
||||||
|
|
||||||
|
## 0.1.9
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [2af107c]
|
||||||
|
- jazz-react@0.8.16
|
||||||
|
- jazz-browser-media-images@0.8.16
|
||||||
|
- jazz-tools@0.8.16
|
||||||
|
|
||||||
|
## 0.1.8
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [cce679b]
|
||||||
|
- jazz-tools@0.8.15
|
||||||
|
- jazz-browser-media-images@0.8.15
|
||||||
|
- jazz-react@0.8.15
|
||||||
|
|
||||||
|
## 0.1.7
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [36273b3]
|
||||||
|
- jazz-tools@0.8.14
|
||||||
|
- jazz-browser-media-images@0.8.14
|
||||||
|
- jazz-react@0.8.14
|
||||||
|
|
||||||
|
## 0.1.6
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [fd011d7]
|
||||||
|
- jazz-tools@0.8.13
|
||||||
|
- jazz-browser-media-images@0.8.13
|
||||||
|
- jazz-react@0.8.13
|
||||||
|
|
||||||
|
## 0.1.5
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [3cc6aee]
|
||||||
|
- jazz-react@0.8.12
|
||||||
|
- jazz-tools@0.8.12
|
||||||
|
- jazz-browser-media-images@0.8.12
|
||||||
|
|
||||||
|
## 0.1.4
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-react@0.8.11
|
||||||
|
- jazz-tools@0.8.11
|
||||||
|
- jazz-browser-media-images@0.8.11
|
||||||
|
|
||||||
|
## 0.1.3
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-browser-media-images@0.8.7
|
||||||
|
- jazz-react@0.8.7
|
||||||
|
|
||||||
|
## 0.1.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- jazz-browser-media-images@0.8.6
|
||||||
|
- jazz-react@0.8.6
|
||||||
|
|
||||||
|
## 0.1.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [c3f4e6b]
|
||||||
|
- Updated dependencies [d9152ed]
|
||||||
|
- jazz-tools@0.8.5
|
||||||
|
- jazz-browser-media-images@0.8.5
|
||||||
|
- jazz-react@0.8.5
|
||||||
4
examples/book-shelf/Dockerfile
Normal file
4
examples/book-shelf/Dockerfile
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
FROM caddy:2.7.3-alpine
|
||||||
|
LABEL org.opencontainers.image.source="https://github.com/garden-co/jazz"
|
||||||
|
|
||||||
|
COPY ./dist /usr/share/caddy/
|
||||||
41
examples/book-shelf/README.md
Normal file
41
examples/book-shelf/README.md
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
# Book shelf example with Jazz and Next.js
|
||||||
|
|
||||||
|
This is an example of a book shelf where you can add and review books.
|
||||||
|
It shows you how to create and edit data, upload images, and share data publicly.
|
||||||
|
|
||||||
|
Live version: https://books-demo.jazz.tools
|
||||||
|
|
||||||
|
## Installing & running the example locally
|
||||||
|
|
||||||
|
(This requires `pnpm` to be installed, see [https://pnpm.io/installation](https://pnpm.io/installation))
|
||||||
|
|
||||||
|
Start by downloading the [jazz repository](https://github.com/garden-co/jazz):
|
||||||
|
```bash
|
||||||
|
npx degit gardencmp/jazz jazz
|
||||||
|
```
|
||||||
|
|
||||||
|
Go to the book-shelf example directory:
|
||||||
|
```bash
|
||||||
|
cd jazz/examples/book-shelf
|
||||||
|
```
|
||||||
|
|
||||||
|
Install and build dependencies:
|
||||||
|
```bash
|
||||||
|
pnpm i && npx turbo build
|
||||||
|
```
|
||||||
|
|
||||||
|
Start the dev server:
|
||||||
|
```bash
|
||||||
|
pnpm dev
|
||||||
|
```
|
||||||
|
|
||||||
|
## Questions / problems / feedback
|
||||||
|
|
||||||
|
If you have feedback, let us know on [Discord](https://discord.gg/utDMjHYg42) or open an issue or PR to fix something that seems wrong.
|
||||||
|
|
||||||
|
|
||||||
|
## Configuration: sync server
|
||||||
|
|
||||||
|
By default, the example app uses [Jazz Cloud](https://jazz.tools/cloud) (`wss://cloud.jazz.tools`) - so cross-device use, invites and collaboration should just work.
|
||||||
|
|
||||||
|
You can also run a local sync server by running `npx jazz-run sync` and adding the query param `?sync=ws://localhost:4200` to the URL of the example app (for example: `http://localhost:5173/?peer=ws://localhost:4200`), or by setting the `sync` parameter of the `<Jazz.Provider>` provider component in [./src/components/JazzAndAuth.tsx](./src/components/JazzAndAuth.tsx).
|
||||||
56
examples/book-shelf/job-template.nomad
Normal file
56
examples/book-shelf/job-template.nomad
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
job "example-bookShelf$BRANCH_SUFFIX" {
|
||||||
|
region = "global"
|
||||||
|
datacenters = ["*"]
|
||||||
|
|
||||||
|
group "static" {
|
||||||
|
count = 4
|
||||||
|
|
||||||
|
network {
|
||||||
|
port "http" {
|
||||||
|
to = 80
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
constraint {
|
||||||
|
attribute = "${node.class}"
|
||||||
|
operator = "="
|
||||||
|
value = "cloud"
|
||||||
|
}
|
||||||
|
|
||||||
|
spread {
|
||||||
|
attribute = "${node.datacenter}"
|
||||||
|
weight = 100
|
||||||
|
}
|
||||||
|
|
||||||
|
constraint {
|
||||||
|
distinct_hosts = true
|
||||||
|
}
|
||||||
|
|
||||||
|
task "server" {
|
||||||
|
driver = "docker"
|
||||||
|
|
||||||
|
config {
|
||||||
|
image = "$DOCKER_TAG"
|
||||||
|
ports = ["http"]
|
||||||
|
|
||||||
|
auth = {
|
||||||
|
username = "$DOCKER_USER"
|
||||||
|
password = "$DOCKER_PASSWORD"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
service {
|
||||||
|
tags = ["public"]
|
||||||
|
name = "example-bookShelf$BRANCH_SUFFIX"
|
||||||
|
port = "http"
|
||||||
|
provider = "consul"
|
||||||
|
}
|
||||||
|
|
||||||
|
resources {
|
||||||
|
cpu = 50 # MHz
|
||||||
|
memory = 50 # MB
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
# deploy bump 4
|
||||||
5
examples/book-shelf/next-env.d.ts
vendored
Normal file
5
examples/book-shelf/next-env.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
/// <reference types="next" />
|
||||||
|
/// <reference types="next/image-types/global" />
|
||||||
|
|
||||||
|
// NOTE: This file should not be edited
|
||||||
|
// see https://nextjs.org/docs/basic-features/typescript for more information.
|
||||||
4
examples/book-shelf/next.config.mjs
Normal file
4
examples/book-shelf/next.config.mjs
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
/** @type {import('next').NextConfig} */
|
||||||
|
const nextConfig = {};
|
||||||
|
|
||||||
|
export default nextConfig;
|
||||||
29
examples/book-shelf/package.json
Normal file
29
examples/book-shelf/package.json
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"name": "jazz-example-book-shelf",
|
||||||
|
"version": "0.1.27",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"dev": "next dev",
|
||||||
|
"format-and-lint": "biome check .",
|
||||||
|
"format-and-lint:fix": "biome check . --write",
|
||||||
|
"build": "next build",
|
||||||
|
"start": "next start"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"clsx": "^2.0.0",
|
||||||
|
"jazz-browser-media-images": "workspace:0.8.35",
|
||||||
|
"jazz-react": "workspace:0.8.35",
|
||||||
|
"jazz-tools": "workspace:0.8.35",
|
||||||
|
"next": "14.2.5",
|
||||||
|
"react": "^18.2.0",
|
||||||
|
"react-dom": "^18.2.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "^22.5.1",
|
||||||
|
"@types/react": "^18.2.19",
|
||||||
|
"@types/react-dom": "^18.2.7",
|
||||||
|
"postcss": "^8.4.27",
|
||||||
|
"tailwindcss": "3.3.2",
|
||||||
|
"typescript": "^5.3.3"
|
||||||
|
}
|
||||||
|
}
|
||||||
8
examples/book-shelf/postcss.config.mjs
Normal file
8
examples/book-shelf/postcss.config.mjs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/** @type {import('postcss-load-config').Config} */
|
||||||
|
const config = {
|
||||||
|
plugins: {
|
||||||
|
tailwindcss: {},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default config;
|
||||||
139
examples/book-shelf/src/app/add/page.tsx
Normal file
139
examples/book-shelf/src/app/add/page.tsx
Normal file
@@ -0,0 +1,139 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { Button } from "@/components/Button";
|
||||||
|
import { Container } from "@/components/Container";
|
||||||
|
import { useAccount } from "@/components/JazzAndAuth";
|
||||||
|
import RatingInput from "@/components/RatingInput";
|
||||||
|
import { BookReview, ListOfBookReviews } from "@/schema";
|
||||||
|
import { createImage } from "jazz-browser-media-images";
|
||||||
|
import { Group, ImageDefinition } from "jazz-tools";
|
||||||
|
import { useRouter } from "next/navigation";
|
||||||
|
import { ChangeEvent, useState } from "react";
|
||||||
|
|
||||||
|
export default function AddBookReview() {
|
||||||
|
const { me } = useAccount();
|
||||||
|
|
||||||
|
const [title, setTitle] = useState("");
|
||||||
|
const [author, setAuthor] = useState("");
|
||||||
|
const [review, setReview] = useState("");
|
||||||
|
const [rating, setRating] = useState(0);
|
||||||
|
const [dateRead, setDateRead] = useState(
|
||||||
|
new Date().toISOString().split("T")[0],
|
||||||
|
);
|
||||||
|
const [coverImage, setCoverImage] = useState<ImageDefinition | undefined>();
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
|
const onDateChange = (event: ChangeEvent<HTMLInputElement>) => {
|
||||||
|
const date = new Date(event.currentTarget.value)
|
||||||
|
.toISOString()
|
||||||
|
.split("T")[0];
|
||||||
|
setDateRead(date);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onImageChange = (event: ChangeEvent<HTMLInputElement>) => {
|
||||||
|
const file = event.currentTarget.files?.[0];
|
||||||
|
const group = Group.create({ owner: me });
|
||||||
|
group.addMember("everyone", "reader");
|
||||||
|
|
||||||
|
if (file) {
|
||||||
|
createImage(file, { owner: group }).then((image) => {
|
||||||
|
setCoverImage(image);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const onSubmit = (event: React.FormEvent<HTMLFormElement>) => {
|
||||||
|
event.preventDefault();
|
||||||
|
|
||||||
|
if (!me?.profile) return;
|
||||||
|
|
||||||
|
const bookReview = BookReview.create(
|
||||||
|
{
|
||||||
|
title,
|
||||||
|
author,
|
||||||
|
review,
|
||||||
|
rating,
|
||||||
|
dateRead: new Date(dateRead),
|
||||||
|
cover: coverImage,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
owner: me.profile._owner,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!me.profile.bookReviews) {
|
||||||
|
me.profile.bookReviews = ListOfBookReviews.create([], {
|
||||||
|
owner: me.profile._owner,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
me.profile.bookReviews.push(bookReview);
|
||||||
|
router.push("/");
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container className="grid max-w-lg gap-8 py-8">
|
||||||
|
<h1 className="text-lg font-semibold text-black">Add book review</h1>
|
||||||
|
<form action="" className="grid gap-4" onSubmit={onSubmit}>
|
||||||
|
<label className="grid gap-1 text-sm text-gray-600">
|
||||||
|
Cover
|
||||||
|
<input type="file" onChange={onImageChange} />
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<label className="grid gap-1 text-sm text-gray-600">
|
||||||
|
Title
|
||||||
|
<input
|
||||||
|
className="rounded border border-gray-300 px-2 py-1 shadow-sm"
|
||||||
|
type="text"
|
||||||
|
value={title}
|
||||||
|
required
|
||||||
|
onChange={(e) => setTitle(e.target.value)}
|
||||||
|
></input>
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<label className="grid gap-1 text-sm text-gray-600">
|
||||||
|
Author
|
||||||
|
<input
|
||||||
|
className="rounded border border-gray-300 px-2 py-1 shadow-sm"
|
||||||
|
type="text"
|
||||||
|
value={author}
|
||||||
|
required
|
||||||
|
onChange={(e) => setAuthor(e.target.value)}
|
||||||
|
></input>
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<label className="grid gap-1 text-sm text-gray-600">
|
||||||
|
Date read
|
||||||
|
<input
|
||||||
|
className="rounded border border-gray-300 px-2 py-1 shadow-sm"
|
||||||
|
type="date"
|
||||||
|
value={dateRead}
|
||||||
|
required
|
||||||
|
onChange={onDateChange}
|
||||||
|
/>
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<div className="grid gap-1 text-sm text-gray-600">
|
||||||
|
Rating
|
||||||
|
<RatingInput
|
||||||
|
value={rating}
|
||||||
|
onChange={(rating) => setRating(rating)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<label className="grid gap-1 text-sm text-gray-600">
|
||||||
|
Review
|
||||||
|
<textarea
|
||||||
|
className="rounded border border-gray-300 px-2 py-1 shadow-sm"
|
||||||
|
value={review}
|
||||||
|
onChange={(e) => setReview(e.target.value)}
|
||||||
|
></textarea>
|
||||||
|
</label>
|
||||||
|
<Button variant="primary" type="submit">
|
||||||
|
Add
|
||||||
|
</Button>
|
||||||
|
</form>
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
172
examples/book-shelf/src/app/book/[slug]/page.tsx
Normal file
172
examples/book-shelf/src/app/book/[slug]/page.tsx
Normal file
@@ -0,0 +1,172 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { BookCover } from "@/components/BookCover";
|
||||||
|
import { Container } from "@/components/Container";
|
||||||
|
import { useCoState } from "@/components/JazzAndAuth";
|
||||||
|
import Rating from "@/components/Rating";
|
||||||
|
import RatingInput from "@/components/RatingInput";
|
||||||
|
import { BookReview } from "@/schema";
|
||||||
|
import clsx from "clsx";
|
||||||
|
import { Group, ID } from "jazz-tools";
|
||||||
|
|
||||||
|
const BookReviewTitle = ({
|
||||||
|
bookReview,
|
||||||
|
readOnly,
|
||||||
|
}: {
|
||||||
|
bookReview: BookReview;
|
||||||
|
readOnly: boolean;
|
||||||
|
}) => {
|
||||||
|
const className = "font-serif text-2xl font-bold lg:text-4xl";
|
||||||
|
|
||||||
|
if (readOnly) {
|
||||||
|
return <h1 className={className}>{bookReview.title}</h1>;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<input
|
||||||
|
value={bookReview.title}
|
||||||
|
placeholder="Book title"
|
||||||
|
className={clsx(
|
||||||
|
className,
|
||||||
|
"w-full rounded border border-transparent px-2 py-1 hover:border-gray-300 hover:shadow-sm",
|
||||||
|
)}
|
||||||
|
onChange={(e) => (bookReview.title = e.target.value)}
|
||||||
|
></input>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const BookReviewAuthor = ({
|
||||||
|
bookReview,
|
||||||
|
readOnly,
|
||||||
|
}: {
|
||||||
|
bookReview: BookReview;
|
||||||
|
readOnly: boolean;
|
||||||
|
}) => {
|
||||||
|
const className = "text-gray-700";
|
||||||
|
|
||||||
|
if (readOnly) {
|
||||||
|
return <p className={className}>by {bookReview.author}</p>;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<input
|
||||||
|
value={bookReview.author}
|
||||||
|
placeholder="Author"
|
||||||
|
className={clsx(
|
||||||
|
className,
|
||||||
|
"w-full rounded border border-transparent px-2 py-1 hover:border-gray-300 hover:shadow-sm",
|
||||||
|
)}
|
||||||
|
onChange={(e) => (bookReview.author = e.target.value)}
|
||||||
|
></input>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const BookReviewDateRead = ({
|
||||||
|
bookReview,
|
||||||
|
readOnly,
|
||||||
|
}: {
|
||||||
|
bookReview: BookReview;
|
||||||
|
readOnly: boolean;
|
||||||
|
}) => {
|
||||||
|
const className = "text-gray-700 max-w-[10rem]";
|
||||||
|
|
||||||
|
if (readOnly) {
|
||||||
|
return (
|
||||||
|
bookReview.dateRead && (
|
||||||
|
<p className={className}>{bookReview.dateRead.toLocaleDateString()}</p>
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<input
|
||||||
|
type="date"
|
||||||
|
value={bookReview.dateRead?.toISOString().split("T")[0]}
|
||||||
|
placeholder="Date read"
|
||||||
|
className={clsx(
|
||||||
|
className,
|
||||||
|
"w-full rounded border border-transparent px-2 py-1 hover:border-gray-300 hover:shadow-sm",
|
||||||
|
)}
|
||||||
|
onChange={(e) => {
|
||||||
|
const date = new Date(e.target.value);
|
||||||
|
bookReview.dateRead = date;
|
||||||
|
}}
|
||||||
|
></input>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const BookReviewReview = ({
|
||||||
|
bookReview,
|
||||||
|
readOnly,
|
||||||
|
}: {
|
||||||
|
bookReview: BookReview;
|
||||||
|
readOnly: boolean;
|
||||||
|
}) => {
|
||||||
|
const className = "text-sm leading-relaxed text-gray-600";
|
||||||
|
|
||||||
|
if (readOnly) {
|
||||||
|
if (bookReview.review) {
|
||||||
|
return <p className={className}>{bookReview.review}</p>;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<textarea
|
||||||
|
value={bookReview.review}
|
||||||
|
placeholder="Write your review here..."
|
||||||
|
className={clsx(
|
||||||
|
className,
|
||||||
|
"w-full rounded border border-transparent px-2 py-1 hover:border-gray-300 hover:shadow-sm",
|
||||||
|
)}
|
||||||
|
onChange={(e) => (bookReview.review = e.target.value)}
|
||||||
|
></textarea>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const BookReviewRating = ({
|
||||||
|
bookReview,
|
||||||
|
readOnly,
|
||||||
|
}: {
|
||||||
|
bookReview: BookReview;
|
||||||
|
readOnly: boolean;
|
||||||
|
}) => {
|
||||||
|
const className = "text-2xl sm:mx-0";
|
||||||
|
|
||||||
|
if (readOnly) {
|
||||||
|
return <Rating className={className} rating={bookReview.rating} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<RatingInput
|
||||||
|
className={clsx(className, "p-2")}
|
||||||
|
onChange={(rating) => (bookReview.rating = rating)}
|
||||||
|
value={bookReview.rating}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function Page({ params }: { params: { slug: string } }) {
|
||||||
|
const bookReview = useCoState(BookReview, params.slug as ID<BookReview>);
|
||||||
|
|
||||||
|
if (!bookReview) return <></>;
|
||||||
|
|
||||||
|
const readOnly = !(bookReview._owner.castAs(Group).myRole() === "admin");
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container className="grid gap-12 py-8">
|
||||||
|
<div className="flex flex-col gap-6 sm:flex-row md:gap-10">
|
||||||
|
<div className="w-[180px]">
|
||||||
|
<BookCover bookReview={bookReview} readOnly={readOnly} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="-mx-2 grid max-w-lg flex-1 gap-3 sm:mx-0">
|
||||||
|
<BookReviewTitle bookReview={bookReview} readOnly={readOnly} />
|
||||||
|
<BookReviewAuthor bookReview={bookReview} readOnly={readOnly} />
|
||||||
|
<BookReviewDateRead bookReview={bookReview} readOnly={readOnly} />
|
||||||
|
<BookReviewRating bookReview={bookReview} readOnly={readOnly} />
|
||||||
|
<BookReviewReview bookReview={bookReview} readOnly={readOnly} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
BIN
examples/book-shelf/src/app/favicon.ico
Normal file
BIN
examples/book-shelf/src/app/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
13
examples/book-shelf/src/app/globals.css
Normal file
13
examples/book-shelf/src/app/globals.css
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
@tailwind base;
|
||||||
|
@tailwind components;
|
||||||
|
@tailwind utilities;
|
||||||
|
|
||||||
|
@layer base {
|
||||||
|
:focus {
|
||||||
|
@apply outline-none;
|
||||||
|
}
|
||||||
|
|
||||||
|
:focus-visible {
|
||||||
|
@apply ring-2 ring-purple-600/75 dark:ring-2 dark:ring-white/75;
|
||||||
|
}
|
||||||
|
}
|
||||||
39
examples/book-shelf/src/app/layout.tsx
Normal file
39
examples/book-shelf/src/app/layout.tsx
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
import type { Metadata } from "next";
|
||||||
|
import { Inter } from "next/font/google";
|
||||||
|
import "./globals.css";
|
||||||
|
import { JazzAndAuth } from "@/components/JazzAndAuth";
|
||||||
|
import { Nav } from "@/components/Nav";
|
||||||
|
import clsx from "clsx";
|
||||||
|
import { Fraunces } from "next/font/google";
|
||||||
|
|
||||||
|
const fraunces = Fraunces({
|
||||||
|
subsets: ["latin"],
|
||||||
|
display: "swap",
|
||||||
|
variable: "--font-fraunces",
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: "Jazz Book Shelf",
|
||||||
|
description: "Jazz Book Shelf",
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function RootLayout({
|
||||||
|
children,
|
||||||
|
}: Readonly<{
|
||||||
|
children: React.ReactNode;
|
||||||
|
}>) {
|
||||||
|
return (
|
||||||
|
<html lang="en">
|
||||||
|
<body className={clsx(inter.className, fraunces.variable)}>
|
||||||
|
<JazzAndAuth>
|
||||||
|
<header>
|
||||||
|
<Nav />
|
||||||
|
</header>
|
||||||
|
<main>{children}</main>
|
||||||
|
</JazzAndAuth>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
);
|
||||||
|
}
|
||||||
27
examples/book-shelf/src/app/page.tsx
Normal file
27
examples/book-shelf/src/app/page.tsx
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { Container } from "@/components/Container";
|
||||||
|
import { useAccount } from "@/components/JazzAndAuth";
|
||||||
|
import UserProfile from "@/components/UserProfile";
|
||||||
|
import { JazzAccount } from "@/schema";
|
||||||
|
import { ID } from "jazz-tools";
|
||||||
|
|
||||||
|
export default function Home() {
|
||||||
|
const { me } = useAccount();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container className="grid gap-12 py-8">
|
||||||
|
<UserProfile id={me?.id as ID<JazzAccount>} />
|
||||||
|
|
||||||
|
<label className="flex flex-wrap items-center gap-3">
|
||||||
|
Share your profile:
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
className="w-full rounded border p-1"
|
||||||
|
value={`${window.location.origin}/user/${me?.id}`}
|
||||||
|
readOnly
|
||||||
|
/>
|
||||||
|
</label>
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
14
examples/book-shelf/src/app/user/[slug]/page.tsx
Normal file
14
examples/book-shelf/src/app/user/[slug]/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import { Container } from "@/components/Container";
|
||||||
|
import UserProfile from "@/components/UserProfile";
|
||||||
|
import { JazzAccount } from "@/schema";
|
||||||
|
import { ID } from "jazz-tools";
|
||||||
|
|
||||||
|
export default function Page({ params }: { params: { slug: string } }) {
|
||||||
|
const { slug } = params;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container className="py-8">
|
||||||
|
<UserProfile id={slug as ID<JazzAccount>} />
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
134
examples/book-shelf/src/components/BookCover.tsx
Normal file
134
examples/book-shelf/src/components/BookCover.tsx
Normal file
@@ -0,0 +1,134 @@
|
|||||||
|
import { Button } from "@/components/Button";
|
||||||
|
import { useAccount } from "@/components/JazzAndAuth";
|
||||||
|
import PlusIcon from "@/components/icons/PlusIcon";
|
||||||
|
import { BookReview } from "@/schema";
|
||||||
|
import clsx from "clsx";
|
||||||
|
import { createImage } from "jazz-browser-media-images";
|
||||||
|
import { ProgressiveImg } from "jazz-react";
|
||||||
|
import { Group, ImageDefinition } from "jazz-tools";
|
||||||
|
import { ChangeEvent, useRef, useState } from "react";
|
||||||
|
|
||||||
|
const BookCoverContainer = ({
|
||||||
|
children,
|
||||||
|
className = "",
|
||||||
|
}: {
|
||||||
|
children: React.ReactNode;
|
||||||
|
className?: string;
|
||||||
|
}) => {
|
||||||
|
return (
|
||||||
|
<div className={clsx("h-[240px] lg:h-[260px]", className)}>{children}</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const MockCover = ({ bookReview }: { bookReview: BookReview }) => {
|
||||||
|
return (
|
||||||
|
<div className="flex h-full flex-col items-center justify-center gap-3 rounded-l-sm rounded-r-md bg-gray-100 px-3 text-center shadow-lg">
|
||||||
|
<p className="font-medium">{bookReview.title}</p>
|
||||||
|
<p className="text-xs">{bookReview.author}</p>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export function BookCoverReadOnly({
|
||||||
|
bookReview,
|
||||||
|
className,
|
||||||
|
}: {
|
||||||
|
bookReview: BookReview;
|
||||||
|
className?: string;
|
||||||
|
}) {
|
||||||
|
if (bookReview.cover) {
|
||||||
|
return (
|
||||||
|
<BookCoverContainer className={className}>
|
||||||
|
<ProgressiveImg image={bookReview.cover}>
|
||||||
|
{({ src }) => (
|
||||||
|
<img
|
||||||
|
className="max-h-full max-w-full rounded-l-sm rounded-r-md shadow-lg"
|
||||||
|
src={src}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</ProgressiveImg>
|
||||||
|
</BookCoverContainer>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<BookCoverContainer className={className}>
|
||||||
|
<MockCover bookReview={bookReview} />
|
||||||
|
</BookCoverContainer>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function BookCoverInput({ bookReview }: { bookReview: BookReview }) {
|
||||||
|
const { me } = useAccount();
|
||||||
|
const inputRef = useRef<HTMLInputElement>(null);
|
||||||
|
|
||||||
|
const onImageChange = (event: ChangeEvent<HTMLInputElement>) => {
|
||||||
|
if (!me?.profile) return;
|
||||||
|
|
||||||
|
const file = event.currentTarget.files?.[0];
|
||||||
|
|
||||||
|
if (file) {
|
||||||
|
createImage(file, { owner: me.profile._owner }).then((image) => {
|
||||||
|
bookReview.cover = image;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const onUploadClick = () => {
|
||||||
|
inputRef.current?.click();
|
||||||
|
};
|
||||||
|
|
||||||
|
const remove = () => {
|
||||||
|
bookReview.cover = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
if (bookReview.cover) {
|
||||||
|
return (
|
||||||
|
<div className="group relative inline-block">
|
||||||
|
<BookCoverReadOnly
|
||||||
|
className="transition-opacity group-hover:opacity-40"
|
||||||
|
bookReview={bookReview}
|
||||||
|
/>
|
||||||
|
<div className="absolute left-0 top-0 hidden h-full w-full items-center justify-center rounded-l-sm rounded-r-md group-hover:flex">
|
||||||
|
<Button
|
||||||
|
variant="tertiary"
|
||||||
|
type="button"
|
||||||
|
className="shadow"
|
||||||
|
onClick={remove}
|
||||||
|
>
|
||||||
|
Remove
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<BookCoverContainer className="flex w-[180px] flex-col justify-center rounded-l-sm rounded-r-md bg-gray-100 p-3 shadow-lg">
|
||||||
|
<button
|
||||||
|
className="flex h-full w-full flex-col items-center justify-center gap-3 text-gray-500 transition-colors hover:text-gray-600"
|
||||||
|
type="button"
|
||||||
|
onClick={onUploadClick}
|
||||||
|
>
|
||||||
|
<PlusIcon className="h-10 w-10" />
|
||||||
|
Upload book cover
|
||||||
|
</button>
|
||||||
|
<label className="sr-only">
|
||||||
|
Cover
|
||||||
|
<input ref={inputRef} type="file" onChange={onImageChange} />
|
||||||
|
</label>
|
||||||
|
</BookCoverContainer>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function BookCover({
|
||||||
|
bookReview,
|
||||||
|
readOnly,
|
||||||
|
}: {
|
||||||
|
bookReview: BookReview;
|
||||||
|
readOnly?: boolean;
|
||||||
|
}) {
|
||||||
|
if (readOnly) return <BookCoverReadOnly bookReview={bookReview} />;
|
||||||
|
|
||||||
|
return <BookCoverInput bookReview={bookReview} />;
|
||||||
|
}
|
||||||
30
examples/book-shelf/src/components/BookReviewHeader.tsx
Normal file
30
examples/book-shelf/src/components/BookReviewHeader.tsx
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
import { BookCover } from "@/components/BookCover";
|
||||||
|
import Rating from "@/components/Rating";
|
||||||
|
import RatingInput from "@/components/RatingInput";
|
||||||
|
import { BookReview } from "@/schema";
|
||||||
|
import { Group } from "jazz-tools";
|
||||||
|
|
||||||
|
export function BookReviewHeader({ bookReview }: { bookReview: BookReview }) {
|
||||||
|
const { title, author, rating, review, dateRead } = bookReview;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="grid gap-5">
|
||||||
|
<div>
|
||||||
|
<h1 className="mb-1 font-serif text-2xl font-bold md:mb-3 lg:text-4xl">
|
||||||
|
{title}
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<p className="text-gray-500">by {author}</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{bookReview._owner.castAs(Group).myRole() === "admin" ? (
|
||||||
|
<RatingInput
|
||||||
|
onChange={(rating) => (bookReview.rating = rating)}
|
||||||
|
value={rating}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
<Rating className="mx-auto text-2xl sm:mx-0" rating={rating} />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
35
examples/book-shelf/src/components/BookReviewThumbnail.tsx
Normal file
35
examples/book-shelf/src/components/BookReviewThumbnail.tsx
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { BookCover, BookCoverReadOnly } from "@/components/BookCover";
|
||||||
|
import { useCoState } from "@/components/JazzAndAuth";
|
||||||
|
import StarIcon from "@/components/icons/StarIcon";
|
||||||
|
import { ID } from "jazz-tools";
|
||||||
|
import Link from "next/link";
|
||||||
|
import { BookReview } from "../schema";
|
||||||
|
|
||||||
|
export function BookReviewThumbnail({ id }: { id: ID<BookReview> }) {
|
||||||
|
const bookReview = useCoState(BookReview, id);
|
||||||
|
|
||||||
|
if (!bookReview) return <></>;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="inline-flex shrink-0 gap-4 rounded border p-4 sm:block sm:space-y-6 sm:border-0 sm:p-0 md:w-[200px]">
|
||||||
|
<Link href={`/book/${bookReview.id}`} className="sm:block sm:flex-1">
|
||||||
|
<BookCoverReadOnly bookReview={bookReview} />
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
<div className="flex-1">
|
||||||
|
<Link href={`/book/${bookReview.id}`}>
|
||||||
|
<h2 className="mb-1 text-sm font-medium">{bookReview.title}</h2>
|
||||||
|
</Link>
|
||||||
|
<div className="mb-2 flex flex-col gap-2 text-sm text-gray-500 sm:flex-row sm:items-center">
|
||||||
|
<p>{bookReview.author}</p>
|
||||||
|
<div className="flex items-center gap-0.5 text-xs font-semibold leading-none">
|
||||||
|
<StarIcon className="-mt-px text-base text-yellow-400" />
|
||||||
|
{bookReview.rating}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
65
examples/book-shelf/src/components/Button.tsx
Normal file
65
examples/book-shelf/src/components/Button.tsx
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
import clsx from "clsx";
|
||||||
|
import Link from "next/link";
|
||||||
|
import type { ComponentProps } from "react";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
variant?: "primary" | "secondary" | "tertiary";
|
||||||
|
className?: string;
|
||||||
|
size?: "sm" | "md" | "lg";
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AnchorProps
|
||||||
|
extends Props,
|
||||||
|
React.AnchorHTMLAttributes<HTMLAnchorElement> {
|
||||||
|
href: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
type ButtonProps = ComponentProps<"button"> & Props;
|
||||||
|
|
||||||
|
export function Button(props: AnchorProps | ButtonProps) {
|
||||||
|
const {
|
||||||
|
className: customClassName = "",
|
||||||
|
variant = "primary",
|
||||||
|
children,
|
||||||
|
size = "md",
|
||||||
|
} = props;
|
||||||
|
|
||||||
|
const variantClassNames = {
|
||||||
|
base: "inline-flex gap-2 items-center justify-center rounded-full overflow-hidden transition-colors",
|
||||||
|
primary:
|
||||||
|
"bg-purple-300 font-medium text-purple-950 px-4 py-2 rounded-full hover:bg-purple-200",
|
||||||
|
secondary:
|
||||||
|
"rounded-full bg-slate-100 font-medium text-slate-600 hover:bg-slate-200",
|
||||||
|
tertiary: "rounded-full bg-white text-purple-950 font-medium",
|
||||||
|
};
|
||||||
|
|
||||||
|
const sizeClassNames = {
|
||||||
|
sm: "py-1.5 px-3 text-sm",
|
||||||
|
md: "py-2 px-5",
|
||||||
|
lg: "py-2 md:py-2.5 px-6 md:text-lg",
|
||||||
|
};
|
||||||
|
|
||||||
|
const className = clsx(
|
||||||
|
customClassName,
|
||||||
|
variantClassNames.base,
|
||||||
|
variantClassNames[variant],
|
||||||
|
sizeClassNames[size],
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!!(props as AnchorProps).href) {
|
||||||
|
const anchorProps = props as AnchorProps;
|
||||||
|
return (
|
||||||
|
<Link href={anchorProps.href} className={className}>
|
||||||
|
{children}
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const buttonProps = props as ButtonProps;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button {...buttonProps} className={className}>
|
||||||
|
{children}
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
}
|
||||||
13
examples/book-shelf/src/components/Container.tsx
Normal file
13
examples/book-shelf/src/components/Container.tsx
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import clsx from "clsx";
|
||||||
|
|
||||||
|
export function Container({
|
||||||
|
children,
|
||||||
|
className,
|
||||||
|
}: {
|
||||||
|
children: React.ReactNode;
|
||||||
|
className?: string;
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<div className={clsx("mx-auto max-w-4xl px-4", className)}>{children}</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
29
examples/book-shelf/src/components/JazzAndAuth.tsx
Normal file
29
examples/book-shelf/src/components/JazzAndAuth.tsx
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { JazzAccount } from "@/schema";
|
||||||
|
import { DemoAuthBasicUI, createJazzReactApp, useDemoAuth } from "jazz-react";
|
||||||
|
|
||||||
|
const Jazz = createJazzReactApp({
|
||||||
|
AccountSchema: JazzAccount,
|
||||||
|
});
|
||||||
|
|
||||||
|
export const { useAccount, useCoState } = Jazz;
|
||||||
|
|
||||||
|
export function JazzAndAuth({ children }: { children: React.ReactNode }) {
|
||||||
|
const [auth, authState] = useDemoAuth();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Jazz.Provider
|
||||||
|
auth={auth}
|
||||||
|
// replace `you@example.com` with your email as a temporary API key
|
||||||
|
peer="wss://cloud.jazz.tools/?key=you@example.com"
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</Jazz.Provider>
|
||||||
|
{authState.state !== "signedIn" && (
|
||||||
|
<DemoAuthBasicUI appName="Jazz Book Shelf" state={authState} />
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
26
examples/book-shelf/src/components/Nav.tsx
Normal file
26
examples/book-shelf/src/components/Nav.tsx
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { Button } from "@/components/Button";
|
||||||
|
import { Container } from "@/components/Container";
|
||||||
|
import { useAccount } from "@/components/JazzAndAuth";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
|
export function Nav() {
|
||||||
|
const { me, logOut } = useAccount();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<nav className="border-b py-3">
|
||||||
|
<Container className="flex items-center justify-between gap-12 text-sm">
|
||||||
|
<Link href="/" className="font-serif text-lg font-semibold">
|
||||||
|
Jazz Book Shelf
|
||||||
|
</Link>
|
||||||
|
<div className="flex items-center gap-4 text-sm">
|
||||||
|
<p>{me?.profile?.name}</p>
|
||||||
|
<Button variant="secondary" onClick={logOut}>
|
||||||
|
Log out
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</Container>
|
||||||
|
</nav>
|
||||||
|
);
|
||||||
|
}
|
||||||
21
examples/book-shelf/src/components/Rating.tsx
Normal file
21
examples/book-shelf/src/components/Rating.tsx
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import StarIcon from "@/components/icons/StarIcon";
|
||||||
|
import StarOutlineIcon from "@/components/icons/StarOutlineIcon";
|
||||||
|
|
||||||
|
export default function Rating({
|
||||||
|
rating,
|
||||||
|
className = "",
|
||||||
|
}: {
|
||||||
|
rating?: number;
|
||||||
|
className?: string;
|
||||||
|
}) {
|
||||||
|
const max = 5;
|
||||||
|
const outline = max - (rating || 0);
|
||||||
|
return (
|
||||||
|
<div className={`inline-flex gap-0.5 text-yellow-400 ${className}`}>
|
||||||
|
{rating ? [...Array(rating)].map((x, i) => <StarIcon key={i} />) : <></>}
|
||||||
|
{[...Array(outline)].map((x, i) => (
|
||||||
|
<StarOutlineIcon key={i} />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
47
examples/book-shelf/src/components/RatingInput.tsx
Normal file
47
examples/book-shelf/src/components/RatingInput.tsx
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import StarIcon from "@/components/icons/StarIcon";
|
||||||
|
import StarOutlineIcon from "@/components/icons/StarOutlineIcon";
|
||||||
|
import clsx from "clsx";
|
||||||
|
|
||||||
|
interface RatingInputProps {
|
||||||
|
value?: number;
|
||||||
|
onChange: (value: number) => void;
|
||||||
|
className?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function RatingInput({
|
||||||
|
value = 0,
|
||||||
|
onChange,
|
||||||
|
className,
|
||||||
|
}: RatingInputProps) {
|
||||||
|
const handleChange = (newRating: number) => {
|
||||||
|
onChange(newRating > 5 ? 5 : newRating);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={clsx(className, "flex gap-0.5 text-2xl text-yellow-400")}>
|
||||||
|
{[...Array(5)].map((_, i) => {
|
||||||
|
return i < value ? (
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="focus:outline-none"
|
||||||
|
onClick={() => handleChange(i + 1)}
|
||||||
|
key={i}
|
||||||
|
>
|
||||||
|
<StarIcon />
|
||||||
|
</button>
|
||||||
|
) : (
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="focus:outline-none"
|
||||||
|
onClick={() => handleChange(i + 1)}
|
||||||
|
key={i}
|
||||||
|
>
|
||||||
|
<StarOutlineIcon />
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
39
examples/book-shelf/src/components/UserProfile.tsx
Normal file
39
examples/book-shelf/src/components/UserProfile.tsx
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { BookReviewThumbnail } from "@/components/BookReviewThumbnail";
|
||||||
|
import { Button } from "@/components/Button";
|
||||||
|
import { useCoState } from "@/components/JazzAndAuth";
|
||||||
|
import { JazzAccount, JazzProfile, ListOfBookReviews } from "@/schema";
|
||||||
|
import { Group, ID } from "jazz-tools";
|
||||||
|
|
||||||
|
export default function UserProfile({ id }: { id: ID<JazzAccount> }) {
|
||||||
|
const user = useCoState(JazzAccount, id);
|
||||||
|
const profile = useCoState(JazzProfile, user?.profile?.id);
|
||||||
|
|
||||||
|
const bookReviews = useCoState(
|
||||||
|
ListOfBookReviews,
|
||||||
|
user?.profile?._refs.bookReviews?.id,
|
||||||
|
[{}],
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="grid gap-4">
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<h1 className="font-serif text-lg font-medium sm:text-2xl">
|
||||||
|
{profile?.name}'s book shelf
|
||||||
|
</h1>
|
||||||
|
{profile?._owner.castAs(Group).myRole() === "admin" && (
|
||||||
|
<Button href="/add" variant="primary">
|
||||||
|
Add book
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="grid gap-4 md:grid-cols-4">
|
||||||
|
{bookReviews?.map((bookReview) => (
|
||||||
|
<BookReviewThumbnail key={bookReview.id} id={bookReview.id} />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
export function LinkIcon() {
|
export default function PlusIcon({ className }: { className?: string }) {
|
||||||
return (
|
return (
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@@ -6,12 +6,14 @@ export function LinkIcon() {
|
|||||||
viewBox="0 0 24 24"
|
viewBox="0 0 24 24"
|
||||||
strokeWidth={1.5}
|
strokeWidth={1.5}
|
||||||
stroke="currentColor"
|
stroke="currentColor"
|
||||||
className="w-3 h-3"
|
className={className}
|
||||||
|
width="1em"
|
||||||
|
height="1em"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
strokeLinecap="round"
|
strokeLinecap="round"
|
||||||
strokeLinejoin="round"
|
strokeLinejoin="round"
|
||||||
d="M13.19 8.688a4.5 4.5 0 0 1 1.242 7.244l-4.5 4.5a4.5 4.5 0 0 1-6.364-6.364l1.757-1.757m13.35-.622 1.757-1.757a4.5 4.5 0 0 0-6.364-6.364l-4.5 4.5a4.5 4.5 0 0 0 1.242 7.244"
|
d="M12 4.5v15m7.5-7.5h-15"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
18
examples/book-shelf/src/components/icons/StarIcon.tsx
Normal file
18
examples/book-shelf/src/components/icons/StarIcon.tsx
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
export default function StarIcon({ className }: { className?: string }) {
|
||||||
|
return (
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="currentColor"
|
||||||
|
className={className}
|
||||||
|
width="1em"
|
||||||
|
height="1em"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fillRule="evenodd"
|
||||||
|
d="M10.788 3.21c.448-1.077 1.976-1.077 2.424 0l2.082 5.006 5.404.434c1.164.093 1.636 1.545.749 2.305l-4.117 3.527 1.257 5.273c.271 1.136-.964 2.033-1.96 1.425L12 18.354 7.373 21.18c-.996.608-2.231-.29-1.96-1.425l1.257-5.273-4.117-3.527c-.887-.76-.415-2.212.749-2.305l5.404-.434 2.082-5.005Z"
|
||||||
|
clipRule="evenodd"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
20
examples/book-shelf/src/components/icons/StarOutlineIcon.tsx
Normal file
20
examples/book-shelf/src/components/icons/StarOutlineIcon.tsx
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
export default function StarOutlineIcon({ className }: { className?: string }) {
|
||||||
|
return (
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
fill="none"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
strokeWidth={1.5}
|
||||||
|
stroke="currentColor"
|
||||||
|
className={className}
|
||||||
|
width="1em"
|
||||||
|
height="1em"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
strokeLinecap="round"
|
||||||
|
strokeLinejoin="round"
|
||||||
|
d="M11.48 3.499a.562.562 0 0 1 1.04 0l2.125 5.111a.563.563 0 0 0 .475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 0 0-.182.557l1.285 5.385a.562.562 0 0 1-.84.61l-4.725-2.885a.562.562 0 0 0-.586 0L6.982 20.54a.562.562 0 0 1-.84-.61l1.285-5.386a.562.562 0 0 0-.182-.557l-4.204-3.602a.562.562 0 0 1 .321-.988l5.518-.442a.563.563 0 0 0 .475-.345L11.48 3.5Z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
37
examples/book-shelf/src/schema.ts
Normal file
37
examples/book-shelf/src/schema.ts
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
import {
|
||||||
|
Account,
|
||||||
|
CoList,
|
||||||
|
CoMap,
|
||||||
|
Encoders,
|
||||||
|
ImageDefinition,
|
||||||
|
Profile,
|
||||||
|
co,
|
||||||
|
} from "jazz-tools";
|
||||||
|
|
||||||
|
export class BookReview extends CoMap {
|
||||||
|
title = co.string;
|
||||||
|
author = co.string;
|
||||||
|
rating = co.number;
|
||||||
|
dateRead? = co.encoded(Encoders.Date);
|
||||||
|
review? = co.string;
|
||||||
|
cover? = co.ref(ImageDefinition, { optional: true });
|
||||||
|
}
|
||||||
|
|
||||||
|
export class ListOfBookReviews extends CoList.Of(co.ref(BookReview)) {}
|
||||||
|
|
||||||
|
/** The profile is an app-specific per-user public `CoMap`
|
||||||
|
* where you can store top-level objects for that user */
|
||||||
|
export class JazzProfile extends Profile {
|
||||||
|
bookReviews = co.ref(ListOfBookReviews);
|
||||||
|
}
|
||||||
|
|
||||||
|
export class JazzAccount extends Account {
|
||||||
|
profile = co.ref(JazzProfile);
|
||||||
|
|
||||||
|
/** The account migration is run on account creation and on every log-in.
|
||||||
|
* You can use it to set up the account root and any other initial CoValues you need.
|
||||||
|
*/
|
||||||
|
migrate(this: JazzAccount, creationProps?: { name: string }) {
|
||||||
|
super.migrate(creationProps);
|
||||||
|
}
|
||||||
|
}
|
||||||
25
examples/book-shelf/tailwind.config.ts
Normal file
25
examples/book-shelf/tailwind.config.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import type { Config } from "tailwindcss";
|
||||||
|
const colors = require("tailwindcss/colors");
|
||||||
|
|
||||||
|
const config: Config = {
|
||||||
|
content: [
|
||||||
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||||||
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
||||||
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
||||||
|
],
|
||||||
|
theme: {
|
||||||
|
extend: {
|
||||||
|
fontFamily: {
|
||||||
|
serif: ["var(--font-fraunces)"],
|
||||||
|
},
|
||||||
|
colors: {
|
||||||
|
purple: {
|
||||||
|
...colors.purple,
|
||||||
|
950: "#211f5a",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
plugins: [],
|
||||||
|
};
|
||||||
|
export default config;
|
||||||
@@ -3,27 +3,26 @@
|
|||||||
"target": "ES2020",
|
"target": "ES2020",
|
||||||
"useDefineForClassFields": true,
|
"useDefineForClassFields": true,
|
||||||
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
||||||
"module": "ESNext",
|
"allowJs": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
|
"strict": true,
|
||||||
/* Bundler mode */
|
"noEmit": true,
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"module": "esnext",
|
||||||
"moduleResolution": "bundler",
|
"moduleResolution": "bundler",
|
||||||
"allowImportingTsExtensions": true,
|
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
"noEmit": true,
|
"jsx": "preserve",
|
||||||
"jsx": "react-jsx",
|
"incremental": true,
|
||||||
|
"plugins": [
|
||||||
/* Linting */
|
{
|
||||||
"strict": true,
|
"name": "next"
|
||||||
"noUnusedLocals": true,
|
}
|
||||||
"noUnusedParameters": true,
|
],
|
||||||
"noFallthroughCasesInSwitch": true,
|
|
||||||
"baseUrl": ".",
|
|
||||||
"paths": {
|
"paths": {
|
||||||
"@/*": ["./src/*"]
|
"@/*": ["./src/*"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": ["src"],
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
||||||
"references": [{ "path": "./tsconfig.node.json" }]
|
"exclude": ["node_modules"]
|
||||||
}
|
}
|
||||||
@@ -1 +1 @@
|
|||||||
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_ZXZpZGVudC1kYW5lLTg5LmNsZXJrLmFjY291bnRzLmRldiQ
|
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_ZXZpZGVudC1kYW5lLTg5LmNsZXJrLmFjY291bnRzLmRldiQ
|
||||||
@@ -1,347 +1,5 @@
|
|||||||
# chat-rn-clerk
|
# chat-rn-clerk
|
||||||
|
|
||||||
## 1.0.63
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.22
|
|
||||||
- jazz-react-native-auth-clerk@0.9.22
|
|
||||||
|
|
||||||
## 1.0.62
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [1be017d]
|
|
||||||
- jazz-tools@0.9.21
|
|
||||||
- jazz-react-native@0.9.21
|
|
||||||
- jazz-react-native-auth-clerk@0.9.21
|
|
||||||
- jazz-react-native-media-images@0.9.21
|
|
||||||
|
|
||||||
## 1.0.61
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [b01cc1f]
|
|
||||||
- jazz-tools@0.9.20
|
|
||||||
- jazz-react-native@0.9.20
|
|
||||||
- jazz-react-native-auth-clerk@0.9.20
|
|
||||||
- jazz-react-native-media-images@0.9.20
|
|
||||||
|
|
||||||
## 1.0.60
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.19
|
|
||||||
- jazz-react-native-auth-clerk@0.9.19
|
|
||||||
- jazz-tools@0.9.19
|
|
||||||
- jazz-react-native-media-images@0.9.19
|
|
||||||
|
|
||||||
## 1.0.59
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.18
|
|
||||||
- jazz-react-native-auth-clerk@0.9.18
|
|
||||||
- jazz-tools@0.9.18
|
|
||||||
- jazz-react-native-media-images@0.9.18
|
|
||||||
|
|
||||||
## 1.0.58
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [c2ca1fe]
|
|
||||||
- Updated dependencies [1227047]
|
|
||||||
- jazz-tools@0.9.17
|
|
||||||
- jazz-react-native@0.9.17
|
|
||||||
- jazz-react-native-auth-clerk@0.9.17
|
|
||||||
- jazz-react-native-media-images@0.9.17
|
|
||||||
|
|
||||||
## 1.0.57
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [24b3b6a]
|
|
||||||
- jazz-react-native-auth-clerk@0.9.16
|
|
||||||
- jazz-tools@0.9.16
|
|
||||||
- jazz-react-native@0.9.16
|
|
||||||
- jazz-react-native-media-images@0.9.16
|
|
||||||
|
|
||||||
## 1.0.56
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [7491711]
|
|
||||||
- jazz-tools@0.9.15
|
|
||||||
- jazz-react-native@0.9.15
|
|
||||||
- jazz-react-native-auth-clerk@0.9.15
|
|
||||||
- jazz-react-native-media-images@0.9.15
|
|
||||||
|
|
||||||
## 1.0.55
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [3df93cc]
|
|
||||||
- jazz-tools@0.9.14
|
|
||||||
- jazz-react-native@0.9.14
|
|
||||||
- jazz-react-native-auth-clerk@0.9.14
|
|
||||||
- jazz-react-native-media-images@0.9.14
|
|
||||||
|
|
||||||
## 1.0.54
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.13
|
|
||||||
- jazz-react-native-auth-clerk@0.9.13
|
|
||||||
- jazz-tools@0.9.13
|
|
||||||
- jazz-react-native-media-images@0.9.13
|
|
||||||
|
|
||||||
## 1.0.53
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.12
|
|
||||||
- jazz-react-native-auth-clerk@0.9.12
|
|
||||||
- jazz-tools@0.9.12
|
|
||||||
- jazz-react-native-media-images@0.9.12
|
|
||||||
|
|
||||||
## 1.0.52
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.11
|
|
||||||
- jazz-react-native-auth-clerk@0.9.11
|
|
||||||
- jazz-tools@0.9.11
|
|
||||||
- jazz-react-native-media-images@0.9.11
|
|
||||||
|
|
||||||
## 1.0.51
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- f76274c: Fix image handling in react-native
|
|
||||||
- Updated dependencies [f76274c]
|
|
||||||
- Updated dependencies [5e83864]
|
|
||||||
- jazz-react-native@0.9.10
|
|
||||||
- jazz-tools@0.9.10
|
|
||||||
- jazz-react-native-auth-clerk@0.9.10
|
|
||||||
- jazz-react-native-media-images@0.9.10
|
|
||||||
|
|
||||||
## 1.0.50
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [8eb9247]
|
|
||||||
- jazz-tools@0.9.9
|
|
||||||
- jazz-react-native@0.9.9
|
|
||||||
- jazz-react-native-auth-clerk@0.9.9
|
|
||||||
- jazz-react-native-media-images@0.9.9
|
|
||||||
|
|
||||||
## 1.0.49
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [d1d773b]
|
|
||||||
- jazz-tools@0.9.8
|
|
||||||
- jazz-react-native@0.9.8
|
|
||||||
- jazz-react-native-auth-clerk@0.9.8
|
|
||||||
- jazz-react-native-media-images@0.9.8
|
|
||||||
|
|
||||||
## 1.0.48
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [8a390d2]
|
|
||||||
- jazz-react-native@0.9.6
|
|
||||||
- jazz-react-native-auth-clerk@0.9.6
|
|
||||||
|
|
||||||
## 1.0.47
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [c871912]
|
|
||||||
- jazz-react-native@0.9.5
|
|
||||||
- jazz-react-native-auth-clerk@0.9.5
|
|
||||||
|
|
||||||
## 1.0.46
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.4
|
|
||||||
- jazz-react-native-auth-clerk@0.9.4
|
|
||||||
|
|
||||||
## 1.0.45
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [7cd691f]
|
|
||||||
- jazz-react-native@0.9.3
|
|
||||||
- jazz-react-native-auth-clerk@0.9.3
|
|
||||||
|
|
||||||
## 1.0.44
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [80fd3e9]
|
|
||||||
- jazz-react-native@0.9.2
|
|
||||||
- jazz-react-native-auth-clerk@0.9.2
|
|
||||||
|
|
||||||
## 1.0.43
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [1b71969]
|
|
||||||
- jazz-tools@0.9.1
|
|
||||||
- jazz-react-native@0.9.1
|
|
||||||
- jazz-react-native-auth-clerk@0.9.1
|
|
||||||
- jazz-react-native-media-images@0.9.1
|
|
||||||
|
|
||||||
## 1.0.42
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [1da4d55]
|
|
||||||
- Updated dependencies [8eda792]
|
|
||||||
- Updated dependencies [1e5e3a1]
|
|
||||||
- jazz-react-native@0.9.0
|
|
||||||
- jazz-tools@0.9.0
|
|
||||||
- jazz-react-native-auth-clerk@0.9.0
|
|
||||||
- jazz-react-native-media-images@0.9.0
|
|
||||||
|
|
||||||
## 1.0.41
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [dc62b95]
|
|
||||||
- Updated dependencies [1de26f8]
|
|
||||||
- jazz-tools@0.8.51
|
|
||||||
- jazz-react-native@0.8.51
|
|
||||||
- jazz-react-native-auth-clerk@0.8.51
|
|
||||||
- jazz-react-native-media-images@0.8.51
|
|
||||||
|
|
||||||
## 1.0.40
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.50
|
|
||||||
- jazz-react-native-auth-clerk@0.8.50
|
|
||||||
- jazz-tools@0.8.50
|
|
||||||
- jazz-react-native-media-images@0.8.50
|
|
||||||
|
|
||||||
## 1.0.39
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.49
|
|
||||||
- jazz-react-native-auth-clerk@0.8.49
|
|
||||||
- jazz-tools@0.8.49
|
|
||||||
- jazz-react-native-media-images@0.8.49
|
|
||||||
|
|
||||||
## 1.0.38
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [635e824]
|
|
||||||
- Updated dependencies [0a85982]
|
|
||||||
- jazz-tools@0.8.48
|
|
||||||
- jazz-react-native@0.8.48
|
|
||||||
- jazz-react-native-auth-clerk@0.8.48
|
|
||||||
- jazz-react-native-media-images@0.8.48
|
|
||||||
|
|
||||||
## 1.0.37
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [33ef9c4]
|
|
||||||
- jazz-react-native@0.8.47
|
|
||||||
- jazz-react-native-auth-clerk@0.8.47
|
|
||||||
|
|
||||||
## 1.0.36
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [ab4ffbd]
|
|
||||||
- jazz-react-native@0.8.46
|
|
||||||
- jazz-react-native-auth-clerk@0.8.46
|
|
||||||
|
|
||||||
## 1.0.35
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [7701307]
|
|
||||||
- Updated dependencies [fa41f8e]
|
|
||||||
- Updated dependencies [88d7d9a]
|
|
||||||
- Updated dependencies [60e35ea]
|
|
||||||
- jazz-react-native@0.8.45
|
|
||||||
- jazz-tools@0.8.45
|
|
||||||
- jazz-react-native-auth-clerk@0.8.45
|
|
||||||
- jazz-react-native-media-images@0.8.45
|
|
||||||
|
|
||||||
## 1.0.34
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.44
|
|
||||||
- jazz-react-native-auth-clerk@0.8.44
|
|
||||||
- jazz-tools@0.8.44
|
|
||||||
- jazz-react-native-media-images@0.8.44
|
|
||||||
|
|
||||||
## 1.0.33
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- cdc7f9f: Fixing react-native examples
|
|
||||||
- Updated dependencies [cdc7f9f]
|
|
||||||
- jazz-react-native-auth-clerk@0.8.43
|
|
||||||
|
|
||||||
## 1.0.32
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.41
|
|
||||||
- jazz-react-native-auth-clerk@0.8.41
|
|
||||||
- jazz-tools@0.8.41
|
|
||||||
- jazz-react-native-media-images@0.8.41
|
|
||||||
|
|
||||||
## 1.0.31
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [0c6b0f3]
|
|
||||||
- Updated dependencies [249eecb]
|
|
||||||
- jazz-react-native@0.8.39
|
|
||||||
- jazz-tools@0.8.39
|
|
||||||
- jazz-react-native-auth-clerk@0.8.39
|
|
||||||
- jazz-react-native-media-images@0.8.39
|
|
||||||
|
|
||||||
## 1.0.30
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.38
|
|
||||||
- jazz-react-native-auth-clerk@0.8.38
|
|
||||||
- jazz-tools@0.8.38
|
|
||||||
- jazz-react-native-media-images@0.8.38
|
|
||||||
|
|
||||||
## 1.0.29
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.37
|
|
||||||
- jazz-react-native-auth-clerk@0.8.37
|
|
||||||
- jazz-tools@0.8.37
|
|
||||||
- jazz-react-native-media-images@0.8.28
|
|
||||||
|
|
||||||
## 1.0.28
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- c84764a: feat: added jazz-react-native-auth-clerk package
|
|
||||||
- Updated dependencies [c84764a]
|
|
||||||
- Updated dependencies [441fe27]
|
|
||||||
- jazz-react-native-auth-clerk@0.8.36
|
|
||||||
- jazz-react-native@0.8.36
|
|
||||||
- jazz-tools@0.8.36
|
|
||||||
- jazz-react-native-media-images@0.8.27
|
|
||||||
|
|
||||||
## 1.0.27
|
## 1.0.27
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -35,15 +35,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"expo-secure-store",
|
"expo-secure-store"
|
||||||
"expo-font",
|
|
||||||
"expo-router",
|
|
||||||
[
|
|
||||||
"expo-image-picker",
|
|
||||||
{
|
|
||||||
"photosPermission": "The app accesses your photos to let you share them with your friends."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
],
|
],
|
||||||
"extra": {
|
"extra": {
|
||||||
"eas": {
|
"eas": {
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
import { Redirect, Stack } from "expo-router";
|
import { Redirect, Stack } from "expo-router";
|
||||||
import { useIsAuthenticated } from "jazz-react-native";
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { useAuth } from "../../src/auth-context";
|
||||||
|
|
||||||
export default function HomeLayout() {
|
export default function HomeLayout() {
|
||||||
const isAuthenticated = useIsAuthenticated();
|
const { isAuthenticated } = useAuth();
|
||||||
|
|
||||||
if (isAuthenticated) {
|
if (isAuthenticated) {
|
||||||
return <Redirect href={"/chat"} />;
|
return <Redirect href={"/chat"} />;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import { Redirect, Stack } from "expo-router";
|
import { Redirect, Stack } from "expo-router";
|
||||||
import { useIsAuthenticated } from "jazz-react-native";
|
import { useAuth } from "../../src/auth-context";
|
||||||
|
|
||||||
export default function UnAuthenticatedLayout() {
|
export default function UnAuthenticatedLayout() {
|
||||||
const isAuthenticated = useIsAuthenticated();
|
const { isAuthenticated } = useAuth();
|
||||||
|
|
||||||
if (isAuthenticated) {
|
if (isAuthenticated) {
|
||||||
return <Redirect href={"/chat"} />;
|
return <Redirect href={"/chat"} />;
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import "../global.css";
|
|
||||||
import { ClerkLoaded, ClerkProvider } from "@clerk/clerk-expo";
|
import { ClerkLoaded, ClerkProvider } from "@clerk/clerk-expo";
|
||||||
import { useFonts } from "expo-font";
|
import { useFonts } from "expo-font";
|
||||||
import { Slot } from "expo-router";
|
import { Slot } from "expo-router";
|
||||||
|
|||||||
@@ -1,12 +1,9 @@
|
|||||||
|
import { useAccount, useCoState } from "@/src/jazz";
|
||||||
import { Chat, Message } from "@/src/schema";
|
import { Chat, Message } from "@/src/schema";
|
||||||
import { useNavigation } from "@react-navigation/native";
|
import { useFocusEffect, useNavigation } from "@react-navigation/native";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import * as Clipboard from "expo-clipboard";
|
import * as Clipboard from "expo-clipboard";
|
||||||
import * as ImagePicker from "expo-image-picker";
|
|
||||||
import { useLocalSearchParams } from "expo-router";
|
import { useLocalSearchParams } from "expo-router";
|
||||||
import { useAccount, useCoState } from "jazz-react-native";
|
|
||||||
import { ProgressiveImg } from "jazz-react-native";
|
|
||||||
import { createImage } from "jazz-react-native-media-images";
|
|
||||||
import { Group, ID } from "jazz-tools";
|
import { Group, ID } from "jazz-tools";
|
||||||
import { useEffect, useLayoutEffect, useState } from "react";
|
import { useEffect, useLayoutEffect, useState } from "react";
|
||||||
import React, {
|
import React, {
|
||||||
@@ -19,8 +16,6 @@ import React, {
|
|||||||
KeyboardAvoidingView,
|
KeyboardAvoidingView,
|
||||||
TextInput,
|
TextInput,
|
||||||
Button,
|
Button,
|
||||||
Image,
|
|
||||||
ActivityIndicator,
|
|
||||||
} from "react-native";
|
} from "react-native";
|
||||||
|
|
||||||
export default function Conversation() {
|
export default function Conversation() {
|
||||||
@@ -30,7 +25,6 @@ export default function Conversation() {
|
|||||||
const [message, setMessage] = useState("");
|
const [message, setMessage] = useState("");
|
||||||
const loadedChat = useCoState(Chat, chat?.id, [{}]);
|
const loadedChat = useCoState(Chat, chat?.id, [{}]);
|
||||||
const navigation = useNavigation();
|
const navigation = useNavigation();
|
||||||
const [isUploading, setIsUploading] = useState(false);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (chat) return;
|
if (chat) return;
|
||||||
@@ -87,32 +81,6 @@ export default function Conversation() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleImageUpload = async () => {
|
|
||||||
try {
|
|
||||||
const result = await ImagePicker.launchImageLibraryAsync({
|
|
||||||
mediaTypes: ImagePicker.MediaTypeOptions.Images,
|
|
||||||
base64: true,
|
|
||||||
quality: 0.7,
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!result.canceled && result.assets[0].base64 && chat) {
|
|
||||||
setIsUploading(true);
|
|
||||||
const base64Uri = `data:image/jpeg;base64,${result.assets[0].base64}`;
|
|
||||||
|
|
||||||
const image = await createImage(base64Uri, {
|
|
||||||
owner: chat._owner,
|
|
||||||
maxSize: 2048,
|
|
||||||
});
|
|
||||||
|
|
||||||
chat.push(Message.create({ text: "", image }, { owner: chat._owner }));
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
Alert.alert("Error", "Failed to upload image");
|
|
||||||
} finally {
|
|
||||||
setIsUploading(false);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const renderMessageItem = ({ item }: { item: Message }) => {
|
const renderMessageItem = ({ item }: { item: Message }) => {
|
||||||
const isMe = item._edits.text.by?.isMe;
|
const isMe = item._edits.text.by?.isMe;
|
||||||
return (
|
return (
|
||||||
@@ -138,27 +106,14 @@ export default function Conversation() {
|
|||||||
isMe ? "flex-row" : "flex-row",
|
isMe ? "flex-row" : "flex-row",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{item.image && (
|
<Text
|
||||||
<ProgressiveImg image={item.image} maxWidth={1024}>
|
className={clsx(
|
||||||
{({ src, res, originalSize }) => (
|
!isMe ? "text-black" : "text-gray-200",
|
||||||
<Image
|
`text-md max-w-[85%]`,
|
||||||
source={{ uri: src }}
|
)}
|
||||||
className="w-48 h-48 rounded-lg mb-2"
|
>
|
||||||
resizeMode="cover"
|
{item.text}
|
||||||
/>
|
</Text>
|
||||||
)}
|
|
||||||
</ProgressiveImg>
|
|
||||||
)}
|
|
||||||
{item.text && (
|
|
||||||
<Text
|
|
||||||
className={clsx(
|
|
||||||
!isMe ? "text-black" : "text-gray-200",
|
|
||||||
`text-md max-w-[85%]`,
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{item.text}
|
|
||||||
</Text>
|
|
||||||
)}
|
|
||||||
<Text
|
<Text
|
||||||
className={clsx(
|
className={clsx(
|
||||||
"text-[10px] text-right ml-2",
|
"text-[10px] text-right ml-2",
|
||||||
@@ -192,17 +147,6 @@ export default function Conversation() {
|
|||||||
className="p-3 bg-white border-t border-gray-300"
|
className="p-3 bg-white border-t border-gray-300"
|
||||||
>
|
>
|
||||||
<SafeAreaView className="flex-row items-center gap-2">
|
<SafeAreaView className="flex-row items-center gap-2">
|
||||||
<TouchableOpacity
|
|
||||||
onPress={handleImageUpload}
|
|
||||||
disabled={isUploading}
|
|
||||||
className="h-10 w-10 items-center justify-center"
|
|
||||||
>
|
|
||||||
{isUploading ? (
|
|
||||||
<ActivityIndicator size="small" color="#0000ff" />
|
|
||||||
) : (
|
|
||||||
<Text className="text-2xl">🖼️</Text>
|
|
||||||
)}
|
|
||||||
</TouchableOpacity>
|
|
||||||
<TextInput
|
<TextInput
|
||||||
className="flex-1 rounded-full h-10 px-4 bg-gray-100 border border-gray-300 focus:border-blue-500 focus:bg-white"
|
className="flex-1 rounded-full h-10 px-4 bg-gray-100 border border-gray-300 focus:border-blue-500 focus:bg-white"
|
||||||
value={message}
|
value={message}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import React, {
|
|||||||
} from "react-native";
|
} from "react-native";
|
||||||
|
|
||||||
import { useUser } from "@clerk/clerk-expo";
|
import { useUser } from "@clerk/clerk-expo";
|
||||||
import { useAccount } from "jazz-react-native";
|
import { useAccount } from "../../src/jazz";
|
||||||
import { Chat } from "../../src/schema";
|
import { Chat } from "../../src/schema";
|
||||||
|
|
||||||
export default function ChatScreen() {
|
export default function ChatScreen() {
|
||||||
@@ -20,15 +20,10 @@ export default function ChatScreen() {
|
|||||||
const navigation = useNavigation();
|
const navigation = useNavigation();
|
||||||
const { user } = useUser();
|
const { user } = useUser();
|
||||||
|
|
||||||
function handleLogOut() {
|
|
||||||
logOut();
|
|
||||||
router.navigate("/");
|
|
||||||
}
|
|
||||||
|
|
||||||
useLayoutEffect(() => {
|
useLayoutEffect(() => {
|
||||||
navigation.setOptions({
|
navigation.setOptions({
|
||||||
headerTitle: "Chat",
|
headerTitle: "Chat",
|
||||||
headerRight: () => <Button onPress={handleLogOut} title="Logout" />,
|
headerRight: () => <Button onPress={logOut} title="Logout" />,
|
||||||
});
|
});
|
||||||
}, [navigation]);
|
}, [navigation]);
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
module.exports = function (api) {
|
module.exports = function (api) {
|
||||||
api.cache(true);
|
api.cache(true);
|
||||||
return {
|
return {
|
||||||
presets: [
|
presets: ["babel-preset-expo"],
|
||||||
["babel-preset-expo", { jsxImportSource: "nativewind" }],
|
plugins: ["nativewind/babel"],
|
||||||
"nativewind/babel",
|
|
||||||
],
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import { Platform } from "react-native";
|
|||||||
export interface TokenCache {
|
export interface TokenCache {
|
||||||
getToken: (key: string) => Promise<string | undefined | null>;
|
getToken: (key: string) => Promise<string | undefined | null>;
|
||||||
saveToken: (key: string, token: string) => Promise<void>;
|
saveToken: (key: string, token: string) => Promise<void>;
|
||||||
clearToken: (key: string) => void;
|
clearToken?: (key: string) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const createTokenCache = (): TokenCache => {
|
const createTokenCache = (): TokenCache => {
|
||||||
@@ -27,9 +27,6 @@ const createTokenCache = (): TokenCache => {
|
|||||||
saveToken: (key: string, token: string) => {
|
saveToken: (key: string, token: string) => {
|
||||||
return SecureStore.setItemAsync(key, token);
|
return SecureStore.setItemAsync(key, token);
|
||||||
},
|
},
|
||||||
clearToken: (key: string) => {
|
|
||||||
return SecureStore.deleteItemAsync(key);
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
@tailwind base;
|
|
||||||
@tailwind components;
|
|
||||||
@tailwind utilities;
|
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
// Learn more https://docs.expo.dev/guides/monorepos
|
// Learn more https://docs.expo.dev/guides/monorepos
|
||||||
const { getDefaultConfig } = require("expo/metro-config");
|
const { getDefaultConfig } = require("expo/metro-config");
|
||||||
const { withNativeWind } = require("nativewind/metro");
|
|
||||||
const { FileStore } = require("metro-cache");
|
const { FileStore } = require("metro-cache");
|
||||||
const path = require("path");
|
const path = require("path");
|
||||||
|
|
||||||
@@ -20,10 +19,7 @@ config.resolver.nodeModulesPaths = [
|
|||||||
];
|
];
|
||||||
config.resolver.sourceExts = ["mjs", "js", "json", "ts", "tsx"];
|
config.resolver.sourceExts = ["mjs", "js", "json", "ts", "tsx"];
|
||||||
config.resolver.unstable_enablePackageExports = true;
|
config.resolver.unstable_enablePackageExports = true;
|
||||||
config.resolver.requireCycleIgnorePatterns = [
|
config.resolver.requireCycleIgnorePatterns = [/(^|\/|\\)node_modules($|\/|\\)/];
|
||||||
/(^|\/|\\)node_modules($|\/|\\)/,
|
|
||||||
/(^|\/|\\)packages($|\/|\\)/,
|
|
||||||
];
|
|
||||||
|
|
||||||
// Use turborepo to restore the cache when possible
|
// Use turborepo to restore the cache when possible
|
||||||
config.cacheStores = [
|
config.cacheStores = [
|
||||||
@@ -32,5 +28,4 @@ config.cacheStores = [
|
|||||||
}),
|
}),
|
||||||
];
|
];
|
||||||
|
|
||||||
// module.exports = config;
|
module.exports = config;
|
||||||
module.exports = withNativeWind(config, { input: "./global.css" });
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "chat-rn-clerk",
|
"name": "chat-rn-clerk",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"version": "1.0.63",
|
"version": "1.0.27",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "expo export -p ios",
|
"build": "expo export -p ios",
|
||||||
"start": "expo start",
|
"start": "expo start",
|
||||||
@@ -17,63 +17,62 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@azure/core-asynciterator-polyfill": "^1.0.2",
|
"@azure/core-asynciterator-polyfill": "^1.0.2",
|
||||||
"@bam.tech/react-native-image-resizer": "^3.0.11",
|
"@bam.tech/react-native-image-resizer": "^3.0.10",
|
||||||
"@clerk/clerk-expo": "^2.2.21",
|
"@clerk/clerk-expo": "^2.2.21",
|
||||||
"@expo/vector-icons": "^14.0.2",
|
"@expo/vector-icons": "^14.0.2",
|
||||||
"@op-engineering/op-sqlite": "^11.2.12",
|
"@react-native-community/netinfo": "^11.3.1",
|
||||||
"@react-native-community/netinfo": "^11.4.1",
|
"@react-navigation/native": "^6.1.18",
|
||||||
"@react-navigation/native": "^7.0.13",
|
"@react-navigation/native-stack": "^6.11.0",
|
||||||
"@react-navigation/native-stack": "^7.1.14",
|
|
||||||
"base-64": "^1.0.0",
|
"base-64": "^1.0.0",
|
||||||
"buffer": "^6.0.3",
|
"buffer": "^6.0.3",
|
||||||
"clsx": "^2.0.0",
|
"clsx": "^2.0.0",
|
||||||
"expo": "^52.0.0",
|
"expo": "~51.0.37",
|
||||||
"expo-build-properties": "~0.13.1",
|
"expo-build-properties": "~0.12.5",
|
||||||
"expo-clipboard": "~7.0.0",
|
"expo-clipboard": "~6.0.3",
|
||||||
"expo-constants": "~17.0.3",
|
"expo-constants": "~16.0.2",
|
||||||
"expo-crypto": "~14.0.1",
|
"expo-crypto": "~13.0.2",
|
||||||
"expo-dev-client": "~5.0.5",
|
"expo-dev-client": "~4.0.28",
|
||||||
"expo-file-system": "^18.0.4",
|
"expo-file-system": "^17.0.1",
|
||||||
"expo-font": "~13.0.1",
|
"expo-font": "~12.0.4",
|
||||||
"expo-image-picker": "~16.0.4",
|
"expo-linking": "~6.3.1",
|
||||||
"expo-linking": "~7.0.3",
|
"expo-router": "~3.5.23",
|
||||||
"expo-router": "~4.0.11",
|
"expo-secure-store": "~13.0.2",
|
||||||
"expo-secure-store": "~14.0.0",
|
"expo-splash-screen": "~0.27.5",
|
||||||
"expo-splash-screen": "~0.29.16",
|
"expo-status-bar": "~1.12.1",
|
||||||
"expo-status-bar": "~2.0.0",
|
"expo-system-ui": "~3.0.7",
|
||||||
"expo-system-ui": "~4.0.5",
|
"expo-web-browser": "~13.0.3",
|
||||||
"expo-web-browser": "~14.0.1",
|
"jazz-react-auth-clerk": "workspace:*",
|
||||||
"jazz-react-native": "workspace:*",
|
"jazz-react-native": "workspace:*",
|
||||||
"jazz-react-native-auth-clerk": "workspace:*",
|
|
||||||
"jazz-react-native-media-images": "workspace:*",
|
"jazz-react-native-media-images": "workspace:*",
|
||||||
"jazz-tools": "workspace:*",
|
"jazz-tools": "workspace:*",
|
||||||
"nativewind": "^4.1.21",
|
"nativewind": "^2.0.11",
|
||||||
"react": "^18.3.1",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.3.1",
|
"react-dom": "^18.2.0",
|
||||||
"react-native": "~0.76.3",
|
"react-native": "~0.74.5",
|
||||||
"react-native-fetch-api": "^3.0.0",
|
"react-native-fetch-api": "^3.0.0",
|
||||||
"react-native-gesture-handler": "~2.20.2",
|
"react-native-gesture-handler": "~2.16.1",
|
||||||
"react-native-get-random-values": "^1.11.0",
|
"react-native-get-random-values": "^1.11.0",
|
||||||
|
"react-native-mmkv": "3.0.1",
|
||||||
"react-native-polyfill-globals": "^3.1.0",
|
"react-native-polyfill-globals": "^3.1.0",
|
||||||
"react-native-quick-base64": "^2.1.2",
|
"react-native-quick-base64": "^2.1.2",
|
||||||
"react-native-reanimated": "~3.16.3",
|
"react-native-reanimated": "~3.10.1",
|
||||||
"react-native-safe-area-context": "4.12.0",
|
"react-native-safe-area-context": "4.10.5",
|
||||||
"react-native-screens": "4.1.0",
|
"react-native-screens": "3.31.1",
|
||||||
"react-native-url-polyfill": "^2.0.0",
|
"react-native-url-polyfill": "^2.0.0",
|
||||||
"react-native-web": "~0.19.13",
|
"react-native-web": "~0.19.10",
|
||||||
"text-encoding": "^0.7.0",
|
"text-encoding": "^0.7.0",
|
||||||
"web-streams-polyfill": "^3.2.1"
|
"web-streams-polyfill": "^3.2.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.20.0",
|
"@babel/core": "^7.20.0",
|
||||||
"@types/jest": "^29.5.3",
|
"@types/jest": "^29.5.3",
|
||||||
"@types/react": "^18.3.12",
|
"@types/react": "^18.2.19",
|
||||||
"@types/react-test-renderer": "^18.0.7",
|
"@types/react-test-renderer": "^18.0.7",
|
||||||
"jest": "^29.2.1",
|
"jest": "^29.2.1",
|
||||||
"jest-expo": "~52.0.2",
|
"jest-expo": "~51.0.3",
|
||||||
"react-test-renderer": "18.2.0",
|
"react-test-renderer": "18.2.0",
|
||||||
"tailwindcss": "^3.4.15",
|
"tailwindcss": "3.3.2",
|
||||||
"typescript": "~5.6.2"
|
"typescript": "^5.3.3"
|
||||||
},
|
},
|
||||||
"private": true
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
export const apiKey = "chat-rn-clerk-example-jazz@garden.co";
|
|
||||||
@@ -1,21 +1,62 @@
|
|||||||
import { useClerk } from "@clerk/clerk-expo";
|
import { useClerk, useUser } from "@clerk/clerk-expo";
|
||||||
import { JazzProviderWithClerk } from "jazz-react-native-auth-clerk";
|
import { useJazzClerkAuth } from "jazz-react-auth-clerk";
|
||||||
import React, { PropsWithChildren } from "react";
|
import React, {
|
||||||
import { apiKey } from "./apiKey";
|
createContext,
|
||||||
|
PropsWithChildren,
|
||||||
|
useContext,
|
||||||
|
useEffect,
|
||||||
|
useState,
|
||||||
|
} from "react";
|
||||||
|
import { Text, View } from "react-native";
|
||||||
|
import { Jazz } from "./jazz";
|
||||||
|
|
||||||
|
const AuthContext = createContext<{
|
||||||
|
isAuthenticated: boolean;
|
||||||
|
isLoading: boolean;
|
||||||
|
}>({
|
||||||
|
isAuthenticated: false,
|
||||||
|
isLoading: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
export function useAuth() {
|
||||||
|
return useContext(AuthContext);
|
||||||
|
}
|
||||||
|
|
||||||
export function JazzAndAuth({ children }: PropsWithChildren) {
|
export function JazzAndAuth({ children }: PropsWithChildren) {
|
||||||
|
const { isSignedIn, isLoaded: isClerkLoaded } = useUser();
|
||||||
const clerk = useClerk();
|
const clerk = useClerk();
|
||||||
|
const [auth, state] = useJazzClerkAuth(clerk);
|
||||||
|
const [isAuthenticated, setIsAuthenticated] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isSignedIn && isClerkLoaded && auth) {
|
||||||
|
setIsAuthenticated(true);
|
||||||
|
} else {
|
||||||
|
setIsAuthenticated(false);
|
||||||
|
}
|
||||||
|
}, [isSignedIn, isClerkLoaded, auth]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<JazzProviderWithClerk
|
<AuthContext.Provider
|
||||||
clerk={clerk}
|
value={{ isAuthenticated, isLoading: !isClerkLoaded || !auth }}
|
||||||
storage="sqlite"
|
|
||||||
sync={{
|
|
||||||
peer: `wss://cloud.jazz.tools/?key=${apiKey}`,
|
|
||||||
when: "signedUp", // This makes the app work in local mode when the user is not authenticated
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
{children}
|
{state?.errors?.length > 0 &&
|
||||||
</JazzProviderWithClerk>
|
state.errors.map((error) => (
|
||||||
|
<View key={error}>
|
||||||
|
<Text style={{ color: "red" }}>{error}</Text>
|
||||||
|
</View>
|
||||||
|
))}
|
||||||
|
{auth ? (
|
||||||
|
<Jazz.Provider
|
||||||
|
auth={auth}
|
||||||
|
peer="wss://cloud.jazz.tools/?key=chat-rn-clerk-example-jazz@garden.co"
|
||||||
|
storage={undefined}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</Jazz.Provider>
|
||||||
|
) : (
|
||||||
|
children
|
||||||
|
)}
|
||||||
|
</AuthContext.Provider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
4
examples/chat-rn-clerk/src/jazz.tsx
Normal file
4
examples/chat-rn-clerk/src/jazz.tsx
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
import { createJazzRNApp } from "jazz-react-native";
|
||||||
|
|
||||||
|
export const Jazz = createJazzRNApp();
|
||||||
|
export const { useAccount, useCoState, useAcceptInvite } = Jazz;
|
||||||
@@ -1,8 +1,7 @@
|
|||||||
import { CoList, CoMap, ImageDefinition, co } from "jazz-tools";
|
import { CoList, CoMap, co } from "jazz-tools";
|
||||||
|
|
||||||
export class Message extends CoMap {
|
export class Message extends CoMap {
|
||||||
text = co.string;
|
text = co.string;
|
||||||
image = co.optional.ref(ImageDefinition);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Chat extends CoList.Of(co.ref(Message)) {}
|
export class Chat extends CoList.Of(co.ref(Message)) {}
|
||||||
|
|||||||
@@ -1,12 +1,10 @@
|
|||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
module.exports = {
|
module.exports = {
|
||||||
// NOTE: Update this to include the paths to all of your component files.
|
|
||||||
content: [
|
content: [
|
||||||
"./app/**/*.{js,jsx,ts,tsx}",
|
"./app/**/*.{js,jsx,ts,tsx}",
|
||||||
"./components/**/*.{js,jsx,ts,tsx}",
|
"./components/**/*.{js,jsx,ts,tsx}",
|
||||||
"./src/**/*.{js,jsx,ts,tsx}",
|
"./src/**/*.{js,jsx,ts,tsx}",
|
||||||
],
|
],
|
||||||
presets: [require("nativewind/preset")],
|
|
||||||
theme: {
|
theme: {
|
||||||
extend: {},
|
extend: {},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -7,5 +7,5 @@
|
|||||||
"@/*": ["./*"]
|
"@/*": ["./*"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": ["**/*.ts", "**/*.tsx", "nativewind-env.d.ts"]
|
"include": ["**/*.ts", "**/*.tsx"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,275 +1,5 @@
|
|||||||
# chat-rn
|
# chat-rn
|
||||||
|
|
||||||
## 1.0.60
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.22
|
|
||||||
|
|
||||||
## 1.0.59
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [1be017d]
|
|
||||||
- jazz-tools@0.9.21
|
|
||||||
- jazz-react-native@0.9.21
|
|
||||||
|
|
||||||
## 1.0.58
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [b01cc1f]
|
|
||||||
- jazz-tools@0.9.20
|
|
||||||
- jazz-react-native@0.9.20
|
|
||||||
|
|
||||||
## 1.0.57
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.19
|
|
||||||
- jazz-tools@0.9.19
|
|
||||||
|
|
||||||
## 1.0.56
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.18
|
|
||||||
- jazz-tools@0.9.18
|
|
||||||
|
|
||||||
## 1.0.55
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [c2ca1fe]
|
|
||||||
- Updated dependencies [1227047]
|
|
||||||
- jazz-tools@0.9.17
|
|
||||||
- jazz-react-native@0.9.17
|
|
||||||
|
|
||||||
## 1.0.54
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [24b3b6a]
|
|
||||||
- jazz-tools@0.9.16
|
|
||||||
- jazz-react-native@0.9.16
|
|
||||||
|
|
||||||
## 1.0.53
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [7491711]
|
|
||||||
- jazz-tools@0.9.15
|
|
||||||
- jazz-react-native@0.9.15
|
|
||||||
|
|
||||||
## 1.0.52
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [3df93cc]
|
|
||||||
- jazz-tools@0.9.14
|
|
||||||
- jazz-react-native@0.9.14
|
|
||||||
|
|
||||||
## 1.0.51
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.13
|
|
||||||
- jazz-tools@0.9.13
|
|
||||||
|
|
||||||
## 1.0.50
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.12
|
|
||||||
- jazz-tools@0.9.12
|
|
||||||
|
|
||||||
## 1.0.49
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.11
|
|
||||||
- jazz-tools@0.9.11
|
|
||||||
|
|
||||||
## 1.0.48
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [f76274c]
|
|
||||||
- Updated dependencies [5e83864]
|
|
||||||
- jazz-react-native@0.9.10
|
|
||||||
- jazz-tools@0.9.10
|
|
||||||
|
|
||||||
## 1.0.47
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [8eb9247]
|
|
||||||
- jazz-tools@0.9.9
|
|
||||||
- jazz-react-native@0.9.9
|
|
||||||
|
|
||||||
## 1.0.46
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [d1d773b]
|
|
||||||
- jazz-tools@0.9.8
|
|
||||||
- jazz-react-native@0.9.8
|
|
||||||
|
|
||||||
## 1.0.45
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [8a390d2]
|
|
||||||
- jazz-react-native@0.9.6
|
|
||||||
|
|
||||||
## 1.0.44
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [c871912]
|
|
||||||
- jazz-react-native@0.9.5
|
|
||||||
|
|
||||||
## 1.0.43
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.9.4
|
|
||||||
|
|
||||||
## 1.0.42
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [7cd691f]
|
|
||||||
- jazz-react-native@0.9.3
|
|
||||||
|
|
||||||
## 1.0.41
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [80fd3e9]
|
|
||||||
- jazz-react-native@0.9.2
|
|
||||||
|
|
||||||
## 1.0.40
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [1b71969]
|
|
||||||
- jazz-tools@0.9.1
|
|
||||||
- jazz-react-native@0.9.1
|
|
||||||
|
|
||||||
## 1.0.39
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [1da4d55]
|
|
||||||
- Updated dependencies [8eda792]
|
|
||||||
- Updated dependencies [1e5e3a1]
|
|
||||||
- jazz-react-native@0.9.0
|
|
||||||
- jazz-tools@0.9.0
|
|
||||||
|
|
||||||
## 1.0.38
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [dc62b95]
|
|
||||||
- Updated dependencies [1de26f8]
|
|
||||||
- jazz-tools@0.8.51
|
|
||||||
- jazz-react-native@0.8.51
|
|
||||||
|
|
||||||
## 1.0.37
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.50
|
|
||||||
- jazz-tools@0.8.50
|
|
||||||
|
|
||||||
## 1.0.36
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.49
|
|
||||||
- jazz-tools@0.8.49
|
|
||||||
|
|
||||||
## 1.0.35
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [635e824]
|
|
||||||
- Updated dependencies [0a85982]
|
|
||||||
- jazz-tools@0.8.48
|
|
||||||
- jazz-react-native@0.8.48
|
|
||||||
|
|
||||||
## 1.0.34
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [33ef9c4]
|
|
||||||
- jazz-react-native@0.8.47
|
|
||||||
|
|
||||||
## 1.0.33
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [ab4ffbd]
|
|
||||||
- jazz-react-native@0.8.46
|
|
||||||
|
|
||||||
## 1.0.32
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [7701307]
|
|
||||||
- Updated dependencies [fa41f8e]
|
|
||||||
- Updated dependencies [88d7d9a]
|
|
||||||
- Updated dependencies [60e35ea]
|
|
||||||
- jazz-react-native@0.8.45
|
|
||||||
- jazz-tools@0.8.45
|
|
||||||
|
|
||||||
## 1.0.31
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.44
|
|
||||||
- jazz-tools@0.8.44
|
|
||||||
|
|
||||||
## 1.0.30
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.41
|
|
||||||
- jazz-tools@0.8.41
|
|
||||||
|
|
||||||
## 1.0.29
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [0c6b0f3]
|
|
||||||
- Updated dependencies [249eecb]
|
|
||||||
- jazz-react-native@0.8.39
|
|
||||||
- jazz-tools@0.8.39
|
|
||||||
|
|
||||||
## 1.0.28
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.38
|
|
||||||
- jazz-tools@0.8.38
|
|
||||||
|
|
||||||
## 1.0.27
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react-native@0.8.37
|
|
||||||
- jazz-tools@0.8.37
|
|
||||||
|
|
||||||
## 1.0.26
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [c84764a]
|
|
||||||
- Updated dependencies [441fe27]
|
|
||||||
- jazz-react-native@0.8.36
|
|
||||||
- jazz-tools@0.8.36
|
|
||||||
|
|
||||||
## 1.0.25
|
## 1.0.25
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
module.exports = function (api) {
|
module.exports = function (api) {
|
||||||
api.cache(true);
|
api.cache(true);
|
||||||
return {
|
return {
|
||||||
presets: [
|
presets: ["babel-preset-expo"],
|
||||||
["babel-preset-expo", { jsxImportSource: "nativewind" }],
|
plugins: ["nativewind/babel"],
|
||||||
"nativewind/babel",
|
|
||||||
],
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
@tailwind base;
|
|
||||||
@tailwind components;
|
|
||||||
@tailwind utilities;
|
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
// Learn more https://docs.expo.dev/guides/monorepos
|
// Learn more https://docs.expo.dev/guides/monorepos
|
||||||
const { getDefaultConfig } = require("expo/metro-config");
|
const { getDefaultConfig } = require("expo/metro-config");
|
||||||
const { withNativeWind } = require("nativewind/metro");
|
|
||||||
const { FileStore } = require("metro-cache");
|
const { FileStore } = require("metro-cache");
|
||||||
const path = require("path");
|
const path = require("path");
|
||||||
|
|
||||||
@@ -8,7 +7,7 @@ const path = require("path");
|
|||||||
const projectRoot = __dirname;
|
const projectRoot = __dirname;
|
||||||
const workspaceRoot = path.resolve(projectRoot, "../..");
|
const workspaceRoot = path.resolve(projectRoot, "../..");
|
||||||
|
|
||||||
const config = getDefaultConfig(projectRoot, { isCSSEnabled: true });
|
const config = getDefaultConfig(projectRoot);
|
||||||
|
|
||||||
// Since we are using pnpm, we have to setup the monorepo manually for Metro
|
// Since we are using pnpm, we have to setup the monorepo manually for Metro
|
||||||
// #1 - Watch all files in the monorepo
|
// #1 - Watch all files in the monorepo
|
||||||
@@ -20,10 +19,7 @@ config.resolver.nodeModulesPaths = [
|
|||||||
];
|
];
|
||||||
config.resolver.sourceExts = ["mjs", "js", "json", "ts", "tsx"];
|
config.resolver.sourceExts = ["mjs", "js", "json", "ts", "tsx"];
|
||||||
config.resolver.unstable_enablePackageExports = true;
|
config.resolver.unstable_enablePackageExports = true;
|
||||||
config.resolver.requireCycleIgnorePatterns = [
|
config.resolver.requireCycleIgnorePatterns = [/(^|\/|\\)node_modules($|\/|\\)/];
|
||||||
/(^|\/|\\)node_modules($|\/|\\)/,
|
|
||||||
/(^|\/|\\)packages($|\/|\\)/,
|
|
||||||
];
|
|
||||||
|
|
||||||
// Use turborepo to restore the cache when possible
|
// Use turborepo to restore the cache when possible
|
||||||
config.cacheStores = [
|
config.cacheStores = [
|
||||||
@@ -32,5 +28,4 @@ config.cacheStores = [
|
|||||||
}),
|
}),
|
||||||
];
|
];
|
||||||
|
|
||||||
// module.exports = config;
|
module.exports = config;
|
||||||
module.exports = withNativeWind(config, { input: "./global.css" });
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "chat-rn",
|
"name": "chat-rn",
|
||||||
"version": "1.0.60",
|
"version": "1.0.25",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "expo export -p ios",
|
"build": "expo export -p ios",
|
||||||
@@ -13,41 +13,41 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@azure/core-asynciterator-polyfill": "^1.0.2",
|
"@azure/core-asynciterator-polyfill": "^1.0.2",
|
||||||
"@op-engineering/op-sqlite": "^11.2.12",
|
"@react-native-community/netinfo": "^11.3.1",
|
||||||
"@react-native-community/netinfo": "^11.4.1",
|
"@react-navigation/native": "^6.1.18",
|
||||||
"@react-navigation/native": "^7.0.13",
|
"@react-navigation/native-stack": "^6.11.0",
|
||||||
"@react-navigation/native-stack": "^7.1.14",
|
|
||||||
"base-64": "^1.0.0",
|
"base-64": "^1.0.0",
|
||||||
"clsx": "^2.0.0",
|
"clsx": "^2.0.0",
|
||||||
"expo": "^52.0.0",
|
"expo": "~51.0.37",
|
||||||
"expo-build-properties": "~0.13.1",
|
"expo-build-properties": "~0.12.5",
|
||||||
"expo-clipboard": "~7.0.0",
|
"expo-clipboard": "~6.0.3",
|
||||||
"expo-constants": "~17.0.3",
|
"expo-constants": "~16.0.2",
|
||||||
"expo-crypto": "~14.0.1",
|
"expo-crypto": "~13.0.2",
|
||||||
"expo-dev-client": "~5.0.5",
|
"expo-dev-client": "~4.0.28",
|
||||||
"expo-linking": "~7.0.3",
|
"expo-linking": "~6.3.1",
|
||||||
"expo-secure-store": "~14.0.0",
|
"expo-secure-store": "~13.0.2",
|
||||||
"expo-status-bar": "~2.0.0",
|
"expo-status-bar": "~1.12.1",
|
||||||
"expo-web-browser": "~14.0.1",
|
"expo-web-browser": "~13.0.3",
|
||||||
"jazz-react-native": "workspace:*",
|
"jazz-react-native": "workspace:*",
|
||||||
"jazz-tools": "workspace:*",
|
"jazz-tools": "workspace:*",
|
||||||
"nativewind": "^4.1.21",
|
"nativewind": "^2.0.11",
|
||||||
"react": "^18.3.1",
|
"react": "^18.2.0",
|
||||||
"react-native": "~0.76.3",
|
"react-native": "~0.74.5",
|
||||||
"react-native-fetch-api": "^3.0.0",
|
"react-native-fetch-api": "^3.0.0",
|
||||||
"react-native-get-random-values": "^1.11.0",
|
"react-native-get-random-values": "^1.11.0",
|
||||||
|
"react-native-mmkv": "3.0.1",
|
||||||
"react-native-polyfill-globals": "^3.1.0",
|
"react-native-polyfill-globals": "^3.1.0",
|
||||||
"react-native-safe-area-context": "4.12.0",
|
"react-native-safe-area-context": "4.10.5",
|
||||||
"react-native-screens": "4.1.0",
|
"react-native-screens": "3.31.1",
|
||||||
"react-native-url-polyfill": "^2.0.0",
|
"react-native-url-polyfill": "^2.0.0",
|
||||||
"text-encoding": "^0.7.0",
|
"text-encoding": "^0.7.0",
|
||||||
"web-streams-polyfill": "^3.2.1"
|
"web-streams-polyfill": "^3.2.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.20.0",
|
"@babel/core": "^7.20.0",
|
||||||
"@types/react": "^18.3.12",
|
"@types/react": "^18.2.19",
|
||||||
"tailwindcss": "^3.4.15",
|
"tailwindcss": "3.3.2",
|
||||||
"typescript": "~5.6.2"
|
"typescript": "^5.3.3"
|
||||||
},
|
},
|
||||||
"private": true
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
import "../global.css";
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
NavigationContainer,
|
NavigationContainer,
|
||||||
useNavigationContainerRef,
|
useNavigationContainerRef,
|
||||||
@@ -9,9 +7,9 @@ import * as Linking from "expo-linking";
|
|||||||
import React, { StrictMode, useEffect, useState } from "react";
|
import React, { StrictMode, useEffect, useState } from "react";
|
||||||
import HandleInviteScreen from "./invite";
|
import HandleInviteScreen from "./invite";
|
||||||
|
|
||||||
import { JazzProvider } from "jazz-react-native";
|
import { DemoAuthBasicUI, useDemoAuth } from "jazz-react-native";
|
||||||
import { apiKey } from "./apiKey";
|
|
||||||
import ChatScreen from "./chat";
|
import ChatScreen from "./chat";
|
||||||
|
import { Jazz } from "./jazz";
|
||||||
|
|
||||||
const Stack = createNativeStackNavigator();
|
const Stack = createNativeStackNavigator();
|
||||||
|
|
||||||
@@ -29,10 +27,12 @@ const linking = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
|
const [auth, state] = useDemoAuth();
|
||||||
const [initialRoute, setInitialRoute] = useState<
|
const [initialRoute, setInitialRoute] = useState<
|
||||||
"ChatScreen" | "HandleInviteScreen"
|
"ChatScreen" | "HandleInviteScreen"
|
||||||
>("ChatScreen");
|
>("ChatScreen");
|
||||||
const navigationRef = useNavigationContainerRef();
|
const navigationRef = useNavigationContainerRef();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
Linking.getInitialURL().then((url) => {
|
Linking.getInitialURL().then((url) => {
|
||||||
if (url) {
|
if (url) {
|
||||||
@@ -43,13 +43,16 @@ function App() {
|
|||||||
});
|
});
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
if (!auth) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<StrictMode>
|
<StrictMode>
|
||||||
<JazzProvider
|
<Jazz.Provider
|
||||||
storage="sqlite"
|
auth={auth}
|
||||||
sync={{
|
peer="wss://cloud.jazz.tools/?key=chat-rn-example-jazz@garden.co"
|
||||||
peer: `wss://cloud.jazz.tools/?key=${apiKey}`,
|
storage={undefined}
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<NavigationContainer linking={linking} ref={navigationRef}>
|
<NavigationContainer linking={linking} ref={navigationRef}>
|
||||||
<Stack.Navigator initialRouteName={initialRoute}>
|
<Stack.Navigator initialRouteName={initialRoute}>
|
||||||
@@ -65,7 +68,10 @@ function App() {
|
|||||||
/>
|
/>
|
||||||
</Stack.Navigator>
|
</Stack.Navigator>
|
||||||
</NavigationContainer>
|
</NavigationContainer>
|
||||||
</JazzProvider>
|
</Jazz.Provider>
|
||||||
|
{state.state !== "signedIn" ? (
|
||||||
|
<DemoAuthBasicUI appName="Jazz Chat" state={state} />
|
||||||
|
) : null}
|
||||||
</StrictMode>
|
</StrictMode>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
export const apiKey = "chat-rn-example-jazz@garden.co";
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import * as Clipboard from "expo-clipboard";
|
import * as Clipboard from "expo-clipboard";
|
||||||
import { Group, ID, Profile } from "jazz-tools";
|
import { Group, ID } from "jazz-tools";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import React, {
|
import React, {
|
||||||
Button,
|
Button,
|
||||||
@@ -14,46 +14,50 @@ import React, {
|
|||||||
Alert,
|
Alert,
|
||||||
} from "react-native";
|
} from "react-native";
|
||||||
|
|
||||||
import { useAccount, useCoState } from "jazz-react-native";
|
import { useAccount, useCoState } from "./jazz";
|
||||||
import { Chat, Message } from "./schema";
|
import { Chat, Message } from "./schema";
|
||||||
|
|
||||||
export default function ChatScreen({ navigation }: { navigation: any }) {
|
export default function ChatScreen({ navigation }: { navigation: any }) {
|
||||||
const { me, logOut } = useAccount();
|
const { me, logOut } = useAccount();
|
||||||
const [chatId, setChatId] = useState<ID<Chat>>();
|
const [chat, setChat] = useState<Chat>();
|
||||||
const loadedChat = useCoState(Chat, chatId, [{}]);
|
|
||||||
const [message, setMessage] = useState("");
|
const [message, setMessage] = useState("");
|
||||||
const profile = useCoState(Profile, me._refs.profile?.id, {});
|
const loadedChat = useCoState(Chat, chat?.id, [{}]);
|
||||||
|
|
||||||
function handleLogOut() {
|
|
||||||
setChatId(undefined);
|
|
||||||
logOut();
|
|
||||||
}
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
navigation.setOptions({
|
navigation.setOptions({
|
||||||
headerRight: () => <Button onPress={handleLogOut} title="Logout" />,
|
headerRight: () => <Button onPress={logOut} title="Logout" />,
|
||||||
headerLeft: () =>
|
headerLeft: () =>
|
||||||
loadedChat ? (
|
chat ? (
|
||||||
<Button
|
<Button
|
||||||
onPress={() => {
|
onPress={() => {
|
||||||
if (loadedChat?.id) {
|
if (chat?.id) {
|
||||||
Clipboard.setStringAsync(
|
Clipboard.setStringAsync(
|
||||||
`https://chat.jazz.tools/#/chat/${loadedChat.id}`,
|
`https://chat.jazz.tools/#/chat/${chat.id}`,
|
||||||
);
|
);
|
||||||
Alert.alert("Copied to clipboard", `Chat ID: ${loadedChat.id}`);
|
Alert.alert("Copied to clipboard", `Chat ID: ${chat.id}`);
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
title="Share"
|
title="Share"
|
||||||
/>
|
/>
|
||||||
) : null,
|
) : null,
|
||||||
});
|
});
|
||||||
}, [navigation, loadedChat]);
|
}, [navigation, chat]);
|
||||||
|
|
||||||
const createChat = () => {
|
const createChat = () => {
|
||||||
const group = Group.create({ owner: me });
|
const group = Group.create({ owner: me });
|
||||||
group.addMember("everyone", "writer");
|
group.addMember("everyone", "writer");
|
||||||
const chat = Chat.create([], { owner: group });
|
const chat = Chat.create([], { owner: group });
|
||||||
setChatId(chat.id);
|
setChat(chat);
|
||||||
|
};
|
||||||
|
|
||||||
|
const loadChat = async (chatId: ID<Chat>) => {
|
||||||
|
try {
|
||||||
|
const chat = await Chat.load(chatId, me, []);
|
||||||
|
setChat(chat);
|
||||||
|
} catch (error) {
|
||||||
|
console.log("Error loading chat", error);
|
||||||
|
Alert.alert("Error", `Error loading chat: ${error}`);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const joinChat = () => {
|
const joinChat = () => {
|
||||||
@@ -69,7 +73,7 @@ export default function ChatScreen({ navigation }: { navigation: any }) {
|
|||||||
text: "Join",
|
text: "Join",
|
||||||
onPress: (chatId) => {
|
onPress: (chatId) => {
|
||||||
if (chatId) {
|
if (chatId) {
|
||||||
setChatId(chatId as ID<Chat>);
|
loadChat(chatId as ID<Chat>);
|
||||||
} else {
|
} else {
|
||||||
Alert.alert("Error", "Chat ID cannot be empty.");
|
Alert.alert("Error", "Chat ID cannot be empty.");
|
||||||
}
|
}
|
||||||
@@ -81,11 +85,9 @@ export default function ChatScreen({ navigation }: { navigation: any }) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const sendMessage = () => {
|
const sendMessage = () => {
|
||||||
if (!loadedChat) return;
|
if (!chat) return;
|
||||||
if (message.trim()) {
|
if (message.trim()) {
|
||||||
loadedChat.push(
|
chat.push(Message.create({ text: message }, { owner: chat._owner }));
|
||||||
Message.create({ text: message }, { owner: loadedChat?._owner }),
|
|
||||||
);
|
|
||||||
setMessage("");
|
setMessage("");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -135,20 +137,8 @@ export default function ChatScreen({ navigation }: { navigation: any }) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<View className="flex flex-col h-full">
|
<View className="flex flex-col h-full">
|
||||||
{!loadedChat ? (
|
{!chat ? (
|
||||||
<View className="flex flex-col h-full items-center justify-center">
|
<View className="flex flex-col h-full items-center justify-center">
|
||||||
<Text className="text-m font-bold mb-6">Username</Text>
|
|
||||||
<TextInput
|
|
||||||
className="rounded h-12 p-2 mb-12 w-40 border border-gray-200 block"
|
|
||||||
value={profile?.name ?? ""}
|
|
||||||
onChangeText={(value) => {
|
|
||||||
if (profile) {
|
|
||||||
profile.name = value;
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
textAlignVertical="center"
|
|
||||||
onSubmitEditing={sendMessage}
|
|
||||||
/>
|
|
||||||
<TouchableOpacity
|
<TouchableOpacity
|
||||||
onPress={createChat}
|
onPress={createChat}
|
||||||
className="bg-blue-500 p-4 rounded-md"
|
className="bg-blue-500 p-4 rounded-md"
|
||||||
|
|||||||
@@ -1,7 +1,13 @@
|
|||||||
import { useAcceptInvite } from "jazz-react-native";
|
|
||||||
import React, { Text } from "react-native";
|
import React, { Text } from "react-native";
|
||||||
|
import { useAcceptInvite } from "./jazz";
|
||||||
import { Chat } from "./schema";
|
import { Chat } from "./schema";
|
||||||
|
|
||||||
|
type ChatScreenParams = {
|
||||||
|
valueHint?: string;
|
||||||
|
valueID?: string;
|
||||||
|
inviteSecret?: string;
|
||||||
|
};
|
||||||
|
|
||||||
export default function HandleInviteScreen({
|
export default function HandleInviteScreen({
|
||||||
navigation,
|
navigation,
|
||||||
}: {
|
}: {
|
||||||
|
|||||||
4
examples/chat-rn/src/jazz.tsx
Normal file
4
examples/chat-rn/src/jazz.tsx
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
import { createJazzRNApp } from "jazz-react-native";
|
||||||
|
|
||||||
|
export const Jazz = createJazzRNApp();
|
||||||
|
export const { useAccount, useCoState, useAcceptInvite } = Jazz;
|
||||||
@@ -1,12 +1,10 @@
|
|||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
module.exports = {
|
module.exports = {
|
||||||
// NOTE: Update this to include the paths to all of your component files.
|
|
||||||
content: [
|
content: [
|
||||||
"./app/**/*.{js,jsx,ts,tsx}",
|
"./app/**/*.{js,jsx,ts,tsx}",
|
||||||
"./components/**/*.{js,jsx,ts,tsx}",
|
"./components/**/*.{js,jsx,ts,tsx}",
|
||||||
"./src/**/*.{js,jsx,ts,tsx}",
|
"./src/**/*.{js,jsx,ts,tsx}",
|
||||||
],
|
],
|
||||||
presets: [require("nativewind/preset")],
|
|
||||||
theme: {
|
theme: {
|
||||||
extend: {},
|
extend: {},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,261 +1,5 @@
|
|||||||
# chat-vue
|
# chat-vue
|
||||||
|
|
||||||
## 0.0.47
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.9.22
|
|
||||||
- jazz-vue@0.9.22
|
|
||||||
|
|
||||||
## 0.0.46
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [1be017d]
|
|
||||||
- jazz-tools@0.9.21
|
|
||||||
- jazz-browser@0.9.21
|
|
||||||
- jazz-vue@0.9.21
|
|
||||||
|
|
||||||
## 0.0.45
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [b01cc1f]
|
|
||||||
- jazz-tools@0.9.20
|
|
||||||
- jazz-browser@0.9.20
|
|
||||||
- jazz-vue@0.9.20
|
|
||||||
|
|
||||||
## 0.0.44
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.9.19
|
|
||||||
- jazz-tools@0.9.19
|
|
||||||
- jazz-vue@0.9.19
|
|
||||||
|
|
||||||
## 0.0.43
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.9.18
|
|
||||||
- jazz-tools@0.9.18
|
|
||||||
- jazz-vue@0.9.18
|
|
||||||
|
|
||||||
## 0.0.42
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [c2ca1fe]
|
|
||||||
- Updated dependencies [1227047]
|
|
||||||
- jazz-tools@0.9.17
|
|
||||||
- jazz-browser@0.9.17
|
|
||||||
- jazz-vue@0.9.17
|
|
||||||
|
|
||||||
## 0.0.41
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [24b3b6a]
|
|
||||||
- jazz-tools@0.9.16
|
|
||||||
- jazz-browser@0.9.16
|
|
||||||
- jazz-vue@0.9.16
|
|
||||||
|
|
||||||
## 0.0.40
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [7491711]
|
|
||||||
- jazz-tools@0.9.15
|
|
||||||
- jazz-browser@0.9.15
|
|
||||||
- jazz-vue@0.9.15
|
|
||||||
|
|
||||||
## 0.0.39
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [3df93cc]
|
|
||||||
- jazz-tools@0.9.14
|
|
||||||
- jazz-browser@0.9.14
|
|
||||||
- jazz-vue@0.9.14
|
|
||||||
|
|
||||||
## 0.0.38
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.9.13
|
|
||||||
- jazz-tools@0.9.13
|
|
||||||
- jazz-vue@0.9.13
|
|
||||||
|
|
||||||
## 0.0.37
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.9.12
|
|
||||||
- jazz-tools@0.9.12
|
|
||||||
- jazz-vue@0.9.12
|
|
||||||
|
|
||||||
## 0.0.36
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.9.11
|
|
||||||
- jazz-tools@0.9.11
|
|
||||||
- jazz-vue@0.9.11
|
|
||||||
|
|
||||||
## 0.0.35
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [5e83864]
|
|
||||||
- jazz-tools@0.9.10
|
|
||||||
- jazz-browser@0.9.10
|
|
||||||
- jazz-vue@0.9.10
|
|
||||||
|
|
||||||
## 0.0.34
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [8eb9247]
|
|
||||||
- jazz-tools@0.9.9
|
|
||||||
- jazz-browser@0.9.9
|
|
||||||
- jazz-vue@0.9.9
|
|
||||||
|
|
||||||
## 0.0.33
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [d1d773b]
|
|
||||||
- jazz-tools@0.9.8
|
|
||||||
- jazz-browser@0.9.8
|
|
||||||
- jazz-vue@0.9.8
|
|
||||||
|
|
||||||
## 0.0.32
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [1b71969]
|
|
||||||
- Updated dependencies [5d98189]
|
|
||||||
- jazz-browser@0.9.1
|
|
||||||
- jazz-tools@0.9.1
|
|
||||||
- jazz-vue@0.9.1
|
|
||||||
|
|
||||||
## 0.0.31
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [9dd8d95]
|
|
||||||
- Updated dependencies [8eda792]
|
|
||||||
- jazz-vue@0.9.0
|
|
||||||
- jazz-tools@0.9.0
|
|
||||||
- jazz-browser@0.9.0
|
|
||||||
|
|
||||||
## 0.0.30
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [dc62b95]
|
|
||||||
- Updated dependencies [1de26f8]
|
|
||||||
- jazz-tools@0.8.51
|
|
||||||
- jazz-browser@0.8.51
|
|
||||||
- jazz-vue@0.8.51
|
|
||||||
|
|
||||||
## 0.0.29
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.8.50
|
|
||||||
- jazz-tools@0.8.50
|
|
||||||
- jazz-vue@0.8.50
|
|
||||||
|
|
||||||
## 0.0.28
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.8.49
|
|
||||||
- jazz-tools@0.8.49
|
|
||||||
- jazz-vue@0.8.49
|
|
||||||
|
|
||||||
## 0.0.27
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [635e824]
|
|
||||||
- Updated dependencies [0a85982]
|
|
||||||
- jazz-tools@0.8.48
|
|
||||||
- jazz-browser@0.8.48
|
|
||||||
- jazz-vue@0.8.48
|
|
||||||
|
|
||||||
## 0.0.26
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [6f0bd7f]
|
|
||||||
- Updated dependencies [fa41f8e]
|
|
||||||
- Updated dependencies [88d7d9a]
|
|
||||||
- Updated dependencies [60e35ea]
|
|
||||||
- jazz-browser@0.8.45
|
|
||||||
- jazz-tools@0.8.45
|
|
||||||
- jazz-vue@0.8.45
|
|
||||||
|
|
||||||
## 0.0.25
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.8.44
|
|
||||||
- jazz-tools@0.8.44
|
|
||||||
- jazz-vue@0.8.44
|
|
||||||
|
|
||||||
## 0.0.24
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [ac216b9]
|
|
||||||
- jazz-browser@0.8.41
|
|
||||||
- jazz-tools@0.8.41
|
|
||||||
- jazz-vue@0.8.41
|
|
||||||
|
|
||||||
## 0.0.23
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.8.40
|
|
||||||
- jazz-vue@0.8.40
|
|
||||||
|
|
||||||
## 0.0.22
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [e386f2b]
|
|
||||||
- Updated dependencies [249eecb]
|
|
||||||
- jazz-browser@0.8.39
|
|
||||||
- jazz-tools@0.8.39
|
|
||||||
- jazz-vue@0.8.39
|
|
||||||
|
|
||||||
## 0.0.21
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.8.38
|
|
||||||
- jazz-tools@0.8.38
|
|
||||||
- jazz-vue@0.8.38
|
|
||||||
|
|
||||||
## 0.0.20
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser@0.8.37
|
|
||||||
- jazz-tools@0.8.37
|
|
||||||
- jazz-vue@0.8.25
|
|
||||||
|
|
||||||
## 0.0.19
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [441fe27]
|
|
||||||
- jazz-tools@0.8.36
|
|
||||||
- jazz-browser@0.8.36
|
|
||||||
- jazz-vue@0.8.24
|
|
||||||
|
|
||||||
## 0.0.18
|
## 0.0.18
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,55 +1,29 @@
|
|||||||
# Chat example with Jazz and Vue
|
# Chat example with Jazz and Vue
|
||||||
|
|
||||||
## Getting started
|
## Installing & running the example locally
|
||||||
|
|
||||||
You can either
|
(This requires `pnpm` to be installed, see [https://pnpm.io/installation](https://pnpm.io/installation))
|
||||||
1. Clone the jazz repository, and run the app within the monorepo.
|
|
||||||
2. Or create a new Jazz project using this example as a template.
|
|
||||||
|
|
||||||
|
Start by downloading the [jazz repository](https://github.com/garden-co/jazz):
|
||||||
### Using the example as a template
|
|
||||||
|
|
||||||
Create a new Jazz project, and use this example as a template.
|
|
||||||
```bash
|
```bash
|
||||||
npx create-jazz-app@latest --example chat-vue --project-name chat-vue
|
npx degit gardencmp/jazz jazz
|
||||||
```
|
```
|
||||||
|
|
||||||
Go to the new project directory.
|
Go to the todo-vue example directory:
|
||||||
```bash
|
```bash
|
||||||
cd chat-vue
|
cd jazz/examples/chat-vue
|
||||||
```
|
```
|
||||||
|
|
||||||
Run the dev server.
|
Install and build dependencies:
|
||||||
```bash
|
|
||||||
npm run dev
|
|
||||||
```
|
|
||||||
|
|
||||||
### Using the monorepo
|
|
||||||
|
|
||||||
This requires `pnpm` to be installed, see [https://pnpm.io/installation](https://pnpm.io/installation).
|
|
||||||
|
|
||||||
Clone the jazz repository.
|
|
||||||
```bash
|
|
||||||
git clone https://github.com/garden-co/jazz.git
|
|
||||||
```
|
|
||||||
|
|
||||||
Install and build dependencies.
|
|
||||||
```bash
|
```bash
|
||||||
pnpm i && npx turbo build
|
pnpm i && npx turbo build
|
||||||
```
|
```
|
||||||
|
|
||||||
Go to the example directory.
|
Start the dev server:
|
||||||
```bash
|
|
||||||
cd jazz/examples/chat-vue/
|
|
||||||
```
|
|
||||||
|
|
||||||
Start the dev server.
|
|
||||||
```bash
|
```bash
|
||||||
pnpm dev
|
pnpm dev
|
||||||
```
|
```
|
||||||
|
|
||||||
Open [http://localhost:5173](http://localhost:5173) with your browser to see the result.
|
|
||||||
|
|
||||||
## Questions / problems / feedback
|
## Questions / problems / feedback
|
||||||
|
|
||||||
If you have feedback, let us know on [Discord](https://discord.gg/utDMjHYg42) or open an issue or PR to fix something that seems wrong.
|
If you have feedback, let us know on [Discord](https://discord.gg/utDMjHYg42) or open an issue or PR to fix something that seems wrong.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "chat-vue",
|
"name": "chat-vue",
|
||||||
"version": "0.0.47",
|
"version": "0.0.18",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -25,14 +25,14 @@
|
|||||||
"@vitejs/plugin-vue": "^5.1.4",
|
"@vitejs/plugin-vue": "^5.1.4",
|
||||||
"@vitejs/plugin-vue-jsx": "^4.0.1",
|
"@vitejs/plugin-vue-jsx": "^4.0.1",
|
||||||
"@vue/tsconfig": "^0.5.1",
|
"@vue/tsconfig": "^0.5.1",
|
||||||
"autoprefixer": "^10.4.20",
|
"autoprefixer": "^10.4.14",
|
||||||
"eslint": "^9.7.0",
|
"eslint": "^8.46.0",
|
||||||
"eslint-plugin-vue": "^9.28.0",
|
"eslint-plugin-vue": "^9.28.0",
|
||||||
"npm-run-all2": "^6.2.3",
|
"npm-run-all2": "^6.2.3",
|
||||||
"postcss": "^8.4.27",
|
"postcss": "^8.4.27",
|
||||||
"tailwindcss": "^3.4.15",
|
"tailwindcss": "3.3.2",
|
||||||
"typescript": "~5.6.2",
|
"typescript": "^5.3.3",
|
||||||
"vite": "^5.4.10",
|
"vite": "^5.0.10",
|
||||||
"vite-plugin-vue-devtools": "^7.4.6",
|
"vite-plugin-vue-devtools": "^7.4.6",
|
||||||
"vue-tsc": "^2.1.6"
|
"vue-tsc": "^2.1.6"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,9 +9,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useAccount } from "jazz-vue";
|
|
||||||
import AppContainer from "./components/AppContainer.vue";
|
import AppContainer from "./components/AppContainer.vue";
|
||||||
import TopBar from "./components/TopBar.vue";
|
import TopBar from "./components/TopBar.vue";
|
||||||
|
import { useAccount } from "./main";
|
||||||
|
|
||||||
const { me, logOut } = useAccount();
|
const { me, logOut } = useAccount();
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
export const apiKey = "chat-example-jazz@garden.co";
|
|
||||||
@@ -1,31 +1,36 @@
|
|||||||
import { DemoAuthBasicUI, JazzProvider } from "jazz-vue";
|
import { DemoAuthBasicUI, createJazzVueApp, useDemoAuth } from "jazz-vue";
|
||||||
import { createApp, defineComponent, h } from "vue";
|
import { createApp, defineComponent, h } from "vue";
|
||||||
import App from "./App.vue";
|
import App from "./App.vue";
|
||||||
import "./index.css";
|
import "./index.css";
|
||||||
import { apiKey } from "@/apiKey";
|
|
||||||
import router from "./router";
|
import router from "./router";
|
||||||
|
|
||||||
|
const Jazz = createJazzVueApp();
|
||||||
|
export const { useAccount, useCoState } = Jazz;
|
||||||
|
const { JazzProvider } = Jazz;
|
||||||
|
|
||||||
const RootComponent = defineComponent({
|
const RootComponent = defineComponent({
|
||||||
name: "RootComponent",
|
name: "RootComponent",
|
||||||
setup() {
|
setup() {
|
||||||
return () =>
|
const { authMethod, state } = useDemoAuth();
|
||||||
|
|
||||||
|
return () => [
|
||||||
h(
|
h(
|
||||||
JazzProvider,
|
JazzProvider,
|
||||||
{
|
{
|
||||||
sync: {
|
auth: authMethod.value,
|
||||||
peer: `wss://cloud.jazz.tools/?key=${apiKey}`,
|
peer: "wss://cloud.jazz.tools/?key=chat-example-jazz@garden.co",
|
||||||
},
|
|
||||||
},
|
},
|
||||||
h(
|
{
|
||||||
DemoAuthBasicUI,
|
default: () => h(App),
|
||||||
{
|
},
|
||||||
appName: "Jazz Vue Chat",
|
),
|
||||||
},
|
|
||||||
{
|
state.state !== "signedIn" &&
|
||||||
default: () => h(App),
|
h(DemoAuthBasicUI, {
|
||||||
},
|
appName: "Jazz Chat",
|
||||||
),
|
state,
|
||||||
);
|
}),
|
||||||
|
];
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -26,12 +26,12 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import type { ID } from "jazz-tools";
|
import type { ID } from "jazz-tools";
|
||||||
import { useCoState } from "jazz-vue";
|
|
||||||
import { type PropType, computed, defineComponent, ref } from "vue";
|
import { type PropType, computed, defineComponent, ref } from "vue";
|
||||||
import ChatBody from "../components/ChatBody.vue";
|
import ChatBody from "../components/ChatBody.vue";
|
||||||
import ChatBubble from "../components/ChatBubble.vue";
|
import ChatBubble from "../components/ChatBubble.vue";
|
||||||
import ChatInput from "../components/ChatInput.vue";
|
import ChatInput from "../components/ChatInput.vue";
|
||||||
import EmptyChatMessage from "../components/EmptyChatMessage.vue";
|
import EmptyChatMessage from "../components/EmptyChatMessage.vue";
|
||||||
|
import { useCoState } from "../main";
|
||||||
import { Chat, Message } from "../schema";
|
import { Chat, Message } from "../schema";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
|
|||||||
@@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { Group } from "jazz-tools";
|
import { Group } from "jazz-tools";
|
||||||
import { useAccount } from "jazz-vue";
|
|
||||||
import { useRouter } from "vue-router";
|
import { useRouter } from "vue-router";
|
||||||
|
import { useAccount } from "../main";
|
||||||
import { Chat } from "../schema";
|
import { Chat } from "../schema";
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|||||||
8
examples/chat-vue/tailwind.config.js
Normal file
8
examples/chat-vue/tailwind.config.js
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/** @type {import('tailwindcss').Config} */
|
||||||
|
export default {
|
||||||
|
purge: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
|
||||||
|
theme: {
|
||||||
|
extend: {},
|
||||||
|
},
|
||||||
|
plugins: [],
|
||||||
|
};
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import type { Config } from "tailwindcss";
|
|
||||||
|
|
||||||
const config: Config = {
|
|
||||||
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
|
|
||||||
theme: {
|
|
||||||
extend: {},
|
|
||||||
},
|
|
||||||
plugins: [],
|
|
||||||
};
|
|
||||||
|
|
||||||
export default config;
|
|
||||||
@@ -1,278 +1,5 @@
|
|||||||
# jazz-example-chat
|
# jazz-example-chat
|
||||||
|
|
||||||
## 0.0.143
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser-media-images@0.9.22
|
|
||||||
- jazz-react@0.9.22
|
|
||||||
|
|
||||||
## 0.0.142
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [1be017d]
|
|
||||||
- jazz-tools@0.9.21
|
|
||||||
- jazz-browser-media-images@0.9.21
|
|
||||||
- jazz-react@0.9.21
|
|
||||||
|
|
||||||
## 0.0.141
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [b01cc1f]
|
|
||||||
- jazz-tools@0.9.20
|
|
||||||
- jazz-browser-media-images@0.9.20
|
|
||||||
- jazz-react@0.9.20
|
|
||||||
|
|
||||||
## 0.0.140
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react@0.9.19
|
|
||||||
- jazz-tools@0.9.19
|
|
||||||
- jazz-browser-media-images@0.9.19
|
|
||||||
|
|
||||||
## 0.0.139
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react@0.9.18
|
|
||||||
- jazz-tools@0.9.18
|
|
||||||
- jazz-browser-media-images@0.9.18
|
|
||||||
|
|
||||||
## 0.0.138
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [c2ca1fe]
|
|
||||||
- Updated dependencies [1227047]
|
|
||||||
- jazz-tools@0.9.17
|
|
||||||
- jazz-browser-media-images@0.9.17
|
|
||||||
- jazz-react@0.9.17
|
|
||||||
|
|
||||||
## 0.0.137
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [24b3b6a]
|
|
||||||
- jazz-tools@0.9.16
|
|
||||||
- jazz-browser-media-images@0.9.16
|
|
||||||
- jazz-react@0.9.16
|
|
||||||
|
|
||||||
## 0.0.136
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [7491711]
|
|
||||||
- jazz-tools@0.9.15
|
|
||||||
- jazz-browser-media-images@0.9.15
|
|
||||||
- jazz-react@0.9.15
|
|
||||||
|
|
||||||
## 0.0.135
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [3df93cc]
|
|
||||||
- jazz-tools@0.9.14
|
|
||||||
- jazz-browser-media-images@0.9.14
|
|
||||||
- jazz-react@0.9.14
|
|
||||||
|
|
||||||
## 0.0.134
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react@0.9.13
|
|
||||||
- jazz-tools@0.9.13
|
|
||||||
- jazz-browser-media-images@0.9.13
|
|
||||||
|
|
||||||
## 0.0.133
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react@0.9.12
|
|
||||||
- jazz-tools@0.9.12
|
|
||||||
- jazz-browser-media-images@0.9.12
|
|
||||||
|
|
||||||
## 0.0.132
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react@0.9.11
|
|
||||||
- jazz-tools@0.9.11
|
|
||||||
- jazz-browser-media-images@0.9.11
|
|
||||||
|
|
||||||
## 0.0.131
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- f76274c: Fix image handling in react-native
|
|
||||||
- Updated dependencies [5e83864]
|
|
||||||
- jazz-react@0.9.10
|
|
||||||
- jazz-tools@0.9.10
|
|
||||||
- jazz-browser-media-images@0.9.10
|
|
||||||
|
|
||||||
## 0.0.130
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [8eb9247]
|
|
||||||
- jazz-tools@0.9.9
|
|
||||||
- jazz-browser-media-images@0.9.9
|
|
||||||
- jazz-react@0.9.9
|
|
||||||
|
|
||||||
## 0.0.129
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [d1d773b]
|
|
||||||
- jazz-tools@0.9.8
|
|
||||||
- jazz-react@0.9.8
|
|
||||||
- jazz-browser-media-images@0.9.8
|
|
||||||
|
|
||||||
## 0.0.128
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react@0.9.4
|
|
||||||
|
|
||||||
## 0.0.127
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [1b71969]
|
|
||||||
- jazz-react@0.9.1
|
|
||||||
- jazz-tools@0.9.1
|
|
||||||
- jazz-browser-media-images@0.9.1
|
|
||||||
|
|
||||||
## 0.0.126
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [956a4d1]
|
|
||||||
- Updated dependencies [8eda792]
|
|
||||||
- jazz-react@0.9.0
|
|
||||||
- jazz-tools@0.9.0
|
|
||||||
- jazz-browser-media-images@0.9.0
|
|
||||||
|
|
||||||
## 0.0.125
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [dc62b95]
|
|
||||||
- Updated dependencies [1de26f8]
|
|
||||||
- jazz-tools@0.8.51
|
|
||||||
- jazz-browser-media-images@0.8.51
|
|
||||||
- jazz-react@0.8.51
|
|
||||||
|
|
||||||
## 0.0.124
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react@0.8.50
|
|
||||||
- jazz-tools@0.8.50
|
|
||||||
- jazz-browser-media-images@0.8.50
|
|
||||||
|
|
||||||
## 0.0.123
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-react@0.8.49
|
|
||||||
- jazz-tools@0.8.49
|
|
||||||
- jazz-browser-media-images@0.8.49
|
|
||||||
|
|
||||||
## 0.0.122
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [635e824]
|
|
||||||
- Updated dependencies [0a85982]
|
|
||||||
- jazz-tools@0.8.48
|
|
||||||
- jazz-browser-media-images@0.8.48
|
|
||||||
- jazz-react@0.8.48
|
|
||||||
|
|
||||||
## 0.0.121
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [6f0bd7f]
|
|
||||||
- Updated dependencies [fca6a0b]
|
|
||||||
- Updated dependencies [fa41f8e]
|
|
||||||
- Updated dependencies [88d7d9a]
|
|
||||||
- Updated dependencies [60e35ea]
|
|
||||||
- cojson@0.8.45
|
|
||||||
- jazz-tools@0.8.45
|
|
||||||
- jazz-react@0.8.45
|
|
||||||
- jazz-browser-media-images@0.8.45
|
|
||||||
|
|
||||||
## 0.0.120
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [5d20c81]
|
|
||||||
- cojson@0.8.44
|
|
||||||
- jazz-react@0.8.44
|
|
||||||
- jazz-tools@0.8.44
|
|
||||||
- jazz-browser-media-images@0.8.44
|
|
||||||
|
|
||||||
## 0.0.119
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [3252502]
|
|
||||||
- Updated dependencies [6370348]
|
|
||||||
- Updated dependencies [ac216b9]
|
|
||||||
- cojson@0.8.41
|
|
||||||
- jazz-react@0.8.41
|
|
||||||
- jazz-tools@0.8.41
|
|
||||||
- jazz-browser-media-images@0.8.41
|
|
||||||
|
|
||||||
## 0.0.118
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- jazz-browser-media-images@0.8.40
|
|
||||||
- jazz-react@0.8.40
|
|
||||||
|
|
||||||
## 0.0.117
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [249eecb]
|
|
||||||
- Updated dependencies [3121551]
|
|
||||||
- jazz-tools@0.8.39
|
|
||||||
- cojson@0.8.39
|
|
||||||
- jazz-browser-media-images@0.8.39
|
|
||||||
- jazz-react@0.8.39
|
|
||||||
|
|
||||||
## 0.0.116
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [b00ee91]
|
|
||||||
- Updated dependencies [f488c09]
|
|
||||||
- cojson@0.8.38
|
|
||||||
- jazz-react@0.8.38
|
|
||||||
- jazz-tools@0.8.38
|
|
||||||
|
|
||||||
## 0.0.115
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [3d9f12e]
|
|
||||||
- cojson@0.8.37
|
|
||||||
- jazz-react@0.8.37
|
|
||||||
- jazz-tools@0.8.37
|
|
||||||
|
|
||||||
## 0.0.114
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- Updated dependencies [441fe27]
|
|
||||||
- cojson@0.8.36
|
|
||||||
- jazz-tools@0.8.36
|
|
||||||
- jazz-react@0.8.36
|
|
||||||
|
|
||||||
## 0.0.113
|
## 0.0.113
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -2,56 +2,30 @@
|
|||||||
|
|
||||||
Live version: [https://chat.jazz.tools](https://chat.jazz.tools)
|
Live version: [https://chat.jazz.tools](https://chat.jazz.tools)
|
||||||
|
|
||||||
## Getting started
|
## Installing & running the example locally
|
||||||
|
|
||||||
You can either
|
(This requires `pnpm` to be installed, see [https://pnpm.io/installation](https://pnpm.io/installation))
|
||||||
1. Clone the jazz repository, and run the app within the monorepo.
|
|
||||||
2. Or create a new Jazz project using this example as a template.
|
|
||||||
|
|
||||||
|
Start by downloading the [jazz repository](https://github.com/garden-co/jazz):
|
||||||
### Using the example as a template
|
|
||||||
|
|
||||||
Create a new Jazz project, and use this example as a template.
|
|
||||||
```bash
|
```bash
|
||||||
npx create-jazz-app@latest --example chat --project-name chat
|
npx degit gardencmp/jazz jazz
|
||||||
```
|
```
|
||||||
|
|
||||||
Go to the new project directory.
|
Go to the chat example directory:
|
||||||
```bash
|
```bash
|
||||||
cd chat
|
cd jazz/examples/chat
|
||||||
```
|
```
|
||||||
|
|
||||||
Run the dev server.
|
Install and build dependencies:
|
||||||
```bash
|
|
||||||
npm run dev
|
|
||||||
```
|
|
||||||
|
|
||||||
### Using the monorepo
|
|
||||||
|
|
||||||
This requires `pnpm` to be installed, see [https://pnpm.io/installation](https://pnpm.io/installation).
|
|
||||||
|
|
||||||
Clone the jazz repository.
|
|
||||||
```bash
|
|
||||||
git clone https://github.com/garden-co/jazz.git
|
|
||||||
```
|
|
||||||
|
|
||||||
Install and build dependencies.
|
|
||||||
```bash
|
```bash
|
||||||
pnpm i && npx turbo build
|
pnpm i && npx turbo build
|
||||||
```
|
```
|
||||||
|
|
||||||
Go to the example directory.
|
Start the dev server:
|
||||||
```bash
|
|
||||||
cd jazz/examples/chat/
|
|
||||||
```
|
|
||||||
|
|
||||||
Start the dev server.
|
|
||||||
```bash
|
```bash
|
||||||
pnpm dev
|
pnpm dev
|
||||||
```
|
```
|
||||||
|
|
||||||
Open [http://localhost:5173](http://localhost:5173) with your browser to see the result.
|
|
||||||
|
|
||||||
## Questions / problems / feedback
|
## Questions / problems / feedback
|
||||||
|
|
||||||
If you have feedback, let us know on [Discord](https://discord.gg/utDMjHYg42) or open an issue or PR to fix something that seems wrong.
|
If you have feedback, let us know on [Discord](https://discord.gg/utDMjHYg42) or open an issue or PR to fix something that seems wrong.
|
||||||
@@ -60,4 +34,4 @@ If you have feedback, let us know on [Discord](https://discord.gg/utDMjHYg42) or
|
|||||||
|
|
||||||
By default, the example app uses [Jazz Cloud](https://jazz.tools/cloud) (`wss://cloud.jazz.tools`) - so cross-device use, invites and collaboration should just work.
|
By default, the example app uses [Jazz Cloud](https://jazz.tools/cloud) (`wss://cloud.jazz.tools`) - so cross-device use, invites and collaboration should just work.
|
||||||
|
|
||||||
You can also run a local sync server by running `npx jazz-run sync` and adding the query param `?sync=ws://localhost:4200` to the URL of the example app (for example: `http://localhost:5173/?peer=ws://localhost:4200`), or by setting the `sync` parameter of the `<JazzProvider>` provider component in [./src/main.tsx](./src/main.tsx).
|
You can also run a local sync server by running `npx jazz-run sync` and adding the query param `?sync=ws://localhost:4200` to the URL of the example app (for example: `http://localhost:5173/?peer=ws://localhost:4200`), or by setting the `sync` parameter of the `<Jazz.Provider>` provider component in [./src/main.tsx](./src/main.tsx).
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Jazz Chat Example</title>
|
<title>Jazz Chat Example</title>
|
||||||
</head>
|
</head>
|
||||||
<body class="h-full bg-white text-stone-700 dark:text-stone-400 dark:bg-stone-925">
|
<body class="h-full">
|
||||||
<div id="root" class="h-full"></div>
|
<div id="root" class="h-full"></div>
|
||||||
<script type="module" src="/src/app.tsx"></script>
|
<script type="module" src="/src/app.tsx"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "jazz-example-chat",
|
"name": "jazz-example-chat",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.0.143",
|
"version": "0.0.113",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
@@ -13,25 +13,37 @@
|
|||||||
"test:ui": "playwright test --ui"
|
"test:ui": "playwright test --ui"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@radix-ui/react-checkbox": "^1.0.4",
|
||||||
|
"@radix-ui/react-slot": "^1.0.2",
|
||||||
|
"@radix-ui/react-toast": "^1.1.4",
|
||||||
|
"class-variance-authority": "^0.7.0",
|
||||||
"clsx": "^2.0.0",
|
"clsx": "^2.0.0",
|
||||||
"hash-slash": "workspace:*",
|
"cojson": "workspace:0.8.35",
|
||||||
"jazz-browser-media-images": "workspace:*",
|
"hash-slash": "workspace:0.2.1",
|
||||||
"jazz-react": "workspace:*",
|
"jazz-react": "workspace:0.8.35",
|
||||||
"jazz-tools": "workspace:*",
|
"jazz-tools": "workspace:0.8.35",
|
||||||
"lucide-react": "^0.274.0",
|
"lucide-react": "^0.274.0",
|
||||||
"react": "^18.3.1",
|
"qrcode": "^1.5.3",
|
||||||
"react-dom": "^18.3.1"
|
"react": "^18.2.0",
|
||||||
|
"react-dom": "^18.2.0",
|
||||||
|
"react-router": "^6.16.0",
|
||||||
|
"react-router-dom": "^6.16.0",
|
||||||
|
"react-use": "^17.4.0",
|
||||||
|
"tailwind-merge": "^1.14.0",
|
||||||
|
"tailwindcss-animate": "^1.0.7",
|
||||||
|
"uniqolor": "^1.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@playwright/test": "^1.46.1",
|
"@playwright/test": "^1.46.1",
|
||||||
"@types/react": "^18.3.12",
|
"@types/qrcode": "^1.5.1",
|
||||||
"@types/react-dom": "^18.3.1",
|
"@types/react": "^18.2.19",
|
||||||
|
"@types/react-dom": "^18.2.7",
|
||||||
"@vitejs/plugin-react-swc": "^3.3.2",
|
"@vitejs/plugin-react-swc": "^3.3.2",
|
||||||
"autoprefixer": "^10.4.20",
|
"autoprefixer": "^10.4.14",
|
||||||
"is-ci": "^3.0.1",
|
"is-ci": "^3.0.1",
|
||||||
"postcss": "^8.4.27",
|
"postcss": "^8.4.27",
|
||||||
"tailwindcss": "^3.4.15",
|
"tailwindcss": "3.3.2",
|
||||||
"typescript": "~5.6.2",
|
"typescript": "^5.3.3",
|
||||||
"vite": "^5.4.10"
|
"vite": "^5.0.10"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
export const apiKey = "chat-example-jazz@garden.co";
|
|
||||||
@@ -1,13 +1,9 @@
|
|||||||
import { apiKey } from "@/apiKey.ts";
|
import { inIframe, onChatLoad } from "@/util.ts";
|
||||||
import { getRandomUsername, inIframe, onChatLoad } from "@/util.ts";
|
|
||||||
import { useIframeHashRouter } from "hash-slash";
|
import { useIframeHashRouter } from "hash-slash";
|
||||||
import { JazzProvider, useAccount } from "jazz-react";
|
|
||||||
import { Group, ID } from "jazz-tools";
|
import { Group, ID } from "jazz-tools";
|
||||||
import { StrictMode } from "react";
|
|
||||||
import { createRoot } from "react-dom/client";
|
|
||||||
import { ChatScreen } from "./chatScreen.tsx";
|
import { ChatScreen } from "./chatScreen.tsx";
|
||||||
|
import { useAccount } from "./main.tsx";
|
||||||
import { Chat } from "./schema.ts";
|
import { Chat } from "./schema.ts";
|
||||||
import { ThemeProvider } from "./themeProvider.tsx";
|
|
||||||
import { AppContainer, TopBar } from "./ui.tsx";
|
import { AppContainer, TopBar } from "./ui.tsx";
|
||||||
|
|
||||||
export function App() {
|
export function App() {
|
||||||
@@ -16,27 +12,19 @@ export function App() {
|
|||||||
|
|
||||||
const createChat = () => {
|
const createChat = () => {
|
||||||
if (!me) return;
|
if (!me) return;
|
||||||
const group = Group.create();
|
const group = Group.create({ owner: me });
|
||||||
group.addMember("everyone", "writer");
|
group.addMember("everyone", "writer");
|
||||||
const chat = Chat.create([], group);
|
const chat = Chat.create([], { owner: group });
|
||||||
router.navigate("/#/chat/" + chat.id);
|
router.navigate("/#/chat/" + chat.id);
|
||||||
|
|
||||||
// for https://jazz.tools marketing site demo only
|
// for https://jazz.tools marketing site demo only
|
||||||
onChatLoad(chat);
|
onChatLoad(chat, me);
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<AppContainer>
|
<AppContainer>
|
||||||
<TopBar>
|
<TopBar>
|
||||||
<input
|
<p>{me?.profile?.name}</p>
|
||||||
type="text"
|
|
||||||
value={me?.profile?.name ?? ""}
|
|
||||||
onChange={(e) => {
|
|
||||||
if (!me?.profile) return;
|
|
||||||
me.profile.name = e.target.value;
|
|
||||||
}}
|
|
||||||
placeholder="Set username"
|
|
||||||
/>
|
|
||||||
{!inIframe && <button onClick={logOut}>Log out</button>}
|
{!inIframe && <button onClick={logOut}>Log out</button>}
|
||||||
</TopBar>
|
</TopBar>
|
||||||
{router.route({
|
{router.route({
|
||||||
@@ -46,21 +34,3 @@ export function App() {
|
|||||||
</AppContainer>
|
</AppContainer>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const url = new URL(window.location.href);
|
|
||||||
const defaultProfileName = url.searchParams.get("user") ?? getRandomUsername();
|
|
||||||
|
|
||||||
createRoot(document.getElementById("root")!).render(
|
|
||||||
<ThemeProvider>
|
|
||||||
<StrictMode>
|
|
||||||
<JazzProvider
|
|
||||||
sync={{
|
|
||||||
peer: `wss://cloud.jazz.tools/?key=${apiKey}`,
|
|
||||||
}}
|
|
||||||
defaultProfileName={defaultProfileName}
|
|
||||||
>
|
|
||||||
<App />
|
|
||||||
</JazzProvider>
|
|
||||||
</StrictMode>
|
|
||||||
</ThemeProvider>,
|
|
||||||
);
|
|
||||||
|
|||||||
@@ -1,46 +1,21 @@
|
|||||||
import { createImage } from "jazz-browser-media-images";
|
|
||||||
import { useCoState } from "jazz-react";
|
|
||||||
import { ID } from "jazz-tools";
|
import { ID } from "jazz-tools";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
|
import { useCoState } from "./main.tsx";
|
||||||
import { Chat, Message } from "./schema.ts";
|
import { Chat, Message } from "./schema.ts";
|
||||||
import {
|
import {
|
||||||
BubbleBody,
|
BubbleBody,
|
||||||
BubbleContainer,
|
BubbleContainer,
|
||||||
BubbleImage,
|
|
||||||
BubbleInfo,
|
BubbleInfo,
|
||||||
BubbleText,
|
|
||||||
ChatBody,
|
ChatBody,
|
||||||
|
ChatInput,
|
||||||
EmptyChatMessage,
|
EmptyChatMessage,
|
||||||
ImageInput,
|
|
||||||
InputBar,
|
|
||||||
TextInput,
|
|
||||||
} from "./ui.tsx";
|
} from "./ui.tsx";
|
||||||
|
|
||||||
export function ChatScreen(props: { chatID: ID<Chat> }) {
|
export function ChatScreen(props: { chatID: ID<Chat> }) {
|
||||||
const chat = useCoState(Chat, props.chatID, [{}]);
|
const chat = useCoState(Chat, props.chatID, [{}]);
|
||||||
const [showNLastMessages, setShowNLastMessages] = useState(30);
|
const [showNLastMessages, setShowNLastMessages] = useState(30);
|
||||||
|
|
||||||
if (!chat)
|
return chat ? (
|
||||||
return (
|
|
||||||
<div className="flex-1 flex justify-center items-center">Loading...</div>
|
|
||||||
);
|
|
||||||
|
|
||||||
const sendImage = (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
||||||
const file = event.currentTarget.files?.[0];
|
|
||||||
|
|
||||||
if (!file) return;
|
|
||||||
|
|
||||||
if (file.size > 5000000) {
|
|
||||||
alert("Please upload an image less than 5MB.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
createImage(file, { owner: chat._owner }).then((image) => {
|
|
||||||
chat.push(Message.create({ text: file.name, image: image }, chat._owner));
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
<>
|
||||||
<ChatBody>
|
<ChatBody>
|
||||||
{chat.length > 0 ? (
|
{chat.length > 0 ? (
|
||||||
@@ -60,31 +35,24 @@ export function ChatScreen(props: { chatID: ID<Chat> }) {
|
|||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
</ChatBody>
|
</ChatBody>
|
||||||
|
<ChatInput
|
||||||
<InputBar>
|
onSubmit={(text) => {
|
||||||
<ImageInput onImageChange={sendImage} />
|
chat.push(Message.create({ text }, { owner: chat._owner }));
|
||||||
|
}}
|
||||||
<TextInput
|
/>
|
||||||
onSubmit={(text) => {
|
|
||||||
chat.push(Message.create({ text }, { owner: chat._owner }));
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</InputBar>
|
|
||||||
</>
|
</>
|
||||||
|
) : (
|
||||||
|
<div className="flex-1 flex justify-center items-center">Loading...</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function ChatBubble(props: { msg: Message }) {
|
function ChatBubble(props: { msg: Message }) {
|
||||||
const lastEdit = props.msg._edits.text;
|
const lastEdit = props.msg._edits.text;
|
||||||
const fromMe = lastEdit.by?.isMe;
|
const fromMe = lastEdit.by?.isMe;
|
||||||
const { text, image } = props.msg;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<BubbleContainer fromMe={fromMe}>
|
<BubbleContainer fromMe={fromMe}>
|
||||||
<BubbleBody fromMe={fromMe}>
|
<BubbleBody fromMe={fromMe}>{props.msg.text}</BubbleBody>
|
||||||
{image && <BubbleImage image={image} />}
|
|
||||||
<BubbleText text={text} />
|
|
||||||
</BubbleBody>
|
|
||||||
<BubbleInfo by={lastEdit.by?.profile?.name} madeAt={lastEdit.madeAt} />
|
<BubbleInfo by={lastEdit.by?.profile?.name} madeAt={lastEdit.madeAt} />
|
||||||
</BubbleContainer>
|
</BubbleContainer>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,3 +1,78 @@
|
|||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
@layer base {
|
||||||
|
:root {
|
||||||
|
--background: 0 0% 100%;
|
||||||
|
--foreground: 20 14.3% 4.1%;
|
||||||
|
|
||||||
|
--card: 0 0% 100%;
|
||||||
|
--card-foreground: 20 14.3% 4.1%;
|
||||||
|
|
||||||
|
--popover: 0 0% 100%;
|
||||||
|
--popover-foreground: 20 14.3% 4.1%;
|
||||||
|
|
||||||
|
--primary: 24 9.8% 10%;
|
||||||
|
--primary-foreground: 60 9.1% 97.8%;
|
||||||
|
|
||||||
|
--secondary: 60 4.8% 95.9%;
|
||||||
|
--secondary-foreground: 24 9.8% 10%;
|
||||||
|
|
||||||
|
--muted: 60 4.8% 95.9%;
|
||||||
|
--muted-foreground: 25 5.3% 44.7%;
|
||||||
|
|
||||||
|
--accent: 60 4.8% 95.9%;
|
||||||
|
--accent-foreground: 24 9.8% 10%;
|
||||||
|
|
||||||
|
--destructive: 0 84.2% 60.2%;
|
||||||
|
--destructive-foreground: 60 9.1% 97.8%;
|
||||||
|
|
||||||
|
--border: 20 5.9% 90%;
|
||||||
|
--input: 20 5.9% 90%;
|
||||||
|
--ring: 20 14.3% 4.1%;
|
||||||
|
|
||||||
|
--radius: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark {
|
||||||
|
--background: 20 14.3% 4.1%;
|
||||||
|
--foreground: 60 9.1% 97.8%;
|
||||||
|
|
||||||
|
--card: 20 14.3% 4.1%;
|
||||||
|
--card-foreground: 60 9.1% 97.8%;
|
||||||
|
|
||||||
|
--popover: 20 14.3% 4.1%;
|
||||||
|
--popover-foreground: 60 9.1% 97.8%;
|
||||||
|
|
||||||
|
--primary: 60 9.1% 97.8%;
|
||||||
|
--primary-foreground: 24 9.8% 10%;
|
||||||
|
|
||||||
|
--secondary: 12 6.5% 15.1%;
|
||||||
|
--secondary-foreground: 60 9.1% 97.8%;
|
||||||
|
|
||||||
|
--muted: 12 6.5% 15.1%;
|
||||||
|
--muted-foreground: 24 5.4% 63.9%;
|
||||||
|
|
||||||
|
--accent: 12 6.5% 15.1%;
|
||||||
|
--accent-foreground: 60 9.1% 97.8%;
|
||||||
|
|
||||||
|
--destructive: 0 62.8% 30.6%;
|
||||||
|
--destructive-foreground: 60 9.1% 97.8%;
|
||||||
|
|
||||||
|
--border: 12 6.5% 15.1%;
|
||||||
|
--input: 12 6.5% 15.1%;
|
||||||
|
--ring: 24 5.7% 82.9%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@layer base {
|
||||||
|
* {
|
||||||
|
@apply border-border;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
@apply bg-background text-foreground;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
33
examples/chat/src/main.tsx
Normal file
33
examples/chat/src/main.tsx
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
import { DemoAuthBasicUI, createJazzReactApp, useDemoAuth } from "jazz-react";
|
||||||
|
import { StrictMode } from "react";
|
||||||
|
import { createRoot } from "react-dom/client";
|
||||||
|
import { App } from "./app.tsx";
|
||||||
|
|
||||||
|
const Jazz = createJazzReactApp();
|
||||||
|
export const { useAccount, useCoState } = Jazz;
|
||||||
|
|
||||||
|
function JazzAndAuth({ children }: { children: React.ReactNode }) {
|
||||||
|
const [auth, state] = useDemoAuth();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Jazz.Provider
|
||||||
|
auth={auth}
|
||||||
|
peer="wss://cloud.jazz.tools/?key=chat-example-jazz@garden.co"
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</Jazz.Provider>
|
||||||
|
{state.state !== "signedIn" && (
|
||||||
|
<DemoAuthBasicUI appName="Jazz Chat" state={state} />
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
createRoot(document.getElementById("root")!).render(
|
||||||
|
<StrictMode>
|
||||||
|
<JazzAndAuth>
|
||||||
|
<App />
|
||||||
|
</JazzAndAuth>
|
||||||
|
</StrictMode>,
|
||||||
|
);
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user