mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 08:05:19 +00:00
Embeddable Docs Assistant (#3572)
Co-authored-by: Zeno Kapitein <zeno@gitbook.io>
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"@gitbook/embed": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Initial version of the embed SDK.
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"gitbook": minor
|
||||||
|
---
|
||||||
|
|
||||||
|
Start routes for embeddable version of the assistant and docs pages.
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
name: 'Setup Playwright'
|
|
||||||
description: 'Install Playwright and dependencies'
|
|
||||||
runs:
|
|
||||||
using: 'composite'
|
|
||||||
steps:
|
|
||||||
# Run npm ci and get Playwright version
|
|
||||||
- name: 🏗 Prepare Playwright env
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
PLAYWRIGHT_VERSION=$(npm ls --json @playwright/test | jq --raw-output '.dependencies["gitbook"].dependencies["@playwright/test"].version')
|
|
||||||
echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
# Cache browser binaries, cache key is based on Playwright version and OS
|
|
||||||
- name: 🧰 Cache Playwright browser binaries
|
|
||||||
uses: actions/cache@v4
|
|
||||||
id: playwright-cache
|
|
||||||
with:
|
|
||||||
path: '~/.cache/ms-playwright'
|
|
||||||
key: '${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}'
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-playwright-
|
|
||||||
|
|
||||||
# Install browser binaries & OS dependencies if cache missed
|
|
||||||
- name: 🏗 Install Playwright browser binaries & OS dependencies
|
|
||||||
if: steps.playwright-cache.outputs.cache-hit != 'true'
|
|
||||||
shell: bash
|
|
||||||
working-directory: packages/gitbook
|
|
||||||
run: |
|
|
||||||
bun x playwright install --with-deps chromium
|
|
||||||
|
|
||||||
# Install only the OS dependencies if cache hit
|
|
||||||
- name: 🏗 Install Playwright OS dependencies
|
|
||||||
if: steps.playwright-cache.outputs.cache-hit == 'true'
|
|
||||||
shell: bash
|
|
||||||
working-directory: packages/gitbook
|
|
||||||
run: |
|
|
||||||
bun x playwright install-deps
|
|
||||||
@@ -110,8 +110,8 @@ jobs:
|
|||||||
uses: ./.github/composite/setup-bun
|
uses: ./.github/composite/setup-bun
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: bun install --frozen-lockfile
|
run: bun install --frozen-lockfile
|
||||||
- name: Setup Playwright
|
env:
|
||||||
uses: ./.github/actions/setup-playwright
|
PUPPETEER_SKIP_DOWNLOAD: 1
|
||||||
- name: Run Playwright tests
|
- name: Run Playwright tests
|
||||||
run: bun e2e
|
run: bun e2e
|
||||||
env:
|
env:
|
||||||
@@ -131,8 +131,8 @@ jobs:
|
|||||||
uses: ./.github/composite/setup-bun
|
uses: ./.github/composite/setup-bun
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: bun install --frozen-lockfile
|
run: bun install --frozen-lockfile
|
||||||
- name: Setup Playwright
|
env:
|
||||||
uses: ./.github/actions/setup-playwright
|
PUPPETEER_SKIP_DOWNLOAD: 1
|
||||||
- name: Run Playwright tests
|
- name: Run Playwright tests
|
||||||
run: bun e2e
|
run: bun e2e
|
||||||
env:
|
env:
|
||||||
@@ -152,8 +152,8 @@ jobs:
|
|||||||
uses: ./.github/composite/setup-bun
|
uses: ./.github/composite/setup-bun
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: bun install --frozen-lockfile
|
run: bun install --frozen-lockfile
|
||||||
- name: Setup Playwright
|
env:
|
||||||
uses: ./.github/actions/setup-playwright
|
PUPPETEER_SKIP_DOWNLOAD: 1
|
||||||
- name: Run Playwright tests
|
- name: Run Playwright tests
|
||||||
run: bun e2e-customers
|
run: bun e2e-customers
|
||||||
env:
|
env:
|
||||||
@@ -173,8 +173,8 @@ jobs:
|
|||||||
uses: ./.github/composite/setup-bun
|
uses: ./.github/composite/setup-bun
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: bun install --frozen-lockfile
|
run: bun install --frozen-lockfile
|
||||||
- name: Setup Playwright
|
env:
|
||||||
uses: ./.github/actions/setup-playwright
|
PUPPETEER_SKIP_DOWNLOAD: 1
|
||||||
- name: Run Playwright tests
|
- name: Run Playwright tests
|
||||||
run: bun e2e-customers
|
run: bun e2e-customers
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -39,6 +39,22 @@
|
|||||||
"typescript": "^5.5.3",
|
"typescript": "^5.5.3",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
"packages/embed": {
|
||||||
|
"name": "@gitbook/embed",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"dependencies": {
|
||||||
|
"@gitbook/api": "catalog:",
|
||||||
|
"@gitbook/icons": "workspace:",
|
||||||
|
"bidc": "catalog:",
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"react": "^19.0.0",
|
||||||
|
"typescript": "^5.5.3",
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"react": "^18.0.0",
|
||||||
|
},
|
||||||
|
},
|
||||||
"packages/emoji-codepoints": {
|
"packages/emoji-codepoints": {
|
||||||
"name": "@gitbook/emoji-codepoints",
|
"name": "@gitbook/emoji-codepoints",
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
@@ -85,6 +101,7 @@
|
|||||||
"@tusbar/cache-control": "^1.0.2",
|
"@tusbar/cache-control": "^1.0.2",
|
||||||
"ai": "^4.2.2",
|
"ai": "^4.2.2",
|
||||||
"assert-never": "^1.2.1",
|
"assert-never": "^1.2.1",
|
||||||
|
"bidc": "catalog:",
|
||||||
"bun-types": "^1.1.20",
|
"bun-types": "^1.1.20",
|
||||||
"classnames": "^2.5.1",
|
"classnames": "^2.5.1",
|
||||||
"direction": "^2.0.1",
|
"direction": "^2.0.1",
|
||||||
@@ -103,7 +120,7 @@
|
|||||||
"memoizee": "^0.4.17",
|
"memoizee": "^0.4.17",
|
||||||
"micromark-extension-frontmatter": "^2.0.0",
|
"micromark-extension-frontmatter": "^2.0.0",
|
||||||
"micromark-extension-gfm": "^3.0.0",
|
"micromark-extension-gfm": "^3.0.0",
|
||||||
"next": "^15.3.2",
|
"next": "^15.5.0",
|
||||||
"next-themes": "^0.2.1",
|
"next-themes": "^0.2.1",
|
||||||
"nuqs": "^2.2.3",
|
"nuqs": "^2.2.3",
|
||||||
"object-hash": "^3.0.0",
|
"object-hash": "^3.0.0",
|
||||||
@@ -260,6 +277,7 @@
|
|||||||
},
|
},
|
||||||
"catalog": {
|
"catalog": {
|
||||||
"@gitbook/api": "^0.136.0",
|
"@gitbook/api": "^0.136.0",
|
||||||
|
"bidc": "^0.0.2",
|
||||||
},
|
},
|
||||||
"packages": {
|
"packages": {
|
||||||
"@ai-sdk/provider": ["@ai-sdk/provider@1.1.0", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-0M+qjp+clUD0R1E5eWQFhxEvWLNaOtGQRUaBn8CUABnSKredagq92hUS9VjOzGsTm37xLfpaxl97AVtbeOsHew=="],
|
"@ai-sdk/provider": ["@ai-sdk/provider@1.1.0", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-0M+qjp+clUD0R1E5eWQFhxEvWLNaOtGQRUaBn8CUABnSKredagq92hUS9VjOzGsTm37xLfpaxl97AVtbeOsHew=="],
|
||||||
@@ -538,7 +556,7 @@
|
|||||||
|
|
||||||
"@edge-runtime/vm": ["@edge-runtime/vm@3.2.0", "", { "dependencies": { "@edge-runtime/primitives": "4.1.0" } }, "sha512-0dEVyRLM/lG4gp1R/Ik5bfPl/1wX00xFwd5KcNH602tzBa09oF7pbTKETEhR1GjZ75K6OJnYFu8II2dyMhONMw=="],
|
"@edge-runtime/vm": ["@edge-runtime/vm@3.2.0", "", { "dependencies": { "@edge-runtime/primitives": "4.1.0" } }, "sha512-0dEVyRLM/lG4gp1R/Ik5bfPl/1wX00xFwd5KcNH602tzBa09oF7pbTKETEhR1GjZ75K6OJnYFu8II2dyMhONMw=="],
|
||||||
|
|
||||||
"@emnapi/runtime": ["@emnapi/runtime@1.4.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-64WYIf4UYcdLnbKn/umDlNjQDSS8AgZrI/R9+x5ilkUVFxXcA1Ebl+gQLc/6mERA4407Xof0R7wEyEuj091CVw=="],
|
"@emnapi/runtime": ["@emnapi/runtime@1.4.5", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg=="],
|
||||||
|
|
||||||
"@emotion/is-prop-valid": ["@emotion/is-prop-valid@0.8.8", "", { "dependencies": { "@emotion/memoize": "0.7.4" } }, "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA=="],
|
"@emotion/is-prop-valid": ["@emotion/is-prop-valid@0.8.8", "", { "dependencies": { "@emotion/memoize": "0.7.4" } }, "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA=="],
|
||||||
|
|
||||||
@@ -632,6 +650,8 @@
|
|||||||
|
|
||||||
"@gitbook/colors": ["@gitbook/colors@workspace:packages/colors"],
|
"@gitbook/colors": ["@gitbook/colors@workspace:packages/colors"],
|
||||||
|
|
||||||
|
"@gitbook/embed": ["@gitbook/embed@workspace:packages/embed"],
|
||||||
|
|
||||||
"@gitbook/emoji-codepoints": ["@gitbook/emoji-codepoints@workspace:packages/emoji-codepoints"],
|
"@gitbook/emoji-codepoints": ["@gitbook/emoji-codepoints@workspace:packages/emoji-codepoints"],
|
||||||
|
|
||||||
"@gitbook/fontawesome-pro": ["@gitbook/fontawesome-pro@1.0.11", "", { "dependencies": { "@fortawesome/fontawesome-common-types": "^6.7.2" } }, "sha512-P+GZ/X7b2Uj4uxxFX6xez+QceK211SXgMBj54lXzgo3Py34QhOuYrh/2F3ChB1iK5SXDwjn2xAuQXI7HuM66Mg=="],
|
"@gitbook/fontawesome-pro": ["@gitbook/fontawesome-pro@1.0.11", "", { "dependencies": { "@fortawesome/fontawesome-common-types": "^6.7.2" } }, "sha512-P+GZ/X7b2Uj4uxxFX6xez+QceK211SXgMBj54lXzgo3Py34QhOuYrh/2F3ChB1iK5SXDwjn2xAuQXI7HuM66Mg=="],
|
||||||
@@ -662,45 +682,49 @@
|
|||||||
|
|
||||||
"@hyperjump/uri": ["@hyperjump/uri@1.2.2", "", {}, "sha512-Zn8AZb/j54KKUCckmcOzKCSCKpIpMVBc60zYaajD8Dq/1g4UN6TfAFi+uDa5o/6rf+I+5xDZjZpdzwfuhlC0xQ=="],
|
"@hyperjump/uri": ["@hyperjump/uri@1.2.2", "", {}, "sha512-Zn8AZb/j54KKUCckmcOzKCSCKpIpMVBc60zYaajD8Dq/1g4UN6TfAFi+uDa5o/6rf+I+5xDZjZpdzwfuhlC0xQ=="],
|
||||||
|
|
||||||
"@img/sharp-darwin-arm64": ["@img/sharp-darwin-arm64@0.34.1", "", { "optionalDependencies": { "@img/sharp-libvips-darwin-arm64": "1.1.0" }, "os": "darwin", "cpu": "arm64" }, "sha512-pn44xgBtgpEbZsu+lWf2KNb6OAf70X68k+yk69Ic2Xz11zHR/w24/U49XT7AeRwJ0Px+mhALhU5LPci1Aymk7A=="],
|
"@img/sharp-darwin-arm64": ["@img/sharp-darwin-arm64@0.34.3", "", { "optionalDependencies": { "@img/sharp-libvips-darwin-arm64": "1.2.0" }, "os": "darwin", "cpu": "arm64" }, "sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg=="],
|
||||||
|
|
||||||
"@img/sharp-darwin-x64": ["@img/sharp-darwin-x64@0.34.1", "", { "optionalDependencies": { "@img/sharp-libvips-darwin-x64": "1.1.0" }, "os": "darwin", "cpu": "x64" }, "sha512-VfuYgG2r8BpYiOUN+BfYeFo69nP/MIwAtSJ7/Zpxc5QF3KS22z8Pvg3FkrSFJBPNQ7mmcUcYQFBmEQp7eu1F8Q=="],
|
"@img/sharp-darwin-x64": ["@img/sharp-darwin-x64@0.34.3", "", { "optionalDependencies": { "@img/sharp-libvips-darwin-x64": "1.2.0" }, "os": "darwin", "cpu": "x64" }, "sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA=="],
|
||||||
|
|
||||||
"@img/sharp-libvips-darwin-arm64": ["@img/sharp-libvips-darwin-arm64@1.1.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA=="],
|
"@img/sharp-libvips-darwin-arm64": ["@img/sharp-libvips-darwin-arm64@1.2.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ=="],
|
||||||
|
|
||||||
"@img/sharp-libvips-darwin-x64": ["@img/sharp-libvips-darwin-x64@1.1.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ=="],
|
"@img/sharp-libvips-darwin-x64": ["@img/sharp-libvips-darwin-x64@1.2.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg=="],
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-arm": ["@img/sharp-libvips-linux-arm@1.1.0", "", { "os": "linux", "cpu": "arm" }, "sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA=="],
|
"@img/sharp-libvips-linux-arm": ["@img/sharp-libvips-linux-arm@1.2.0", "", { "os": "linux", "cpu": "arm" }, "sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw=="],
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-arm64": ["@img/sharp-libvips-linux-arm64@1.1.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew=="],
|
"@img/sharp-libvips-linux-arm64": ["@img/sharp-libvips-linux-arm64@1.2.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA=="],
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-ppc64": ["@img/sharp-libvips-linux-ppc64@1.1.0", "", { "os": "linux", "cpu": "ppc64" }, "sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ=="],
|
"@img/sharp-libvips-linux-ppc64": ["@img/sharp-libvips-linux-ppc64@1.2.0", "", { "os": "linux", "cpu": "ppc64" }, "sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ=="],
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-s390x": ["@img/sharp-libvips-linux-s390x@1.1.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA=="],
|
"@img/sharp-libvips-linux-s390x": ["@img/sharp-libvips-linux-s390x@1.2.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw=="],
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-x64": ["@img/sharp-libvips-linux-x64@1.1.0", "", { "os": "linux", "cpu": "x64" }, "sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q=="],
|
"@img/sharp-libvips-linux-x64": ["@img/sharp-libvips-linux-x64@1.2.0", "", { "os": "linux", "cpu": "x64" }, "sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg=="],
|
||||||
|
|
||||||
"@img/sharp-libvips-linuxmusl-arm64": ["@img/sharp-libvips-linuxmusl-arm64@1.1.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w=="],
|
"@img/sharp-libvips-linuxmusl-arm64": ["@img/sharp-libvips-linuxmusl-arm64@1.2.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q=="],
|
||||||
|
|
||||||
"@img/sharp-libvips-linuxmusl-x64": ["@img/sharp-libvips-linuxmusl-x64@1.1.0", "", { "os": "linux", "cpu": "x64" }, "sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A=="],
|
"@img/sharp-libvips-linuxmusl-x64": ["@img/sharp-libvips-linuxmusl-x64@1.2.0", "", { "os": "linux", "cpu": "x64" }, "sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q=="],
|
||||||
|
|
||||||
"@img/sharp-linux-arm": ["@img/sharp-linux-arm@0.34.1", "", { "optionalDependencies": { "@img/sharp-libvips-linux-arm": "1.1.0" }, "os": "linux", "cpu": "arm" }, "sha512-anKiszvACti2sGy9CirTlNyk7BjjZPiML1jt2ZkTdcvpLU1YH6CXwRAZCA2UmRXnhiIftXQ7+Oh62Ji25W72jA=="],
|
"@img/sharp-linux-arm": ["@img/sharp-linux-arm@0.34.3", "", { "optionalDependencies": { "@img/sharp-libvips-linux-arm": "1.2.0" }, "os": "linux", "cpu": "arm" }, "sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A=="],
|
||||||
|
|
||||||
"@img/sharp-linux-arm64": ["@img/sharp-linux-arm64@0.34.1", "", { "optionalDependencies": { "@img/sharp-libvips-linux-arm64": "1.1.0" }, "os": "linux", "cpu": "arm64" }, "sha512-kX2c+vbvaXC6vly1RDf/IWNXxrlxLNpBVWkdpRq5Ka7OOKj6nr66etKy2IENf6FtOgklkg9ZdGpEu9kwdlcwOQ=="],
|
"@img/sharp-linux-arm64": ["@img/sharp-linux-arm64@0.34.3", "", { "optionalDependencies": { "@img/sharp-libvips-linux-arm64": "1.2.0" }, "os": "linux", "cpu": "arm64" }, "sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA=="],
|
||||||
|
|
||||||
"@img/sharp-linux-s390x": ["@img/sharp-linux-s390x@0.34.1", "", { "optionalDependencies": { "@img/sharp-libvips-linux-s390x": "1.1.0" }, "os": "linux", "cpu": "s390x" }, "sha512-7s0KX2tI9mZI2buRipKIw2X1ufdTeaRgwmRabt5bi9chYfhur+/C1OXg3TKg/eag1W+6CCWLVmSauV1owmRPxA=="],
|
"@img/sharp-linux-ppc64": ["@img/sharp-linux-ppc64@0.34.3", "", { "optionalDependencies": { "@img/sharp-libvips-linux-ppc64": "1.2.0" }, "os": "linux", "cpu": "ppc64" }, "sha512-GLtbLQMCNC5nxuImPR2+RgrviwKwVql28FWZIW1zWruy6zLgA5/x2ZXk3mxj58X/tszVF69KK0Is83V8YgWhLA=="],
|
||||||
|
|
||||||
"@img/sharp-linux-x64": ["@img/sharp-linux-x64@0.34.1", "", { "optionalDependencies": { "@img/sharp-libvips-linux-x64": "1.1.0" }, "os": "linux", "cpu": "x64" }, "sha512-wExv7SH9nmoBW3Wr2gvQopX1k8q2g5V5Iag8Zk6AVENsjwd+3adjwxtp3Dcu2QhOXr8W9NusBU6XcQUohBZ5MA=="],
|
"@img/sharp-linux-s390x": ["@img/sharp-linux-s390x@0.34.3", "", { "optionalDependencies": { "@img/sharp-libvips-linux-s390x": "1.2.0" }, "os": "linux", "cpu": "s390x" }, "sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ=="],
|
||||||
|
|
||||||
"@img/sharp-linuxmusl-arm64": ["@img/sharp-linuxmusl-arm64@0.34.1", "", { "optionalDependencies": { "@img/sharp-libvips-linuxmusl-arm64": "1.1.0" }, "os": "linux", "cpu": "arm64" }, "sha512-DfvyxzHxw4WGdPiTF0SOHnm11Xv4aQexvqhRDAoD00MzHekAj9a/jADXeXYCDFH/DzYruwHbXU7uz+H+nWmSOQ=="],
|
"@img/sharp-linux-x64": ["@img/sharp-linux-x64@0.34.3", "", { "optionalDependencies": { "@img/sharp-libvips-linux-x64": "1.2.0" }, "os": "linux", "cpu": "x64" }, "sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ=="],
|
||||||
|
|
||||||
"@img/sharp-linuxmusl-x64": ["@img/sharp-linuxmusl-x64@0.34.1", "", { "optionalDependencies": { "@img/sharp-libvips-linuxmusl-x64": "1.1.0" }, "os": "linux", "cpu": "x64" }, "sha512-pax/kTR407vNb9qaSIiWVnQplPcGU8LRIJpDT5o8PdAx5aAA7AS3X9PS8Isw1/WfqgQorPotjrZL3Pqh6C5EBg=="],
|
"@img/sharp-linuxmusl-arm64": ["@img/sharp-linuxmusl-arm64@0.34.3", "", { "optionalDependencies": { "@img/sharp-libvips-linuxmusl-arm64": "1.2.0" }, "os": "linux", "cpu": "arm64" }, "sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ=="],
|
||||||
|
|
||||||
"@img/sharp-wasm32": ["@img/sharp-wasm32@0.34.1", "", { "dependencies": { "@emnapi/runtime": "^1.4.0" }, "cpu": "none" }, "sha512-YDybQnYrLQfEpzGOQe7OKcyLUCML4YOXl428gOOzBgN6Gw0rv8dpsJ7PqTHxBnXnwXr8S1mYFSLSa727tpz0xg=="],
|
"@img/sharp-linuxmusl-x64": ["@img/sharp-linuxmusl-x64@0.34.3", "", { "optionalDependencies": { "@img/sharp-libvips-linuxmusl-x64": "1.2.0" }, "os": "linux", "cpu": "x64" }, "sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ=="],
|
||||||
|
|
||||||
"@img/sharp-win32-ia32": ["@img/sharp-win32-ia32@0.34.1", "", { "os": "win32", "cpu": "ia32" }, "sha512-WKf/NAZITnonBf3U1LfdjoMgNO5JYRSlhovhRhMxXVdvWYveM4kM3L8m35onYIdh75cOMCo1BexgVQcCDzyoWw=="],
|
"@img/sharp-wasm32": ["@img/sharp-wasm32@0.34.3", "", { "dependencies": { "@emnapi/runtime": "^1.4.4" }, "cpu": "none" }, "sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg=="],
|
||||||
|
|
||||||
"@img/sharp-win32-x64": ["@img/sharp-win32-x64@0.34.1", "", { "os": "win32", "cpu": "x64" }, "sha512-hw1iIAHpNE8q3uMIRCgGOeDoz9KtFNarFLQclLxr/LK1VBkj8nby18RjFvr6aP7USRYAjTZW6yisnBWMX571Tw=="],
|
"@img/sharp-win32-arm64": ["@img/sharp-win32-arm64@0.34.3", "", { "os": "win32", "cpu": "arm64" }, "sha512-MjnHPnbqMXNC2UgeLJtX4XqoVHHlZNd+nPt1kRPmj63wURegwBhZlApELdtxM2OIZDRv/DFtLcNhVbd1z8GYXQ=="],
|
||||||
|
|
||||||
|
"@img/sharp-win32-ia32": ["@img/sharp-win32-ia32@0.34.3", "", { "os": "win32", "cpu": "ia32" }, "sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw=="],
|
||||||
|
|
||||||
|
"@img/sharp-win32-x64": ["@img/sharp-win32-x64@0.34.3", "", { "os": "win32", "cpu": "x64" }, "sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g=="],
|
||||||
|
|
||||||
"@internationalized/date": ["@internationalized/date@3.7.0", "", { "dependencies": { "@swc/helpers": "^0.5.0" } }, "sha512-VJ5WS3fcVx0bejE/YHfbDKR/yawZgKqn/if+oEeLqNwBtPzVB06olkfcnojTmEMX+gTpH+FlQ69SHNitJ8/erQ=="],
|
"@internationalized/date": ["@internationalized/date@3.7.0", "", { "dependencies": { "@swc/helpers": "^0.5.0" } }, "sha512-VJ5WS3fcVx0bejE/YHfbDKR/yawZgKqn/if+oEeLqNwBtPzVB06olkfcnojTmEMX+gTpH+FlQ69SHNitJ8/erQ=="],
|
||||||
|
|
||||||
@@ -752,23 +776,23 @@
|
|||||||
|
|
||||||
"@mapbox/node-pre-gyp": ["@mapbox/node-pre-gyp@2.0.0-rc.0", "", { "dependencies": { "consola": "^3.2.3", "detect-libc": "^2.0.0", "https-proxy-agent": "^7.0.5", "node-fetch": "^2.6.7", "nopt": "^8.0.0", "semver": "^7.5.3", "tar": "^7.4.0" }, "bin": { "node-pre-gyp": "bin/node-pre-gyp" } }, "sha512-nhSMNprz3WmeRvd8iUs5JqkKr0Ncx46JtPxM3AhXes84XpSJfmIwKeWXRpsr53S7kqPkQfPhzrMFUxSNb23qSA=="],
|
"@mapbox/node-pre-gyp": ["@mapbox/node-pre-gyp@2.0.0-rc.0", "", { "dependencies": { "consola": "^3.2.3", "detect-libc": "^2.0.0", "https-proxy-agent": "^7.0.5", "node-fetch": "^2.6.7", "nopt": "^8.0.0", "semver": "^7.5.3", "tar": "^7.4.0" }, "bin": { "node-pre-gyp": "bin/node-pre-gyp" } }, "sha512-nhSMNprz3WmeRvd8iUs5JqkKr0Ncx46JtPxM3AhXes84XpSJfmIwKeWXRpsr53S7kqPkQfPhzrMFUxSNb23qSA=="],
|
||||||
|
|
||||||
"@next/env": ["@next/env@15.3.2", "", {}, "sha512-xURk++7P7qR9JG1jJtLzPzf0qEvqCN0A/T3DXf8IPMKo9/6FfjxtEffRJIIew/bIL4T3C2jLLqBor8B/zVlx6g=="],
|
"@next/env": ["@next/env@15.5.0", "", {}, "sha512-sDaprBAfzCQiOgo2pO+LhnV0Wt2wBgartjrr+dpcTORYVnnXD0gwhHhiiyIih9hQbq+JnbqH4odgcFWhqCGidw=="],
|
||||||
|
|
||||||
"@next/swc-darwin-arm64": ["@next/swc-darwin-arm64@15.3.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-2DR6kY/OGcokbnCsjHpNeQblqCZ85/1j6njYSkzRdpLn5At7OkSdmk7WyAmB9G0k25+VgqVZ/u356OSoQZ3z0g=="],
|
"@next/swc-darwin-arm64": ["@next/swc-darwin-arm64@15.5.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-v7Jj9iqC6enxIRBIScD/o0lH7QKvSxq2LM8UTyqJi+S2w2QzhMYjven4vgu/RzgsdtdbpkyCxBTzHl/gN5rTRg=="],
|
||||||
|
|
||||||
"@next/swc-darwin-x64": ["@next/swc-darwin-x64@15.3.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-ro/fdqaZWL6k1S/5CLv1I0DaZfDVJkWNaUU3un8Lg6m0YENWlDulmIWzV96Iou2wEYyEsZq51mwV8+XQXqMp3w=="],
|
"@next/swc-darwin-x64": ["@next/swc-darwin-x64@15.5.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-s2Nk6ec+pmYmAb/utawuURy7uvyYKDk+TRE5aqLRsdnj3AhwC9IKUBmhfnLmY/+P+DnwqpeXEFIKe9tlG0p6CA=="],
|
||||||
|
|
||||||
"@next/swc-linux-arm64-gnu": ["@next/swc-linux-arm64-gnu@15.3.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-covwwtZYhlbRWK2HlYX9835qXum4xYZ3E2Mra1mdQ+0ICGoMiw1+nVAn4d9Bo7R3JqSmK1grMq/va+0cdh7bJA=="],
|
"@next/swc-linux-arm64-gnu": ["@next/swc-linux-arm64-gnu@15.5.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-mGlPJMZReU4yP5fSHjOxiTYvZmwPSWn/eF/dcg21pwfmiUCKS1amFvf1F1RkLHPIMPfocxLViNWFvkvDB14Isg=="],
|
||||||
|
|
||||||
"@next/swc-linux-arm64-musl": ["@next/swc-linux-arm64-musl@15.3.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-KQkMEillvlW5Qk5mtGA/3Yz0/tzpNlSw6/3/ttsV1lNtMuOHcGii3zVeXZyi4EJmmLDKYcTcByV2wVsOhDt/zg=="],
|
"@next/swc-linux-arm64-musl": ["@next/swc-linux-arm64-musl@15.5.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-biWqIOE17OW/6S34t1X8K/3vb1+svp5ji5QQT/IKR+VfM3B7GvlCwmz5XtlEan2ukOUf9tj2vJJBffaGH4fGRw=="],
|
||||||
|
|
||||||
"@next/swc-linux-x64-gnu": ["@next/swc-linux-x64-gnu@15.3.2", "", { "os": "linux", "cpu": "x64" }, "sha512-uRBo6THWei0chz+Y5j37qzx+BtoDRFIkDzZjlpCItBRXyMPIg079eIkOCl3aqr2tkxL4HFyJ4GHDes7W8HuAUg=="],
|
"@next/swc-linux-x64-gnu": ["@next/swc-linux-x64-gnu@15.5.0", "", { "os": "linux", "cpu": "x64" }, "sha512-zPisT+obYypM/l6EZ0yRkK3LEuoZqHaSoYKj+5jiD9ESHwdr6QhnabnNxYkdy34uCigNlWIaCbjFmQ8FY5AlxA=="],
|
||||||
|
|
||||||
"@next/swc-linux-x64-musl": ["@next/swc-linux-x64-musl@15.3.2", "", { "os": "linux", "cpu": "x64" }, "sha512-+uxFlPuCNx/T9PdMClOqeE8USKzj8tVz37KflT3Kdbx/LOlZBRI2yxuIcmx1mPNK8DwSOMNCr4ureSet7eyC0w=="],
|
"@next/swc-linux-x64-musl": ["@next/swc-linux-x64-musl@15.5.0", "", { "os": "linux", "cpu": "x64" }, "sha512-+t3+7GoU9IYmk+N+FHKBNFdahaReoAktdOpXHFIPOU1ixxtdge26NgQEEkJkCw2dHT9UwwK5zw4mAsURw4E8jA=="],
|
||||||
|
|
||||||
"@next/swc-win32-arm64-msvc": ["@next/swc-win32-arm64-msvc@15.3.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-LLTKmaI5cfD8dVzh5Vt7+OMo+AIOClEdIU/TSKbXXT2iScUTSxOGoBhfuv+FU8R9MLmrkIL1e2fBMkEEjYAtPQ=="],
|
"@next/swc-win32-arm64-msvc": ["@next/swc-win32-arm64-msvc@15.5.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-d8MrXKh0A+c9DLiy1BUFwtg3Hu90Lucj3k6iKTUdPOv42Ve2UiIG8HYi3UAb8kFVluXxEfdpCoPPCSODk5fDcw=="],
|
||||||
|
|
||||||
"@next/swc-win32-x64-msvc": ["@next/swc-win32-x64-msvc@15.3.2", "", { "os": "win32", "cpu": "x64" }, "sha512-aW5B8wOPioJ4mBdMDXkt5f3j8pUr9W8AnlX0Df35uRWNT1Y6RIybxjnSUe+PhM+M1bwgyY8PHLmXZC6zT1o5tA=="],
|
"@next/swc-win32-x64-msvc": ["@next/swc-win32-x64-msvc@15.5.0", "", { "os": "win32", "cpu": "x64" }, "sha512-Fe1tGHxOWEyQjmygWkkXSwhFcTJuimrNu52JEuwItrKJVV4iRjbWp9I7zZjwqtiNnQmxoEvoisn8wueFLrNpvQ=="],
|
||||||
|
|
||||||
"@noble/ciphers": ["@noble/ciphers@1.2.1", "", {}, "sha512-rONPWMC7PeExE077uLE4oqWrZ1IvAfz3oH9LibVAcVCopJiA9R62uavnbEzdkVmJYI6M6Zgkbeb07+tWjlq2XA=="],
|
"@noble/ciphers": ["@noble/ciphers@1.2.1", "", {}, "sha512-rONPWMC7PeExE077uLE4oqWrZ1IvAfz3oH9LibVAcVCopJiA9R62uavnbEzdkVmJYI6M6Zgkbeb07+tWjlq2XA=="],
|
||||||
|
|
||||||
@@ -1258,8 +1282,6 @@
|
|||||||
|
|
||||||
"@smithy/util-waiter": ["@smithy/util-waiter@2.2.0", "", { "dependencies": { "@smithy/abort-controller": "^2.2.0", "@smithy/types": "^2.12.0", "tslib": "^2.6.2" } }, "sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA=="],
|
"@smithy/util-waiter": ["@smithy/util-waiter@2.2.0", "", { "dependencies": { "@smithy/abort-controller": "^2.2.0", "@smithy/types": "^2.12.0", "tslib": "^2.6.2" } }, "sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA=="],
|
||||||
|
|
||||||
"@swc/counter": ["@swc/counter@0.1.3", "", {}, "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="],
|
|
||||||
|
|
||||||
"@swc/helpers": ["@swc/helpers@0.5.15", "", { "dependencies": { "tslib": "^2.8.0" } }, "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g=="],
|
"@swc/helpers": ["@swc/helpers@0.5.15", "", { "dependencies": { "tslib": "^2.8.0" } }, "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g=="],
|
||||||
|
|
||||||
"@szmarczak/http-timer": ["@szmarczak/http-timer@1.1.2", "", { "dependencies": { "defer-to-connect": "^1.0.1" } }, "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="],
|
"@szmarczak/http-timer": ["@szmarczak/http-timer@1.1.2", "", { "dependencies": { "defer-to-connect": "^1.0.1" } }, "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="],
|
||||||
@@ -1520,6 +1542,8 @@
|
|||||||
|
|
||||||
"better-path-resolve": ["better-path-resolve@1.0.0", "", { "dependencies": { "is-windows": "^1.0.0" } }, "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g=="],
|
"better-path-resolve": ["better-path-resolve@1.0.0", "", { "dependencies": { "is-windows": "^1.0.0" } }, "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g=="],
|
||||||
|
|
||||||
|
"bidc": ["bidc@0.0.2", "", {}, "sha512-+t2xK8oQEpxYEM+350mMHSx7eZNoOX6SpjqD+p+lDpVwpYVXjkTCfy0N60xyjelZ2AOa8NAg/12uhAX3MuAR0g=="],
|
||||||
|
|
||||||
"bignumber.js": ["bignumber.js@9.1.2", "", {}, "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug=="],
|
"bignumber.js": ["bignumber.js@9.1.2", "", {}, "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug=="],
|
||||||
|
|
||||||
"binary-extensions": ["binary-extensions@2.3.0", "", {}, "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="],
|
"binary-extensions": ["binary-extensions@2.3.0", "", {}, "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="],
|
||||||
@@ -1550,8 +1574,6 @@
|
|||||||
|
|
||||||
"bun-types": ["bun-types@1.1.30", "", { "dependencies": { "@types/node": "~20.12.8", "@types/ws": "~8.5.10" } }, "sha512-mGh7NLisOXskBU62DxLS+/nwmLlCYHYAkCzdo4DZ9+fzrpP41hAdOqaN4DO6tQfenHb4pYb0/shw29k4/6I2yQ=="],
|
"bun-types": ["bun-types@1.1.30", "", { "dependencies": { "@types/node": "~20.12.8", "@types/ws": "~8.5.10" } }, "sha512-mGh7NLisOXskBU62DxLS+/nwmLlCYHYAkCzdo4DZ9+fzrpP41hAdOqaN4DO6tQfenHb4pYb0/shw29k4/6I2yQ=="],
|
||||||
|
|
||||||
"busboy": ["busboy@1.6.0", "", { "dependencies": { "streamsearch": "^1.1.0" } }, "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA=="],
|
|
||||||
|
|
||||||
"bytes": ["bytes@3.1.0", "", {}, "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="],
|
"bytes": ["bytes@3.1.0", "", {}, "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="],
|
||||||
|
|
||||||
"cac": ["cac@6.7.14", "", {}, "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ=="],
|
"cac": ["cac@6.7.14", "", {}, "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ=="],
|
||||||
@@ -2408,7 +2430,7 @@
|
|||||||
|
|
||||||
"negotiator": ["negotiator@1.0.0", "", {}, "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg=="],
|
"negotiator": ["negotiator@1.0.0", "", {}, "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg=="],
|
||||||
|
|
||||||
"next": ["next@15.3.2", "", { "dependencies": { "@next/env": "15.3.2", "@swc/counter": "0.1.3", "@swc/helpers": "0.5.15", "busboy": "1.6.0", "caniuse-lite": "^1.0.30001579", "postcss": "8.4.31", "styled-jsx": "5.1.6" }, "optionalDependencies": { "@next/swc-darwin-arm64": "15.3.2", "@next/swc-darwin-x64": "15.3.2", "@next/swc-linux-arm64-gnu": "15.3.2", "@next/swc-linux-arm64-musl": "15.3.2", "@next/swc-linux-x64-gnu": "15.3.2", "@next/swc-linux-x64-musl": "15.3.2", "@next/swc-win32-arm64-msvc": "15.3.2", "@next/swc-win32-x64-msvc": "15.3.2", "sharp": "^0.34.1" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", "@playwright/test": "^1.41.2", "babel-plugin-react-compiler": "*", "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "sass": "^1.3.0" }, "optionalPeers": ["@opentelemetry/api", "@playwright/test", "babel-plugin-react-compiler", "sass"], "bin": { "next": "dist/bin/next" } }, "sha512-CA3BatMyHkxZ48sgOCLdVHjFU36N7TF1HhqAHLFOkV6buwZnvMI84Cug8xD56B9mCuKrqXnLn94417GrZ/jjCQ=="],
|
"next": ["next@15.5.0", "", { "dependencies": { "@next/env": "15.5.0", "@swc/helpers": "0.5.15", "caniuse-lite": "^1.0.30001579", "postcss": "8.4.31", "styled-jsx": "5.1.6" }, "optionalDependencies": { "@next/swc-darwin-arm64": "15.5.0", "@next/swc-darwin-x64": "15.5.0", "@next/swc-linux-arm64-gnu": "15.5.0", "@next/swc-linux-arm64-musl": "15.5.0", "@next/swc-linux-x64-gnu": "15.5.0", "@next/swc-linux-x64-musl": "15.5.0", "@next/swc-win32-arm64-msvc": "15.5.0", "@next/swc-win32-x64-msvc": "15.5.0", "sharp": "^0.34.3" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", "@playwright/test": "^1.51.1", "babel-plugin-react-compiler": "*", "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "sass": "^1.3.0" }, "optionalPeers": ["@opentelemetry/api", "@playwright/test", "babel-plugin-react-compiler", "sass"], "bin": { "next": "dist/bin/next" } }, "sha512-N1lp9Hatw3a9XLt0307lGB4uTKsXDhyOKQo7uYMzX4i0nF/c27grcGXkLdb7VcT8QPYLBa8ouIyEoUQJ2OyeNQ=="],
|
||||||
|
|
||||||
"next-themes": ["next-themes@0.2.1", "", { "peerDependencies": { "next": "*", "react": "*", "react-dom": "*" } }, "sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A=="],
|
"next-themes": ["next-themes@0.2.1", "", { "peerDependencies": { "next": "*", "react": "*", "react-dom": "*" } }, "sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A=="],
|
||||||
|
|
||||||
@@ -2698,7 +2720,7 @@
|
|||||||
|
|
||||||
"setprototypeof": ["setprototypeof@1.2.0", "", {}, "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="],
|
"setprototypeof": ["setprototypeof@1.2.0", "", {}, "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="],
|
||||||
|
|
||||||
"sharp": ["sharp@0.34.1", "", { "dependencies": { "color": "^4.2.3", "detect-libc": "^2.0.3", "semver": "^7.7.1" }, "optionalDependencies": { "@img/sharp-darwin-arm64": "0.34.1", "@img/sharp-darwin-x64": "0.34.1", "@img/sharp-libvips-darwin-arm64": "1.1.0", "@img/sharp-libvips-darwin-x64": "1.1.0", "@img/sharp-libvips-linux-arm": "1.1.0", "@img/sharp-libvips-linux-arm64": "1.1.0", "@img/sharp-libvips-linux-ppc64": "1.1.0", "@img/sharp-libvips-linux-s390x": "1.1.0", "@img/sharp-libvips-linux-x64": "1.1.0", "@img/sharp-libvips-linuxmusl-arm64": "1.1.0", "@img/sharp-libvips-linuxmusl-x64": "1.1.0", "@img/sharp-linux-arm": "0.34.1", "@img/sharp-linux-arm64": "0.34.1", "@img/sharp-linux-s390x": "0.34.1", "@img/sharp-linux-x64": "0.34.1", "@img/sharp-linuxmusl-arm64": "0.34.1", "@img/sharp-linuxmusl-x64": "0.34.1", "@img/sharp-wasm32": "0.34.1", "@img/sharp-win32-ia32": "0.34.1", "@img/sharp-win32-x64": "0.34.1" } }, "sha512-1j0w61+eVxu7DawFJtnfYcvSv6qPFvfTaqzTQ2BLknVhHTwGS8sc63ZBF4rzkWMBVKybo4S5OBtDdZahh2A1xg=="],
|
"sharp": ["sharp@0.34.3", "", { "dependencies": { "color": "^4.2.3", "detect-libc": "^2.0.4", "semver": "^7.7.2" }, "optionalDependencies": { "@img/sharp-darwin-arm64": "0.34.3", "@img/sharp-darwin-x64": "0.34.3", "@img/sharp-libvips-darwin-arm64": "1.2.0", "@img/sharp-libvips-darwin-x64": "1.2.0", "@img/sharp-libvips-linux-arm": "1.2.0", "@img/sharp-libvips-linux-arm64": "1.2.0", "@img/sharp-libvips-linux-ppc64": "1.2.0", "@img/sharp-libvips-linux-s390x": "1.2.0", "@img/sharp-libvips-linux-x64": "1.2.0", "@img/sharp-libvips-linuxmusl-arm64": "1.2.0", "@img/sharp-libvips-linuxmusl-x64": "1.2.0", "@img/sharp-linux-arm": "0.34.3", "@img/sharp-linux-arm64": "0.34.3", "@img/sharp-linux-ppc64": "0.34.3", "@img/sharp-linux-s390x": "0.34.3", "@img/sharp-linux-x64": "0.34.3", "@img/sharp-linuxmusl-arm64": "0.34.3", "@img/sharp-linuxmusl-x64": "0.34.3", "@img/sharp-wasm32": "0.34.3", "@img/sharp-win32-arm64": "0.34.3", "@img/sharp-win32-ia32": "0.34.3", "@img/sharp-win32-x64": "0.34.3" } }, "sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg=="],
|
||||||
|
|
||||||
"shebang-command": ["shebang-command@2.0.0", "", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="],
|
"shebang-command": ["shebang-command@2.0.0", "", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="],
|
||||||
|
|
||||||
@@ -2752,8 +2774,6 @@
|
|||||||
|
|
||||||
"stream-to-promise": ["stream-to-promise@2.2.0", "", { "dependencies": { "any-promise": "~1.3.0", "end-of-stream": "~1.1.0", "stream-to-array": "~2.3.0" } }, "sha512-HAGUASw8NT0k8JvIVutB2Y/9iBk7gpgEyAudXwNJmZERdMITGdajOa4VJfD/kNiA3TppQpTP4J+CtcHwdzKBAw=="],
|
"stream-to-promise": ["stream-to-promise@2.2.0", "", { "dependencies": { "any-promise": "~1.3.0", "end-of-stream": "~1.1.0", "stream-to-array": "~2.3.0" } }, "sha512-HAGUASw8NT0k8JvIVutB2Y/9iBk7gpgEyAudXwNJmZERdMITGdajOa4VJfD/kNiA3TppQpTP4J+CtcHwdzKBAw=="],
|
||||||
|
|
||||||
"streamsearch": ["streamsearch@1.1.0", "", {}, "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg=="],
|
|
||||||
|
|
||||||
"string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
|
"string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
|
||||||
|
|
||||||
"string-width-cjs": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
|
"string-width-cjs": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
|
||||||
@@ -4396,9 +4416,7 @@
|
|||||||
|
|
||||||
"send/mime-types": ["mime-types@2.1.35", "", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="],
|
"send/mime-types": ["mime-types@2.1.35", "", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="],
|
||||||
|
|
||||||
"sharp/detect-libc": ["detect-libc@2.0.3", "", {}, "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw=="],
|
"sharp/semver": ["semver@7.7.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="],
|
||||||
|
|
||||||
"sharp/semver": ["semver@7.7.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA=="],
|
|
||||||
|
|
||||||
"simple-swizzle/is-arrayish": ["is-arrayish@0.3.2", "", {}, "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="],
|
"simple-swizzle/is-arrayish": ["is-arrayish@0.3.2", "", {}, "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="],
|
||||||
|
|
||||||
|
|||||||
+2
-1
@@ -34,7 +34,8 @@
|
|||||||
"workspaces": {
|
"workspaces": {
|
||||||
"packages": ["packages/*"],
|
"packages": ["packages/*"],
|
||||||
"catalog": {
|
"catalog": {
|
||||||
"@gitbook/api": "^0.136.0"
|
"@gitbook/api": "^0.136.0",
|
||||||
|
"bidc": "^0.0.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"patchedDependencies": {
|
"patchedDependencies": {
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
dist/
|
||||||
|
standalone/
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
# `@gitbook/embed`
|
||||||
|
|
||||||
|
Embed the GitBook Docs Assistant in your product or website.
|
||||||
|
|
||||||
|
# Usage
|
||||||
|
|
||||||
|
## As a script from your docs site
|
||||||
|
|
||||||
|
All GitBook docs site includes a script to easily embed the docs assistant as a widget on your website.
|
||||||
|
|
||||||
|
The script is served at `https://docs.company.com/~gitbook/embed/script.js`.
|
||||||
|
|
||||||
|
You can find the embed script from your docs site settings, or you can copy the following and replace the `docs.company.com` by your docs site hostname.
|
||||||
|
|
||||||
|
```html
|
||||||
|
<script src="https://docs.company.com/~gitbook/embed/script.js"></script>
|
||||||
|
<script>
|
||||||
|
window.GitBook('show');
|
||||||
|
</script>
|
||||||
|
```
|
||||||
|
|
||||||
|
## As a package from NPM
|
||||||
|
|
||||||
|
Install the package: `npm install @gitbook/embed` and import it in your web application:
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
import { createGitBook } from '@gitbook/embed';
|
||||||
|
|
||||||
|
const gitbook = createGitBook({
|
||||||
|
siteURL: 'https://docs.company.com'
|
||||||
|
});
|
||||||
|
|
||||||
|
const iframe = document.createElement('iframe');
|
||||||
|
iframe.src = gitbook.getFrameURL();
|
||||||
|
|
||||||
|
const frame = gitbook.createFrame(iframe);
|
||||||
|
```
|
||||||
|
|
||||||
|
## As React components
|
||||||
|
|
||||||
|
After installing the NPM package, you can import prebuilt React components:
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
import { GitBookProvider, GitBookAssistantFrame } from '@gitbook/embed/react';
|
||||||
|
|
||||||
|
<GitBookProvider siteURL="https://docs.company.com">
|
||||||
|
<GitBookAssistantFrame />
|
||||||
|
</GitBookProvider>
|
||||||
|
```
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
"name": "@gitbook/embed",
|
||||||
|
"description": "Embeddable components for GitBook",
|
||||||
|
"type": "module",
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"types": "./dist/index.d.ts",
|
||||||
|
"default": "./dist/index.js",
|
||||||
|
"standalone": "./dist/standalone/index.js",
|
||||||
|
"react": "./dist/react/index.js"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"version": "0.0.0",
|
||||||
|
"dependencies": {
|
||||||
|
"@gitbook/api": "catalog:",
|
||||||
|
"@gitbook/icons": "workspace:",
|
||||||
|
"bidc": "catalog:"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"react": "^18.0.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"typescript": "^5.5.3",
|
||||||
|
"react": "^19.0.0"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"build": "tsc && bun build src/standalone/index.ts --bundle --minify --outdir=standalone",
|
||||||
|
"typecheck": "tsc --noEmit"
|
||||||
|
},
|
||||||
|
"files": ["dist", "README.md", "CHANGELOG.md", "standalone"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
import { type GitBookFrameClient, createGitBookFrame } from './createGitBookFrame';
|
||||||
|
|
||||||
|
export type CreateGitBookOptions = {
|
||||||
|
/**
|
||||||
|
* URL of the GitBook site to embed.
|
||||||
|
*/
|
||||||
|
siteURL: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type GetFrameURLOptions = {
|
||||||
|
/**
|
||||||
|
* Authentication to use for the frame.
|
||||||
|
*/
|
||||||
|
visitor?: {
|
||||||
|
/**
|
||||||
|
* Signed JWT token for Adaptive Content or Visitor Authentication to use.
|
||||||
|
*/
|
||||||
|
token?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unsigned claims to pass to the frame.
|
||||||
|
* You can use these claims in dynamic expressions using `visitor.claims.unsigned.<claim-name>`.
|
||||||
|
*/
|
||||||
|
unsignedClaims?: Record<string, unknown>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export type GitBookClient = {
|
||||||
|
/**
|
||||||
|
* Get the URL for a GitBook frame.
|
||||||
|
*/
|
||||||
|
getFrameURL: (options: GetFrameURLOptions) => string;
|
||||||
|
/**
|
||||||
|
* Create a new GitBook frame.
|
||||||
|
*/
|
||||||
|
createFrame: (iframe: HTMLIFrameElement) => GitBookFrameClient;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function createGitBook(options: CreateGitBookOptions) {
|
||||||
|
const client: GitBookClient = {
|
||||||
|
getFrameURL: (frameOptions) => {
|
||||||
|
const url = new URL(options.siteURL);
|
||||||
|
url.pathname = `${url.pathname.endsWith('/') ? url.pathname : `${url.pathname}/`}~gitbook/embed/assistant`;
|
||||||
|
|
||||||
|
if (frameOptions.visitor?.token) {
|
||||||
|
url.searchParams.set('token', frameOptions.visitor.token);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (frameOptions.visitor?.unsignedClaims) {
|
||||||
|
Object.entries(frameOptions.visitor.unsignedClaims).forEach(([key, value]) => {
|
||||||
|
url.searchParams.set(`visitor.${key}`, String(value));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return url.toString();
|
||||||
|
},
|
||||||
|
createFrame: (iframe) => createGitBookFrame(iframe),
|
||||||
|
};
|
||||||
|
|
||||||
|
return client;
|
||||||
|
}
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
import { createChannel } from 'bidc';
|
||||||
|
import type {
|
||||||
|
FrameToParentMessage,
|
||||||
|
GitBookPlaceholderSettings,
|
||||||
|
GitBookToolDefinition,
|
||||||
|
ParentToFrameMessage,
|
||||||
|
} from './protocol';
|
||||||
|
|
||||||
|
export type GitBookFrameClient = {
|
||||||
|
/**
|
||||||
|
* Navigate to a page by its path.
|
||||||
|
*/
|
||||||
|
navigateToPage: (path: string) => void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Navigate to the assistant.
|
||||||
|
*/
|
||||||
|
navigateToAssistant: () => void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Post a message to the chat.
|
||||||
|
*/
|
||||||
|
postUserMessage: (message: string) => void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register a custom tool.
|
||||||
|
*/
|
||||||
|
registerTool: (tool: GitBookToolDefinition) => void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clear the chat.
|
||||||
|
*/
|
||||||
|
clearChat: () => void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the placeholder settings.
|
||||||
|
*/
|
||||||
|
setPlaceholder: (placeholder: GitBookPlaceholderSettings) => void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register an event listener.
|
||||||
|
*/
|
||||||
|
on: (event: string, listener: (...args: any[]) => void) => () => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a client to communicate with the GitBook Assistant frame.
|
||||||
|
*/
|
||||||
|
export function createGitBookFrame(iframe: HTMLIFrameElement): GitBookFrameClient {
|
||||||
|
if (!iframe.contentWindow) {
|
||||||
|
throw new Error('Iframe must have a content window');
|
||||||
|
}
|
||||||
|
const channel = createChannel(iframe.contentWindow);
|
||||||
|
|
||||||
|
channel.receive((message: FrameToParentMessage) => {
|
||||||
|
if (message.type === 'close') {
|
||||||
|
const listeners = events.get('close') || [];
|
||||||
|
if (listeners) {
|
||||||
|
listeners.forEach((listener) => listener());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const sendToFrame = (message: ParentToFrameMessage) => {
|
||||||
|
channel.send(message);
|
||||||
|
};
|
||||||
|
|
||||||
|
const events = new Map<string, Array<(...args: any[]) => void>>();
|
||||||
|
|
||||||
|
return {
|
||||||
|
navigateToPage: (pagePath) => {
|
||||||
|
sendToFrame({ type: 'navigateToPage', pagePath });
|
||||||
|
},
|
||||||
|
navigateToAssistant: () => {
|
||||||
|
sendToFrame({ type: 'navigateToAssistant' });
|
||||||
|
},
|
||||||
|
postUserMessage: (message) => sendToFrame({ type: 'postUserMessage', message }),
|
||||||
|
registerTool: (tool) => sendToFrame({ type: 'registerTool', tool }),
|
||||||
|
clearChat: () => sendToFrame({ type: 'clearChat' }),
|
||||||
|
setPlaceholder: (settings) => sendToFrame({ type: 'setPlaceholder', settings }),
|
||||||
|
on: (event, listener) => {
|
||||||
|
const listeners = events.get(event) || [];
|
||||||
|
listeners.push(listener);
|
||||||
|
events.set(event, listeners);
|
||||||
|
return () => {
|
||||||
|
events.set(
|
||||||
|
event,
|
||||||
|
listeners.filter((l) => l !== listener)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
export * from './createGitBook';
|
||||||
|
export * from './createGitBookFrame';
|
||||||
|
export * from './protocol';
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
import type { AIToolCallResult, AIToolDefinition } from '@gitbook/api';
|
||||||
|
import type { IconName } from '@gitbook/icons';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Custom tool definition to be passed to the AI assistant.
|
||||||
|
*/
|
||||||
|
export type GitBookToolDefinition = AIToolDefinition & {
|
||||||
|
/**
|
||||||
|
* Confirmation action to be displayed to the user before executing the tool.
|
||||||
|
*/
|
||||||
|
confirmation?: {
|
||||||
|
icon?: IconName;
|
||||||
|
label: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Callback when the tool is executed.
|
||||||
|
* The input is provided by the AI assistant following the input schema of the tool.
|
||||||
|
*/
|
||||||
|
execute: (input: object) => Promise<Pick<AIToolCallResult, 'output' | 'summary'>>;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Placeholder settings.
|
||||||
|
*/
|
||||||
|
export type GitBookPlaceholderSettings = {
|
||||||
|
/**
|
||||||
|
* Welcome message to be displayed in the placeholder.
|
||||||
|
*/
|
||||||
|
welcomeMessage: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Suggestions to be displayed in the placeholder.
|
||||||
|
*/
|
||||||
|
suggestions: string[];
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Messages sent from the parent to the frame.
|
||||||
|
*/
|
||||||
|
export type ParentToFrameMessage =
|
||||||
|
| {
|
||||||
|
type: 'postUserMessage';
|
||||||
|
message: string;
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
type: 'registerTool';
|
||||||
|
tool: GitBookToolDefinition;
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
type: 'clearChat';
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
type: 'setPlaceholder';
|
||||||
|
settings: GitBookPlaceholderSettings;
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
type: 'navigateToPage';
|
||||||
|
pagePath: string;
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
type: 'navigateToAssistant';
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Messages sent from the frame to the parent.
|
||||||
|
*/
|
||||||
|
export type FrameToParentMessage = {
|
||||||
|
type: 'close';
|
||||||
|
};
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export * from './client';
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import type { GetFrameURLOptions, GitBookFrameClient } from '../client';
|
||||||
|
import { useGitBook } from './GitBookProvider';
|
||||||
|
|
||||||
|
export type GitBookAssistantFrameProps = {
|
||||||
|
title?: string;
|
||||||
|
className?: string;
|
||||||
|
} & GetFrameURLOptions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Render a frame with the GitBook Assistant in it.
|
||||||
|
*/
|
||||||
|
export function GitBookAssistantFrame(props: GitBookAssistantFrameProps) {
|
||||||
|
const { title, className, ...frameOptions } = props;
|
||||||
|
|
||||||
|
const frameRef = React.useRef<HTMLIFrameElement>(null);
|
||||||
|
const gitbookFrameRef = React.useRef<GitBookFrameClient | null>(null);
|
||||||
|
const gitbook = useGitBook();
|
||||||
|
const frameURL = gitbook.getFrameURL(frameOptions);
|
||||||
|
|
||||||
|
React.useEffect(() => {
|
||||||
|
if (frameRef.current) {
|
||||||
|
gitbookFrameRef.current = gitbook.createFrame(frameRef.current);
|
||||||
|
}
|
||||||
|
}, [gitbook]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={className}>
|
||||||
|
<iframe
|
||||||
|
title={title ?? 'GitBook Assistant'}
|
||||||
|
ref={frameRef}
|
||||||
|
src={frameURL}
|
||||||
|
width="100%"
|
||||||
|
height="100%"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import * as React from 'react';
|
||||||
|
import { type CreateGitBookOptions, createGitBook } from '../client';
|
||||||
|
import { GitBookContext } from './context';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provider for the GitBook client.
|
||||||
|
*/
|
||||||
|
export function GitBookProvider(props: React.PropsWithChildren<CreateGitBookOptions>) {
|
||||||
|
const { siteURL, children } = props;
|
||||||
|
|
||||||
|
const options = React.useMemo(
|
||||||
|
() => ({
|
||||||
|
siteURL,
|
||||||
|
}),
|
||||||
|
[siteURL]
|
||||||
|
);
|
||||||
|
|
||||||
|
const client = React.useMemo(() => createGitBook(options), [options]);
|
||||||
|
|
||||||
|
return <GitBookContext.Provider value={client}>{children}</GitBookContext.Provider>;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Hook to access the GitBook client.
|
||||||
|
*/
|
||||||
|
export function useGitBook() {
|
||||||
|
const context = React.useContext(GitBookContext);
|
||||||
|
|
||||||
|
if (!context) {
|
||||||
|
throw new Error('This component must be used within a <GitBookProvider />');
|
||||||
|
}
|
||||||
|
|
||||||
|
return context;
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import * as React from 'react';
|
||||||
|
import type { GitBookClient } from '../client';
|
||||||
|
|
||||||
|
export const GitBookContext = React.createContext<GitBookClient | null>(null);
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export * from './GitBookProvider';
|
||||||
@@ -0,0 +1,158 @@
|
|||||||
|
import './style.css';
|
||||||
|
|
||||||
|
import {
|
||||||
|
type CreateGitBookOptions,
|
||||||
|
type GetFrameURLOptions,
|
||||||
|
type GitBookClient,
|
||||||
|
type GitBookFrameClient,
|
||||||
|
type GitBookPlaceholderSettings,
|
||||||
|
type GitBookToolDefinition,
|
||||||
|
createGitBook,
|
||||||
|
} from '../client';
|
||||||
|
|
||||||
|
export type GitBook = () => void;
|
||||||
|
|
||||||
|
type StandaloneCalls =
|
||||||
|
// Initialize the widget
|
||||||
|
| ['init', CreateGitBookOptions, GetFrameURLOptions]
|
||||||
|
// Unload the widget
|
||||||
|
| ['unload']
|
||||||
|
// Show the widget
|
||||||
|
| ['show']
|
||||||
|
// Hide the widget
|
||||||
|
| ['hide']
|
||||||
|
// Open the window
|
||||||
|
| ['open']
|
||||||
|
// Close the window
|
||||||
|
| ['close']
|
||||||
|
// Toggle the window
|
||||||
|
| ['toggle']
|
||||||
|
// Post a user message
|
||||||
|
| ['postUserMessage', string]
|
||||||
|
// Register a tool
|
||||||
|
| ['registerTool', GitBookToolDefinition]
|
||||||
|
// Clear the chat
|
||||||
|
| ['clearChat']
|
||||||
|
// Configure the placeholder
|
||||||
|
| ['setPlaceholder', GitBookPlaceholderSettings]
|
||||||
|
// Navigate to a page
|
||||||
|
| ['navigateToPage', string]
|
||||||
|
// Navigate to the assistant
|
||||||
|
| ['navigateToAssistant'];
|
||||||
|
|
||||||
|
export type GitBookStandalone = ((...args: StandaloneCalls) => void) & {
|
||||||
|
q?: StandaloneCalls[];
|
||||||
|
};
|
||||||
|
|
||||||
|
const widgetButton = document.createElement('button');
|
||||||
|
widgetButton.id = 'gitbook-widget-button';
|
||||||
|
widgetButton.addEventListener('click', () => {
|
||||||
|
GitBook('toggle');
|
||||||
|
});
|
||||||
|
widgetButton.innerHTML = `
|
||||||
|
<span id="gitbook-widget-button-icon"></span>
|
||||||
|
<span id="gitbook-widget-button-label">Ask</span>
|
||||||
|
`;
|
||||||
|
|
||||||
|
const widgetWindow = document.createElement('div');
|
||||||
|
widgetWindow.id = 'gitbook-widget-window';
|
||||||
|
widgetWindow.classList.add('hidden');
|
||||||
|
|
||||||
|
document.body.appendChild(widgetButton);
|
||||||
|
document.body.appendChild(widgetWindow);
|
||||||
|
|
||||||
|
let widgetIframe: HTMLIFrameElement | undefined;
|
||||||
|
let _client: GitBookClient | undefined;
|
||||||
|
let _frame: GitBookFrameClient | undefined;
|
||||||
|
let frameOptions: GetFrameURLOptions | undefined;
|
||||||
|
|
||||||
|
function getClient() {
|
||||||
|
if (!_client) {
|
||||||
|
throw new Error(
|
||||||
|
'GitBook client not initialized. Call GitBook("init", { siteURL: "..." }) first.'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return _client;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getIframe() {
|
||||||
|
if (!widgetIframe || !_frame) {
|
||||||
|
const client = getClient();
|
||||||
|
|
||||||
|
widgetIframe?.remove();
|
||||||
|
widgetIframe = document.createElement('iframe');
|
||||||
|
widgetIframe.id = 'gitbook-widget-iframe';
|
||||||
|
widgetIframe.src = client.getFrameURL({
|
||||||
|
...frameOptions,
|
||||||
|
});
|
||||||
|
widgetWindow.appendChild(widgetIframe);
|
||||||
|
|
||||||
|
_frame = client.createFrame(widgetIframe);
|
||||||
|
}
|
||||||
|
return { iframe: widgetIframe, frame: _frame };
|
||||||
|
}
|
||||||
|
|
||||||
|
const GitBook = (...args: StandaloneCalls) => {
|
||||||
|
switch (args[0]) {
|
||||||
|
case 'init':
|
||||||
|
if (_client) {
|
||||||
|
throw new Error(
|
||||||
|
'GitBook client already initialized. Call GitBook("unload") first.'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
_client = createGitBook(args[1]);
|
||||||
|
frameOptions = args[2];
|
||||||
|
break;
|
||||||
|
case 'unload':
|
||||||
|
_client = undefined;
|
||||||
|
_frame = undefined;
|
||||||
|
widgetIframe?.remove();
|
||||||
|
widgetWindow.classList.add('hidden');
|
||||||
|
break;
|
||||||
|
case 'show':
|
||||||
|
widgetButton.classList.remove('hidden');
|
||||||
|
break;
|
||||||
|
case 'hide':
|
||||||
|
widgetButton.classList.add('hidden');
|
||||||
|
break;
|
||||||
|
case 'open':
|
||||||
|
widgetWindow.classList.remove('hidden');
|
||||||
|
widgetButton.classList.add('open');
|
||||||
|
getIframe();
|
||||||
|
break;
|
||||||
|
case 'toggle':
|
||||||
|
widgetWindow.classList.toggle('hidden');
|
||||||
|
widgetButton.classList.toggle('open');
|
||||||
|
getIframe();
|
||||||
|
break;
|
||||||
|
case 'close':
|
||||||
|
widgetWindow.classList.add('hidden');
|
||||||
|
widgetButton.classList.remove('open');
|
||||||
|
break;
|
||||||
|
case 'postUserMessage':
|
||||||
|
getIframe().frame.postUserMessage(args[1]);
|
||||||
|
break;
|
||||||
|
case 'registerTool':
|
||||||
|
getIframe().frame.registerTool(args[1]);
|
||||||
|
break;
|
||||||
|
case 'clearChat':
|
||||||
|
getIframe().frame.clearChat();
|
||||||
|
break;
|
||||||
|
case 'setPlaceholder':
|
||||||
|
getIframe().frame.setPlaceholder(args[1]);
|
||||||
|
break;
|
||||||
|
case 'navigateToPage':
|
||||||
|
getIframe().frame.navigateToPage(args[1]);
|
||||||
|
break;
|
||||||
|
case 'navigateToAssistant':
|
||||||
|
getIframe().frame.navigateToAssistant();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// @ts-expect-error - GitBook is not defined in the global scope
|
||||||
|
const precalls = (window.GitBook as GitBookStandalone | undefined)?.q ?? [];
|
||||||
|
|
||||||
|
// @ts-expect-error - GitBook is not defined in the global scope
|
||||||
|
window.GitBook = GitBook;
|
||||||
|
precalls.forEach((call) => GitBook(...call));
|
||||||
@@ -0,0 +1,170 @@
|
|||||||
|
:root {
|
||||||
|
--gitbook-widget-top: 1rem;
|
||||||
|
--gitbook-widget-bottom: 1rem;
|
||||||
|
--gitbook-widget-right: 1rem;
|
||||||
|
|
||||||
|
--gitbook-widget-button-height: 46px;
|
||||||
|
|
||||||
|
--gitbook-widget-radius: .5rem;
|
||||||
|
--gitbook-widget-text-size: 1rem;
|
||||||
|
--gitbook-widget-text-color: #656973;
|
||||||
|
--gitbook-widget-border-color: #e5e5e5;
|
||||||
|
|
||||||
|
--gitbook-widget-background-translucent: rgba(255, 255, 255, 0.9);
|
||||||
|
--gitbook-widget-background-translucent-hover: rgba(250, 250, 250, 0.9);
|
||||||
|
--gitbook-widget-background-solid: #FFFFFF;
|
||||||
|
--gitbook-widget-background-solid-hover: #FBFBFB;
|
||||||
|
|
||||||
|
--gitbook-widget-icon-size: 1.25rem;
|
||||||
|
|
||||||
|
--gitbook-widget-window-width: 28rem; /* 448px */
|
||||||
|
--gitbook-widget-window-height: 40rem; /* 640px */
|
||||||
|
--gitbook-widget-window-spacing: .5rem; /* Spacing between the button and the window */
|
||||||
|
--gitbook-widget-window-bottom: calc(var(--gitbook-widget-bottom) + var(--gitbook-widget-button-height) + var(--gitbook-widget-window-spacing));
|
||||||
|
|
||||||
|
--gitbook-widget-transition-duration-fast: 0.2s;
|
||||||
|
--gitbook-widget-transition-duration-slow: 0.5s;
|
||||||
|
--gitbook-widget-easing: cubic-bezier(0.25, 1, 0.5, 1);
|
||||||
|
--gitbook-widget-easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Button */
|
||||||
|
#gitbook-widget-button {
|
||||||
|
position: fixed;
|
||||||
|
bottom: var(--gitbook-widget-bottom);
|
||||||
|
right: var(--gitbook-widget-right);
|
||||||
|
height: var(--gitbook-widget-button-height);
|
||||||
|
z-index: 9999;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
gap: .5rem;
|
||||||
|
padding: .75rem 1rem;
|
||||||
|
|
||||||
|
border-radius: 100px;
|
||||||
|
border: 1px solid var(--gitbook-widget-border-color);
|
||||||
|
background-color: var(--gitbook-widget-background-translucent);
|
||||||
|
backdrop-filter: blur(16px);
|
||||||
|
|
||||||
|
font-size: var(--gitbook-widget-text-size);
|
||||||
|
color: var(--gitbook-widget-text-color);
|
||||||
|
|
||||||
|
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.05), 0 1px 2px -1px rgba(0,0,0,0.05);
|
||||||
|
transition: all var(--gitbook-widget-transition-duration-fast) var(--gitbook-widget-easing);
|
||||||
|
|
||||||
|
cursor:pointer;
|
||||||
|
animation: gitbook-widget-present var(--gitbook-widget-transition-duration-slow) var(--gitbook-widget-easing-bounce);
|
||||||
|
}
|
||||||
|
|
||||||
|
#gitbook-widget-button:hover, #gitbook-widget-button:focus-visible {
|
||||||
|
background-color: var(--gitbook-widget-background-translucent-hover);
|
||||||
|
}
|
||||||
|
#gitbook-widget-button:hover, #gitbook-widget-button:focus-visible {
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
|
||||||
|
}
|
||||||
|
#gitbook-widget-button:active {
|
||||||
|
transform: translateY(0);
|
||||||
|
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.05), 0 1px 2px -1px rgba(0,0,0,0.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-contrast: more) {
|
||||||
|
#gitbook-widget-button {
|
||||||
|
background-color: var(--gitbook-widget-background-solid);
|
||||||
|
}
|
||||||
|
#gitbook-widget-button:hover, #gitbook-widget-button:focus-visible {
|
||||||
|
background-color: var(--gitbook-widget-background-solid-hover);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#gitbook-widget-button.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#gitbook-widget-button.open {
|
||||||
|
padding: .75rem;
|
||||||
|
gap: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Button: Icon */
|
||||||
|
#gitbook-widget-button-icon {
|
||||||
|
width: var(--gitbook-widget-icon-size);
|
||||||
|
height: var(--gitbook-widget-icon-size);
|
||||||
|
mask-image: url("https://static-2v.gitbook.com/~gitbook/static/icons/svgs/custom-icons/gitbook-assistant.svg?v=2");
|
||||||
|
mask-size: contain;
|
||||||
|
mask-repeat: no-repeat;
|
||||||
|
mask-position: center;
|
||||||
|
background-color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
#gitbook-widget-button.open #gitbook-widget-button-icon {
|
||||||
|
mask-image: url('https://ka-p.fontawesome.com/releases/v6.6.0/svgs/regular/close.svg?v=2&token=a463935e93');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Button: Label */
|
||||||
|
#gitbook-widget-button.open #gitbook-widget-button-label {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Window */
|
||||||
|
#gitbook-widget-window {
|
||||||
|
position: fixed;
|
||||||
|
bottom: var(--gitbook-widget-window-bottom);
|
||||||
|
right: var(--gitbook-widget-right);
|
||||||
|
z-index: 9998;
|
||||||
|
width: var(--gitbook-widget-window-width);
|
||||||
|
height: calc(min(var(--gitbook-widget-window-height), calc(100vh - var(--gitbook-widget-window-bottom) - var(--gitbook-widget-top))));
|
||||||
|
background-color: var(--gitbook-widget-background-solid);
|
||||||
|
border: 1px solid var(--gitbook-widget-border-color);
|
||||||
|
border-radius: var(--gitbook-widget-radius);
|
||||||
|
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
||||||
|
overflow: hidden;
|
||||||
|
transition-property: transform, opacity, display;
|
||||||
|
transition-duration: var(--gitbook-widget-transition-duration-slow);
|
||||||
|
transition-timing-function: var(--gitbook-widget-easing-bounce);
|
||||||
|
transform-origin: bottom right;
|
||||||
|
transition-behavior: allow-discrete;
|
||||||
|
}
|
||||||
|
|
||||||
|
@starting-style {
|
||||||
|
#gitbook-widget-window {
|
||||||
|
opacity: 0;
|
||||||
|
transform: scale(0.9);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body:has(#gitbook-widget-button.hidden) #gitbook-widget-window {
|
||||||
|
bottom: var(--gitbook-widget-bottom);
|
||||||
|
}
|
||||||
|
|
||||||
|
#gitbook-widget-window.hidden {
|
||||||
|
transition-property: transform, opacity, display;
|
||||||
|
transition-duration: var(--gitbook-widget-transition-duration-fast);
|
||||||
|
transition-timing-function: var(--gitbook-widget-easing);
|
||||||
|
transition-behavior: allow-discrete;
|
||||||
|
display: none;
|
||||||
|
opacity: 0;
|
||||||
|
transform: scale(0.9);
|
||||||
|
}
|
||||||
|
|
||||||
|
#gitbook-widget-iframe {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes gitbook-widget-present {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: scale(0.9);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "esnext",
|
||||||
|
"lib": ["dom", "dom.iterable", "esnext"],
|
||||||
|
"allowJs": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
|
"strict": true,
|
||||||
|
"noEmit": false,
|
||||||
|
"declaration": true,
|
||||||
|
"outDir": "dist",
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"module": "esnext",
|
||||||
|
"moduleResolution": "bundler",
|
||||||
|
"resolveJsonModule": true,
|
||||||
|
"isolatedModules": true,
|
||||||
|
"jsx": "react-jsx",
|
||||||
|
"incremental": true,
|
||||||
|
"types": []
|
||||||
|
},
|
||||||
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
||||||
|
"exclude": ["node_modules"]
|
||||||
|
}
|
||||||
@@ -54,9 +54,9 @@ const searchTestCases: Test[] = [
|
|||||||
await searchInput.fill('gitbook');
|
await searchInput.fill('gitbook');
|
||||||
await expect(page.getByTestId('search-results')).toBeVisible();
|
await expect(page.getByTestId('search-results')).toBeVisible();
|
||||||
const pageResults = await page.getByTestId('search-page-result').all();
|
const pageResults = await page.getByTestId('search-page-result').all();
|
||||||
await expect(pageResults.length).toBeGreaterThan(2);
|
await expect(pageResults.length).toBeGreaterThanOrEqual(1);
|
||||||
const pageSectionResults = await page.getByTestId('search-page-section-result').all();
|
const pageSectionResults = await page.getByTestId('search-page-section-result').all();
|
||||||
await expect(pageSectionResults.length).toBeGreaterThan(2);
|
await expect(pageSectionResults.length).toBeGreaterThanOrEqual(2);
|
||||||
await expect(page.getByTestId('search-ask-question')).toHaveCount(0); // No AI search results with aiMode=None.
|
await expect(page.getByTestId('search-ask-question')).toHaveCount(0); // No AI search results with aiMode=None.
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
"memoizee": "^0.4.17",
|
"memoizee": "^0.4.17",
|
||||||
"micromark-extension-frontmatter": "^2.0.0",
|
"micromark-extension-frontmatter": "^2.0.0",
|
||||||
"micromark-extension-gfm": "^3.0.0",
|
"micromark-extension-gfm": "^3.0.0",
|
||||||
"next": "^15.3.2",
|
"next": "^15.5.0",
|
||||||
"next-themes": "^0.2.1",
|
"next-themes": "^0.2.1",
|
||||||
"nuqs": "^2.2.3",
|
"nuqs": "^2.2.3",
|
||||||
"object-hash": "^3.0.0",
|
"object-hash": "^3.0.0",
|
||||||
@@ -70,7 +70,8 @@
|
|||||||
"url-join": "^5.0.0",
|
"url-join": "^5.0.0",
|
||||||
"usehooks-ts": "^3.1.0",
|
"usehooks-ts": "^3.1.0",
|
||||||
"warn-once": "^0.1.1",
|
"warn-once": "^0.1.1",
|
||||||
"zustand": "^5.0.3"
|
"zustand": "^5.0.3",
|
||||||
|
"bidc": "catalog:"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@argos-ci/playwright": "^5.0.9",
|
"@argos-ci/playwright": "^5.0.9",
|
||||||
@@ -99,8 +100,7 @@
|
|||||||
"vercel": "^39.3.0"
|
"vercel": "^39.3.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"generate": "gitbook-icons ./public/~gitbook/static/icons custom-icons && gitbook-math ./public/~gitbook/static/math && wrangler types",
|
"generate": "./scripts/generate.sh",
|
||||||
"copy:icons": "gitbook-icons ./public/~gitbook/static/icons",
|
|
||||||
"clean": "rm -rf ./.next && rm -rf ./public/~gitbook/static/icons && rm -rf ./public/~gitbook/static/math",
|
"clean": "rm -rf ./.next && rm -rf ./public/~gitbook/static/icons && rm -rf ./public/~gitbook/static/math",
|
||||||
"dev": "env-cmd --silent -f ../../.env.local next",
|
"dev": "env-cmd --silent -f ../../.env.local next",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
@@ -109,8 +109,8 @@
|
|||||||
"dev:cloudflare": "wrangler dev --port 8771 --env preview",
|
"dev:cloudflare": "wrangler dev --port 8771 --env preview",
|
||||||
"dev:cf:middleware": "wrangler dev --port 8771 --inspector-port 9230 --env dev --config ./openNext/customWorkers/middlewareWrangler.jsonc",
|
"dev:cf:middleware": "wrangler dev --port 8771 --inspector-port 9230 --env dev --config ./openNext/customWorkers/middlewareWrangler.jsonc",
|
||||||
"dev:cf:server": "wrangler dev --port 8772 --env dev --config ./openNext/customWorkers/defaultWrangler.jsonc",
|
"dev:cf:server": "wrangler dev --port 8772 --env dev --config ./openNext/customWorkers/defaultWrangler.jsonc",
|
||||||
"e2e": "playwright test e2e/internal.spec.ts e2e/pdf.spec.ts",
|
"e2e": "playwright test e2e/internal.spec.ts e2e/pdf.spec.ts --project=chromium",
|
||||||
"e2e-customers": "playwright test e2e/customers.spec.ts",
|
"e2e-customers": "playwright test e2e/customers.spec.ts --project=chromium",
|
||||||
"unit": "bun test {src,packages} --preload ./tests/preload-bun.ts",
|
"unit": "bun test {src,packages} --preload ./tests/preload-bun.ts",
|
||||||
"typecheck": "tsc --noEmit"
|
"typecheck": "tsc --noEmit"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -10,9 +10,15 @@ export default defineConfig({
|
|||||||
['@argos-ci/playwright/reporter', { uploadToArgos: !!process.env.CI }],
|
['@argos-ci/playwright/reporter', { uploadToArgos: !!process.env.CI }],
|
||||||
],
|
],
|
||||||
projects: [
|
projects: [
|
||||||
|
// To speed up CI, we only test on Chrome.
|
||||||
|
// https://github.com/microsoft/playwright/issues/14434
|
||||||
|
// https://playwright.dev/docs/browsers#google-chrome--microsoft-edge
|
||||||
{
|
{
|
||||||
name: 'chromium',
|
name: 'chromium',
|
||||||
use: { ...devices['Desktop Chrome'] },
|
use: {
|
||||||
|
...devices['Desktop Chrome'],
|
||||||
|
channel: 'chrome',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
use: {
|
use: {
|
||||||
|
|||||||
Executable
+9
@@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -o errexit
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
rm -rf ./.next
|
||||||
|
rm -rf ./public/~gitbook/static/icons
|
||||||
|
rm -rf ./public/~gitbook/static/math
|
||||||
|
rm -rf ./public/~gitbook/static/embed
|
||||||
Executable
+12
@@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -o errexit
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
# Copy the assets
|
||||||
|
gitbook-icons ./public/~gitbook/static/icons custom-icons
|
||||||
|
gitbook-math ./public/~gitbook/static/math
|
||||||
|
cp -r ../embed/standalone/ ./public/~gitbook/static/embed
|
||||||
|
|
||||||
|
# Generate the types
|
||||||
|
wrangler types
|
||||||
+16
@@ -0,0 +1,16 @@
|
|||||||
|
import type { RouteLayoutParams } from '@/app/utils';
|
||||||
|
import { EmbeddableAssistantPage } from '@/components/Embeddable';
|
||||||
|
import { getEmbeddableDynamicContext } from '@/lib/embeddable';
|
||||||
|
|
||||||
|
export const dynamic = 'force-static';
|
||||||
|
|
||||||
|
type PageProps = {
|
||||||
|
params: Promise<RouteLayoutParams>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default async function Page(props: PageProps) {
|
||||||
|
const params = await props.params;
|
||||||
|
const { context } = await getEmbeddableDynamicContext(params);
|
||||||
|
|
||||||
|
return <EmbeddableAssistantPage context={context} />;
|
||||||
|
}
|
||||||
+30
@@ -0,0 +1,30 @@
|
|||||||
|
import type { RouteLayoutParams } from '@/app/utils';
|
||||||
|
import {
|
||||||
|
EmbeddableRootLayout,
|
||||||
|
generateEmbeddableMetadata,
|
||||||
|
generateEmbeddableViewport,
|
||||||
|
} from '@/components/Embeddable';
|
||||||
|
import { getEmbeddableStaticContext } from '@/lib/embeddable';
|
||||||
|
|
||||||
|
interface SiteStaticLayoutProps {
|
||||||
|
params: Promise<RouteLayoutParams>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default async function RootLayout({
|
||||||
|
params,
|
||||||
|
children,
|
||||||
|
}: React.PropsWithChildren<SiteStaticLayoutProps>) {
|
||||||
|
const { context } = await getEmbeddableStaticContext(await params);
|
||||||
|
|
||||||
|
return <EmbeddableRootLayout context={context}>{children}</EmbeddableRootLayout>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function generateViewport({ params }: SiteStaticLayoutProps) {
|
||||||
|
const { context } = await getEmbeddableStaticContext(await params);
|
||||||
|
return generateEmbeddableViewport({ context });
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function generateMetadata({ params }: SiteStaticLayoutProps) {
|
||||||
|
const { context } = await getEmbeddableStaticContext(await params);
|
||||||
|
return generateEmbeddableMetadata({ context });
|
||||||
|
}
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
import { type RouteParams, getPagePathFromParams } from '@/app/utils';
|
||||||
|
import { EmbeddableDocsPage, generateEmbeddableDocsPageMetadata } from '@/components/Embeddable';
|
||||||
|
import { getEmbeddableDynamicContext } from '@/lib/embeddable';
|
||||||
|
import type { Metadata } from 'next';
|
||||||
|
|
||||||
|
type PageProps = {
|
||||||
|
params: Promise<RouteParams>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default async function Page(props: PageProps) {
|
||||||
|
const params = await props.params;
|
||||||
|
const { context } = await getEmbeddableDynamicContext(params);
|
||||||
|
const pathname = getPagePathFromParams(params);
|
||||||
|
|
||||||
|
return <EmbeddableDocsPage context={context} pageParams={{ pathname }} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function generateMetadata(props: PageProps): Promise<Metadata> {
|
||||||
|
const params = await props.params;
|
||||||
|
const { context } = await getEmbeddableDynamicContext(params);
|
||||||
|
const pathname = getPagePathFromParams(params);
|
||||||
|
return generateEmbeddableDocsPageMetadata({ context, pageParams: { pathname } });
|
||||||
|
}
|
||||||
+31
@@ -0,0 +1,31 @@
|
|||||||
|
import { type RouteLayoutParams, getStaticSiteContext } from '@/app/utils';
|
||||||
|
import type { NextRequest } from 'next/server';
|
||||||
|
|
||||||
|
export const dynamic = 'force-static';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This route serves a quick demo to test the script.js script.
|
||||||
|
* It is not used in production.
|
||||||
|
*/
|
||||||
|
export async function GET(
|
||||||
|
_request: NextRequest,
|
||||||
|
{ params }: { params: Promise<RouteLayoutParams> }
|
||||||
|
) {
|
||||||
|
const { context } = await getStaticSiteContext(await params);
|
||||||
|
|
||||||
|
return new Response(
|
||||||
|
`
|
||||||
|
<html>
|
||||||
|
<head></head>
|
||||||
|
<body></body>
|
||||||
|
<script src="${context.linker.toAbsoluteURL(context.linker.toPathInSite('~gitbook/embed/script.js'))}"></script>
|
||||||
|
</html>
|
||||||
|
`,
|
||||||
|
{
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'text/html',
|
||||||
|
'Cache-Control': 'no-cache, no-store, must-revalidate',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
+16
@@ -0,0 +1,16 @@
|
|||||||
|
import type { RouteLayoutParams } from '@/app/utils';
|
||||||
|
import { EmbeddableAssistantPage } from '@/components/Embeddable';
|
||||||
|
import { getEmbeddableStaticContext } from '@/lib/embeddable';
|
||||||
|
|
||||||
|
export const dynamic = 'force-static';
|
||||||
|
|
||||||
|
type PageProps = {
|
||||||
|
params: Promise<RouteLayoutParams>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default async function Page(props: PageProps) {
|
||||||
|
const params = await props.params;
|
||||||
|
const { context } = await getEmbeddableStaticContext(params);
|
||||||
|
|
||||||
|
return <EmbeddableAssistantPage context={context} />;
|
||||||
|
}
|
||||||
+30
@@ -0,0 +1,30 @@
|
|||||||
|
import type { RouteLayoutParams } from '@/app/utils';
|
||||||
|
import {
|
||||||
|
EmbeddableRootLayout,
|
||||||
|
generateEmbeddableMetadata,
|
||||||
|
generateEmbeddableViewport,
|
||||||
|
} from '@/components/Embeddable';
|
||||||
|
import { getEmbeddableStaticContext } from '@/lib/embeddable';
|
||||||
|
|
||||||
|
interface SiteStaticLayoutProps {
|
||||||
|
params: Promise<RouteLayoutParams>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default async function RootLayout({
|
||||||
|
params,
|
||||||
|
children,
|
||||||
|
}: React.PropsWithChildren<SiteStaticLayoutProps>) {
|
||||||
|
const { context } = await getEmbeddableStaticContext(await params);
|
||||||
|
|
||||||
|
return <EmbeddableRootLayout context={context}>{children}</EmbeddableRootLayout>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function generateViewport({ params }: SiteStaticLayoutProps) {
|
||||||
|
const { context } = await getEmbeddableStaticContext(await params);
|
||||||
|
return generateEmbeddableViewport({ context });
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function generateMetadata({ params }: SiteStaticLayoutProps) {
|
||||||
|
const { context } = await getEmbeddableStaticContext(await params);
|
||||||
|
return generateEmbeddableMetadata({ context });
|
||||||
|
}
|
||||||
+25
@@ -0,0 +1,25 @@
|
|||||||
|
import { type RouteParams, getPagePathFromParams } from '@/app/utils';
|
||||||
|
import { EmbeddableDocsPage, generateEmbeddableDocsPageMetadata } from '@/components/Embeddable';
|
||||||
|
import { getEmbeddableStaticContext } from '@/lib/embeddable';
|
||||||
|
import type { Metadata } from 'next';
|
||||||
|
|
||||||
|
export const dynamic = 'force-static';
|
||||||
|
|
||||||
|
type PageProps = {
|
||||||
|
params: Promise<RouteParams>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default async function Page(props: PageProps) {
|
||||||
|
const params = await props.params;
|
||||||
|
const { context } = await getEmbeddableStaticContext(params);
|
||||||
|
const pathname = getPagePathFromParams(params);
|
||||||
|
|
||||||
|
return <EmbeddableDocsPage context={context} pageParams={{ pathname }} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function generateMetadata(props: PageProps): Promise<Metadata> {
|
||||||
|
const params = await props.params;
|
||||||
|
const { context } = await getEmbeddableStaticContext(params);
|
||||||
|
const pathname = getPagePathFromParams(params);
|
||||||
|
return generateEmbeddableDocsPageMetadata({ context, pageParams: { pathname } });
|
||||||
|
}
|
||||||
+77
@@ -0,0 +1,77 @@
|
|||||||
|
import type { RouteLayoutParams } from '@/app/utils';
|
||||||
|
import { getAssetURL } from '@/lib/assets';
|
||||||
|
import { getEmbeddableStaticContext } from '@/lib/embeddable';
|
||||||
|
import type { CreateGitBookOptions } from '@gitbook/embed';
|
||||||
|
import type { NextRequest } from 'next/server';
|
||||||
|
|
||||||
|
export const dynamic = 'force-static';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This route is used to serve the assistant.js script.
|
||||||
|
*/
|
||||||
|
export async function GET(
|
||||||
|
_request: NextRequest,
|
||||||
|
{ params }: { params: Promise<RouteLayoutParams> }
|
||||||
|
) {
|
||||||
|
const { context } = await getEmbeddableStaticContext(await params);
|
||||||
|
const maxAge = 7 * 24 * 60 * 60;
|
||||||
|
const initOptions: CreateGitBookOptions = {
|
||||||
|
siteURL: context.linker.toAbsoluteURL(context.linker.toPathInSite('')),
|
||||||
|
};
|
||||||
|
|
||||||
|
return new Response(
|
||||||
|
`
|
||||||
|
(function () {
|
||||||
|
const w = window;
|
||||||
|
const gb = w.GitBook;
|
||||||
|
const initOptions = window.gitbookSettings || ${JSON.stringify(initOptions)};
|
||||||
|
|
||||||
|
if (typeof gb === "function") {
|
||||||
|
gb('init', initOptions);
|
||||||
|
} else {
|
||||||
|
var d = document;
|
||||||
|
|
||||||
|
var g = function () {
|
||||||
|
g.c(arguments);
|
||||||
|
};
|
||||||
|
g.q = [];
|
||||||
|
g.c = function (args) {
|
||||||
|
g.q.push(args);
|
||||||
|
};
|
||||||
|
w.GitBook = g;
|
||||||
|
|
||||||
|
g('init', initOptions);
|
||||||
|
|
||||||
|
const load = function () {
|
||||||
|
const style = document.createElement('link');
|
||||||
|
style.rel = 'stylesheet';
|
||||||
|
style.href = ${JSON.stringify(getAssetURL('embed/index.css'))};
|
||||||
|
document.head.appendChild(style);
|
||||||
|
|
||||||
|
const script = d.createElement('script');
|
||||||
|
script.type = 'text/javascript';
|
||||||
|
script.async = true;
|
||||||
|
script.src = ${JSON.stringify(getAssetURL('embed/index.js'))};
|
||||||
|
|
||||||
|
var latestScript = d.getElementsByTagName('script')[0];
|
||||||
|
latestScript.parentNode.insertBefore(script, latestScript);
|
||||||
|
};
|
||||||
|
|
||||||
|
if (document.readyState === 'complete') {
|
||||||
|
load();
|
||||||
|
} else if (w.attachEvent) {
|
||||||
|
w.attachEvent('onload', load);
|
||||||
|
} else {
|
||||||
|
w.addEventListener('load', load, false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
`,
|
||||||
|
{
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/javascript',
|
||||||
|
'Cache-Control': `public, max-age=${maxAge}, immutable`,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -14,7 +14,7 @@ export function AIMessageView(
|
|||||||
context: GitBookSiteContext;
|
context: GitBookSiteContext;
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
const { message, context, renderToolCalls = true } = props;
|
const { message, context, withToolCalls = true, withLinkPreviews = true } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
@@ -33,12 +33,12 @@ export function AIMessageView(
|
|||||||
mode: 'default',
|
mode: 'default',
|
||||||
contentContext: context,
|
contentContext: context,
|
||||||
wrapBlocksInSuspense: false,
|
wrapBlocksInSuspense: false,
|
||||||
shouldRenderLinkPreviews: true,
|
withLinkPreviews,
|
||||||
}}
|
}}
|
||||||
style="mt-2 space-y-4 empty:hidden"
|
style="mt-2 space-y-4 empty:hidden"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{renderToolCalls && step.toolCalls && step.toolCalls.length > 0 ? (
|
{withToolCalls && step.toolCalls && step.toolCalls.length > 0 ? (
|
||||||
<AIToolCallsSummary toolCalls={step.toolCalls} context={context} />
|
<AIToolCallsSummary toolCalls={step.toolCalls} context={context} />
|
||||||
) : null}
|
) : null}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
'use server';
|
'use server';
|
||||||
|
import { getEmbeddableLinker } from '@/lib/embeddable';
|
||||||
import { getSiteURLDataFromMiddleware } from '@/lib/middleware';
|
import { getSiteURLDataFromMiddleware } from '@/lib/middleware';
|
||||||
import { getServerActionBaseContext } from '@/lib/server-actions';
|
import { getServerActionBaseContext } from '@/lib/server-actions';
|
||||||
import { traceErrorOnly } from '@/lib/tracing';
|
import { traceErrorOnly } from '@/lib/tracing';
|
||||||
@@ -31,7 +32,11 @@ export async function* streamAIChatResponse({
|
|||||||
options?: RenderAIMessageOptions;
|
options?: RenderAIMessageOptions;
|
||||||
}) {
|
}) {
|
||||||
const { stream } = await traceErrorOnly('AI.streamAIChatResponse', async () => {
|
const { stream } = await traceErrorOnly('AI.streamAIChatResponse', async () => {
|
||||||
const context = await getServerActionBaseContext();
|
let context = await getServerActionBaseContext();
|
||||||
|
if (options?.asEmbeddable) {
|
||||||
|
context = { ...context, linker: getEmbeddableLinker(context.linker) };
|
||||||
|
}
|
||||||
|
|
||||||
const siteURLData = await getSiteURLDataFromMiddleware();
|
const siteURLData = await getSiteURLDataFromMiddleware();
|
||||||
|
|
||||||
const api = await context.dataFetcher.api();
|
const api = await context.dataFetcher.api();
|
||||||
|
|||||||
@@ -1,3 +1,2 @@
|
|||||||
export * from './types';
|
export * from './types';
|
||||||
export * from './responses';
|
|
||||||
export * from './chat';
|
export * from './chat';
|
||||||
|
|||||||
@@ -1,34 +0,0 @@
|
|||||||
'use server';
|
|
||||||
import { getSiteURLDataFromMiddleware } from '@/lib/middleware';
|
|
||||||
import { getServerActionBaseContext } from '@/lib/server-actions';
|
|
||||||
import { traceErrorOnly } from '@/lib/tracing';
|
|
||||||
import { streamRenderAIMessage } from './api';
|
|
||||||
import type { RenderAIMessageOptions } from './types';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Stream an existing AI responses.
|
|
||||||
*/
|
|
||||||
export async function* streamAIResponseById({
|
|
||||||
responseId,
|
|
||||||
options,
|
|
||||||
}: {
|
|
||||||
responseId: string;
|
|
||||||
options?: RenderAIMessageOptions;
|
|
||||||
}) {
|
|
||||||
const { stream } = await traceErrorOnly('AI.streamAIResponseById', async () => {
|
|
||||||
const context = await getServerActionBaseContext();
|
|
||||||
const siteURLData = await getSiteURLDataFromMiddleware();
|
|
||||||
|
|
||||||
const api = await context.dataFetcher.api();
|
|
||||||
const rawStream = api.orgs.streamExistingAiResponseInSite(
|
|
||||||
siteURLData.organization,
|
|
||||||
siteURLData.site,
|
|
||||||
responseId
|
|
||||||
);
|
|
||||||
return await streamRenderAIMessage(context, rawStream, options);
|
|
||||||
});
|
|
||||||
|
|
||||||
for await (const output of stream) {
|
|
||||||
yield output;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -16,5 +16,17 @@ export type RenderAIMessageOptions = {
|
|||||||
* Render the tool calls.
|
* Render the tool calls.
|
||||||
* @default true
|
* @default true
|
||||||
*/
|
*/
|
||||||
renderToolCalls?: boolean;
|
withToolCalls?: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Render the link previews.
|
||||||
|
* @default true
|
||||||
|
*/
|
||||||
|
withLinkPreviews?: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generate links in the context of an embeddable view.
|
||||||
|
* @default false
|
||||||
|
*/
|
||||||
|
asEmbeddable?: boolean;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ export function useAI(): AIContext {
|
|||||||
if (config.aiMode === CustomizationAIMode.Assistant) {
|
if (config.aiMode === CustomizationAIMode.Assistant) {
|
||||||
assistants.push({
|
assistants.push({
|
||||||
id: 'gitbook-assistant',
|
id: 'gitbook-assistant',
|
||||||
label: getAIChatName(config.trademark),
|
label: getAIChatName(language, config.trademark),
|
||||||
icon: (
|
icon: (
|
||||||
<AIChatIcon
|
<AIChatIcon
|
||||||
state={chat.loading ? 'thinking' : 'default'}
|
state={chat.loading ? 'thinking' : 'default'}
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ import * as React from 'react';
|
|||||||
import { useTrackEvent } from '../Insights';
|
import { useTrackEvent } from '../Insights';
|
||||||
import { integrationsAssistantTools } from '../Integrations';
|
import { integrationsAssistantTools } from '../Integrations';
|
||||||
import { useSearch } from '../Search';
|
import { useSearch } from '../Search';
|
||||||
import { streamAIChatResponse } from './server-actions';
|
import { type RenderAIMessageOptions, streamAIChatResponse } from './server-actions';
|
||||||
import { useAIMessageContextRef } from './useAIMessageContext';
|
import { useAIMessageContextRef } from './useAIMessageContext';
|
||||||
|
|
||||||
export type AIChatMessage = {
|
export type AIChatMessage = {
|
||||||
@@ -98,6 +98,8 @@ export type AIChatController = {
|
|||||||
clear: () => void;
|
clear: () => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const AIChatControllerContext = React.createContext<AIChatController | null>(null);
|
||||||
|
|
||||||
// Global state store for AI chat
|
// Global state store for AI chat
|
||||||
const globalState = zustand.create<AIChatState>(() => {
|
const globalState = zustand.create<AIChatState>(() => {
|
||||||
return {
|
return {
|
||||||
@@ -122,10 +124,14 @@ export function useAIChatState(): AIChatState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the controller to interact with the AI chat.
|
* Provide the controller to interact with the AI chat.
|
||||||
* Integrates with search state to synchronize ?ask= parameter.
|
|
||||||
*/
|
*/
|
||||||
export function useAIChatController(): AIChatController {
|
export function AIChatProvider(props: {
|
||||||
|
renderMessageOptions?: RenderAIMessageOptions;
|
||||||
|
children: React.ReactNode;
|
||||||
|
}) {
|
||||||
|
const { renderMessageOptions, children } = props;
|
||||||
|
|
||||||
const messageContextRef = useAIMessageContextRef();
|
const messageContextRef = useAIMessageContextRef();
|
||||||
const trackEvent = useTrackEvent();
|
const trackEvent = useTrackEvent();
|
||||||
const [, setSearchState] = useSearch();
|
const [, setSearchState] = useSearch();
|
||||||
@@ -232,6 +238,11 @@ export function useAIChatController(): AIChatController {
|
|||||||
description: tool.description,
|
description: tool.description,
|
||||||
inputSchema: tool.inputSchema,
|
inputSchema: tool.inputSchema,
|
||||||
})),
|
})),
|
||||||
|
options: {
|
||||||
|
withLinkPreviews: renderMessageOptions?.withLinkPreviews ?? true,
|
||||||
|
withToolCalls: renderMessageOptions?.withToolCalls ?? true,
|
||||||
|
asEmbeddable: renderMessageOptions?.asEmbeddable ?? false,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
// Process streaming response
|
// Process streaming response
|
||||||
@@ -343,7 +354,12 @@ export function useAIChatController(): AIChatController {
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[messageContextRef.current]
|
[
|
||||||
|
messageContextRef.current,
|
||||||
|
renderMessageOptions?.withLinkPreviews,
|
||||||
|
renderMessageOptions?.withToolCalls,
|
||||||
|
renderMessageOptions?.asEmbeddable,
|
||||||
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
// Post a message to the AI chat
|
// Post a message to the AI chat
|
||||||
@@ -422,7 +438,7 @@ export function useAIChatController(): AIChatController {
|
|||||||
}));
|
}));
|
||||||
}, [setSearchState]);
|
}, [setSearchState]);
|
||||||
|
|
||||||
return React.useMemo(() => {
|
const controller = React.useMemo(() => {
|
||||||
return {
|
return {
|
||||||
open: onOpen,
|
open: onOpen,
|
||||||
close: onClose,
|
close: onClose,
|
||||||
@@ -430,4 +446,22 @@ export function useAIChatController(): AIChatController {
|
|||||||
postMessage: onPostMessage,
|
postMessage: onPostMessage,
|
||||||
};
|
};
|
||||||
}, [onOpen, onClose, onClear, onPostMessage]);
|
}, [onOpen, onClose, onClear, onPostMessage]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AIChatControllerContext.Provider value={controller}>
|
||||||
|
{children}
|
||||||
|
</AIChatControllerContext.Provider>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the controller to interact with the AI chat.
|
||||||
|
* Integrates with search state to synchronize ?ask= parameter.
|
||||||
|
*/
|
||||||
|
export function useAIChatController(): AIChatController {
|
||||||
|
const controller = React.useContext(AIChatControllerContext);
|
||||||
|
if (!controller) {
|
||||||
|
throw new Error('useAIChatController must be used within an AIChatProvider');
|
||||||
|
}
|
||||||
|
return controller;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { t, tString, useLanguage } from '@/intl/client';
|
import { t, tString, useLanguage } from '@/intl/client';
|
||||||
|
import type { TranslationLanguage } from '@/intl/translations';
|
||||||
import { Icon } from '@gitbook/icons';
|
import { Icon } from '@gitbook/icons';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { useHotkeys } from 'react-hotkeys-hook';
|
import { useHotkeys } from 'react-hotkeys-hook';
|
||||||
@@ -10,9 +11,10 @@ import {
|
|||||||
useAIChatController,
|
useAIChatController,
|
||||||
useAIChatState,
|
useAIChatState,
|
||||||
} from '../AI';
|
} from '../AI';
|
||||||
|
import { EmbeddableFrame } from '../Embeddable/EmbeddableFrame';
|
||||||
import { useNow } from '../hooks';
|
import { useNow } from '../hooks';
|
||||||
import { Button } from '../primitives';
|
import { Button } from '../primitives';
|
||||||
import { DropdownMenu, DropdownMenuItem } from '../primitives/DropdownMenu';
|
import { DropdownMenu, DropdownMenuItem } from '../primitives';
|
||||||
import { AIChatIcon } from './AIChatIcon';
|
import { AIChatIcon } from './AIChatIcon';
|
||||||
import { AIChatInput } from './AIChatInput';
|
import { AIChatInput } from './AIChatInput';
|
||||||
import { AIChatMessages } from './AIChatMessages';
|
import { AIChatMessages } from './AIChatMessages';
|
||||||
@@ -20,8 +22,21 @@ import AIChatSuggestedQuestions from './AIChatSuggestedQuestions';
|
|||||||
|
|
||||||
export function AIChat(props: { trademark: boolean }) {
|
export function AIChat(props: { trademark: boolean }) {
|
||||||
const { trademark } = props;
|
const { trademark } = props;
|
||||||
|
|
||||||
|
const language = useLanguage();
|
||||||
const chat = useAIChatState();
|
const chat = useAIChatState();
|
||||||
const chatController = useAIChatController();
|
const chatController = useAIChatController();
|
||||||
|
const containerRef = React.useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
|
// When the chat is opened, scroll to it (applicable on mobile, where it's displayed above the content)
|
||||||
|
React.useEffect(() => {
|
||||||
|
if (chat.opened) {
|
||||||
|
containerRef.current?.scrollIntoView({
|
||||||
|
behavior: 'smooth',
|
||||||
|
block: 'start',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, [chat.opened]);
|
||||||
|
|
||||||
useHotkeys(
|
useHotkeys(
|
||||||
'mod+i',
|
'mod+i',
|
||||||
@@ -46,10 +61,101 @@ export function AIChat(props: { trademark: boolean }) {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return <AIChatWindow trademark={trademark} chatController={chatController} chat={chat} />;
|
return (
|
||||||
|
<div
|
||||||
|
data-testid="ai-chat"
|
||||||
|
className="ai-chat inset-y-0 right-0 z-40 mx-auto flex max-w-3xl animate-present scroll-mt-36 px-4 py-4 transition-all duration-300 sm:px-6 lg:fixed lg:w-80 lg:animate-enter-from-right lg:pr-4 lg:pl-0 xl:w-96"
|
||||||
|
>
|
||||||
|
<EmbeddableFrame
|
||||||
|
className="relative circular-corners:rounded-3xl rounded-corners:rounded-md depth-subtle:shadow-lg shadow-tint ring-1 ring-tint-subtle"
|
||||||
|
icon={<AIChatDynamicIcon trademark={trademark} />}
|
||||||
|
title={getAIChatName(language, trademark)}
|
||||||
|
subtitle={
|
||||||
|
chat.loading
|
||||||
|
? chat.messages[chat.messages.length - 1].content
|
||||||
|
? tString(language, 'ai_chat_working')
|
||||||
|
: tString(language, 'ai_chat_thinking')
|
||||||
|
: ''
|
||||||
|
}
|
||||||
|
buttons={
|
||||||
|
<>
|
||||||
|
{chat.messages.length > 0 ? (
|
||||||
|
<DropdownMenu
|
||||||
|
button={
|
||||||
|
<Button
|
||||||
|
onClick={() => {}}
|
||||||
|
iconOnly
|
||||||
|
icon="ellipsis"
|
||||||
|
label={tString(language, 'actions')}
|
||||||
|
variant="blank"
|
||||||
|
size="default"
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<DropdownMenuItem
|
||||||
|
onClick={() => {
|
||||||
|
chatController.clear();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Icon
|
||||||
|
icon="broom-wide"
|
||||||
|
className="size-3 shrink-0 text-tint-subtle"
|
||||||
|
/>
|
||||||
|
{t(language, 'ai_chat_clear_conversation')}
|
||||||
|
</DropdownMenuItem>
|
||||||
|
</DropdownMenu>
|
||||||
|
) : null}
|
||||||
|
<Button
|
||||||
|
onClick={() => chatController.close()}
|
||||||
|
iconOnly
|
||||||
|
icon="close"
|
||||||
|
label={tString(language, 'close')}
|
||||||
|
variant="blank"
|
||||||
|
size="default"
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<AIChatBody chatController={chatController} chat={chat} trademark={trademark} />
|
||||||
|
</EmbeddableFrame>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function AIChatWindow(props: {
|
/**
|
||||||
|
* Dynamic icon to indicate the AI chat state.
|
||||||
|
*/
|
||||||
|
export function AIChatDynamicIcon(props: {
|
||||||
|
trademark: boolean;
|
||||||
|
}) {
|
||||||
|
const { trademark } = props;
|
||||||
|
const chat = useAIChatState();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AIChatIcon
|
||||||
|
className="size-5 text-tint"
|
||||||
|
trademark={trademark}
|
||||||
|
state={
|
||||||
|
chat.error
|
||||||
|
? 'error'
|
||||||
|
: chat.loading
|
||||||
|
? chat.messages[chat.messages.length - 1].content
|
||||||
|
? 'working'
|
||||||
|
: 'thinking'
|
||||||
|
: chat.messages.length > 0
|
||||||
|
? chat.pendingTools.length > 0
|
||||||
|
? 'confirm'
|
||||||
|
: 'done'
|
||||||
|
: 'default'
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Body of the AI chat window.
|
||||||
|
*/
|
||||||
|
export function AIChatBody(props: {
|
||||||
chatController: AIChatController;
|
chatController: AIChatController;
|
||||||
chat: AIChatState;
|
chat: AIChatState;
|
||||||
trademark: boolean;
|
trademark: boolean;
|
||||||
@@ -58,7 +164,6 @@ export function AIChatWindow(props: {
|
|||||||
|
|
||||||
const [input, setInput] = React.useState('');
|
const [input, setInput] = React.useState('');
|
||||||
|
|
||||||
const containerRef = React.useRef<HTMLDivElement>(null);
|
|
||||||
const scrollContainerRef = React.useRef<HTMLDivElement>(null);
|
const scrollContainerRef = React.useRef<HTMLDivElement>(null);
|
||||||
// Ref for the last user message element
|
// Ref for the last user message element
|
||||||
const lastUserMessageRef = React.useRef<HTMLDivElement>(null);
|
const lastUserMessageRef = React.useRef<HTMLDivElement>(null);
|
||||||
@@ -89,12 +194,6 @@ export function AIChatWindow(props: {
|
|||||||
}, [chat.messages.length]);
|
}, [chat.messages.length]);
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
// When the chat is opened, scroll to it (applicable on mobile, where it's displayed above the content)
|
|
||||||
containerRef.current?.scrollIntoView({
|
|
||||||
behavior: 'smooth',
|
|
||||||
block: 'start',
|
|
||||||
});
|
|
||||||
|
|
||||||
const timeout = setTimeout(() => {
|
const timeout = setTimeout(() => {
|
||||||
if (lastUserMessageRef.current) {
|
if (lastUserMessageRef.current) {
|
||||||
lastUserMessageRef.current.scrollIntoView({
|
lastUserMessageRef.current.scrollIntoView({
|
||||||
@@ -121,136 +220,62 @@ export function AIChatWindow(props: {
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<>
|
||||||
data-testid="ai-chat"
|
<div
|
||||||
className="ai-chat inset-y-0 right-0 z-40 mx-auto flex max-w-3xl animate-present scroll-mt-36 px-4 py-4 transition-all duration-300 sm:px-6 lg:fixed lg:w-80 lg:animate-enter-from-right lg:pr-4 lg:pl-0 xl:w-96"
|
ref={scrollContainerRef}
|
||||||
ref={containerRef}
|
className="flex grow scroll-pt-4 flex-col gap-4 overflow-y-auto p-4"
|
||||||
>
|
style={{
|
||||||
<div className="relative flex h-full grow flex-col overflow-hidden circular-corners:rounded-3xl rounded-corners:rounded-md bg-tint-base text-sm text-tint depth-subtle:shadow-lg shadow-tint ring-1 ring-tint-subtle">
|
paddingBottom: `${inputHeight}px`,
|
||||||
<div className="flex select-none items-center gap-2 border-tint-subtle border-b bg-tint-subtle px-4 py-2 text-tint-strong">
|
}}
|
||||||
<AIChatIcon
|
>
|
||||||
className="size-5 text-tint"
|
{isEmpty ? (
|
||||||
trademark={trademark}
|
<div className="flex min-h-full w-full shrink-0 flex-col items-center justify-center gap-6 py-4">
|
||||||
state={
|
<div className="flex size-32 animate-fade-in-slow items-center justify-center rounded-full bg-tint-subtle">
|
||||||
chat.error
|
<AIChatIcon
|
||||||
? 'error'
|
state="intro"
|
||||||
: chat.loading
|
trademark={trademark}
|
||||||
? chat.messages[chat.messages.length - 1].content
|
className="size-16 animate-[present_500ms_200ms_both]"
|
||||||
? 'working'
|
/>
|
||||||
: 'thinking'
|
|
||||||
: chat.messages.length > 0
|
|
||||||
? chat.pendingTools.length > 0
|
|
||||||
? 'confirm'
|
|
||||||
: 'done'
|
|
||||||
: 'default'
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<div className="flex flex-col">
|
|
||||||
<div className="font-bold">{getAIChatName(trademark)}</div>
|
|
||||||
<div
|
|
||||||
className={`text-tint text-xs leading-none transition-all duration-500 ${
|
|
||||||
chat.loading ? 'h-3 opacity-11' : 'h-0 opacity-0'
|
|
||||||
}`}
|
|
||||||
>
|
|
||||||
{chat.loading
|
|
||||||
? chat.messages[chat.messages.length - 1].content
|
|
||||||
? t(language, 'ai_chat_working')
|
|
||||||
: t(language, 'ai_chat_thinking')
|
|
||||||
: ''}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div className="animate-[fadeIn_500ms_400ms_both]">
|
||||||
<div className="ml-auto flex gap-2">
|
<h5 className=" text-center font-bold text-lg text-tint-strong">
|
||||||
<DropdownMenu
|
{timeGreeting}
|
||||||
button={
|
</h5>
|
||||||
<Button
|
<p className="text-center text-tint">
|
||||||
onClick={() => {}}
|
{t(language, 'ai_chat_assistant_description')}
|
||||||
iconOnly
|
</p>
|
||||||
icon="ellipsis"
|
|
||||||
label={tString(language, 'actions')}
|
|
||||||
variant="blank"
|
|
||||||
size="default"
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<DropdownMenuItem
|
|
||||||
onClick={() => {
|
|
||||||
chatController.clear();
|
|
||||||
}}
|
|
||||||
disabled={isEmpty}
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon="broom-wide"
|
|
||||||
className="size-3 shrink-0 text-tint-subtle"
|
|
||||||
/>
|
|
||||||
{t(language, 'ai_chat_clear_conversation')}
|
|
||||||
</DropdownMenuItem>
|
|
||||||
</DropdownMenu>
|
|
||||||
<Button
|
|
||||||
onClick={() => chatController.close()}
|
|
||||||
iconOnly
|
|
||||||
icon="close"
|
|
||||||
label={tString(language, 'close')}
|
|
||||||
variant="blank"
|
|
||||||
size="default"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
ref={scrollContainerRef}
|
|
||||||
className="flex grow scroll-pt-4 flex-col gap-4 overflow-y-auto p-4"
|
|
||||||
style={{
|
|
||||||
paddingBottom: `${inputHeight}px`,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{isEmpty ? (
|
|
||||||
<div className="flex min-h-full w-full shrink-0 flex-col items-center justify-center gap-6 py-4">
|
|
||||||
<div className="flex size-32 animate-fade-in-slow items-center justify-center rounded-full bg-tint-subtle">
|
|
||||||
<AIChatIcon
|
|
||||||
state="intro"
|
|
||||||
trademark={trademark}
|
|
||||||
className="size-16 animate-[present_500ms_200ms_both]"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div className="animate-[fadeIn_500ms_400ms_both]">
|
|
||||||
<h5 className=" text-center font-bold text-lg text-tint-strong">
|
|
||||||
{timeGreeting}
|
|
||||||
</h5>
|
|
||||||
<p className="text-center text-tint">
|
|
||||||
{t(language, 'ai_chat_assistant_description')}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{!chat.error ? (
|
|
||||||
<AIChatSuggestedQuestions chatController={chatController} />
|
|
||||||
) : null}
|
|
||||||
</div>
|
</div>
|
||||||
) : (
|
{!chat.error ? (
|
||||||
<AIChatMessages
|
<AIChatSuggestedQuestions chatController={chatController} />
|
||||||
chat={chat}
|
) : null}
|
||||||
chatController={chatController}
|
</div>
|
||||||
lastUserMessageRef={lastUserMessageRef}
|
) : (
|
||||||
/>
|
<AIChatMessages
|
||||||
)}
|
chat={chat}
|
||||||
</div>
|
chatController={chatController}
|
||||||
<div
|
lastUserMessageRef={lastUserMessageRef}
|
||||||
ref={inputRef}
|
|
||||||
className="absolute inset-x-0 bottom-0 mr-2 flex select-none flex-col gap-4 bg-linear-to-b from-transparent to-50% to-tint-base/9 p-4 pr-2"
|
|
||||||
>
|
|
||||||
{/* Display an error banner when something went wrong. */}
|
|
||||||
{chat.error ? <AIChatError chatController={chatController} /> : null}
|
|
||||||
|
|
||||||
<AIChatInput
|
|
||||||
value={input}
|
|
||||||
onChange={setInput}
|
|
||||||
loading={chat.loading}
|
|
||||||
disabled={chat.loading || chat.error}
|
|
||||||
onSubmit={() => {
|
|
||||||
chatController.postMessage({ message: input });
|
|
||||||
setInput('');
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div
|
||||||
|
ref={inputRef}
|
||||||
|
className="absolute inset-x-0 bottom-0 mr-2 flex select-none flex-col gap-4 bg-linear-to-b from-transparent to-50% to-tint-base/9 p-4 pr-2"
|
||||||
|
>
|
||||||
|
{/* Display an error banner when something went wrong. */}
|
||||||
|
{chat.error ? <AIChatError chatController={chatController} /> : null}
|
||||||
|
|
||||||
|
<AIChatInput
|
||||||
|
value={input}
|
||||||
|
onChange={setInput}
|
||||||
|
loading={chat.loading}
|
||||||
|
disabled={chat.loading || chat.error}
|
||||||
|
onSubmit={() => {
|
||||||
|
chatController.postMessage({ message: input });
|
||||||
|
setInput('');
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -280,9 +305,7 @@ function AIChatError(props: { chatController: AIChatController }) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getAIChatName(trademark: boolean) {
|
export function getAIChatName(language: TranslationLanguage, trademark: boolean) {
|
||||||
const language = useLanguage();
|
|
||||||
|
|
||||||
return trademark
|
return trademark
|
||||||
? tString(language, 'ai_chat_assistant_name')
|
? tString(language, 'ai_chat_assistant_name')
|
||||||
: tString(language, 'ai_chat_assistant_name_unbranded');
|
: tString(language, 'ai_chat_assistant_name_unbranded');
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ export interface DocumentContext {
|
|||||||
* If false, no link previews will be rendered.
|
* If false, no link previews will be rendered.
|
||||||
* @default false
|
* @default false
|
||||||
*/
|
*/
|
||||||
shouldRenderLinkPreviews?: boolean;
|
withLinkPreviews?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DocumentContextProps {
|
export interface DocumentContextProps {
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ export async function InlineLink(props: InlineProps<DocumentInlineLink>) {
|
|||||||
</StyledLink>
|
</StyledLink>
|
||||||
);
|
);
|
||||||
|
|
||||||
if (context.shouldRenderLinkPreviews) {
|
if (context.withLinkPreviews) {
|
||||||
return (
|
return (
|
||||||
<InlineLinkTooltipWrapper inline={inline} language={language} resolved={resolved}>
|
<InlineLinkTooltipWrapper inline={inline} language={language} resolved={resolved}>
|
||||||
{content}
|
{content}
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import { useAIChatController, useAIChatState } from '@/components/AI';
|
||||||
|
import { AIChatBody } from '@/components/AIChat';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Embeddable AI chat window in an iframe.
|
||||||
|
*/
|
||||||
|
export function EmbeddableAIChat(props: {
|
||||||
|
trademark: boolean;
|
||||||
|
}) {
|
||||||
|
const { trademark } = props;
|
||||||
|
const chat = useAIChatState();
|
||||||
|
const chatController = useAIChatController();
|
||||||
|
|
||||||
|
return <AIChatBody trademark={trademark} chatController={chatController} chat={chat} />;
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
import type { GitBookSiteContext } from '@/lib/context';
|
||||||
|
import { EmbeddableAIChat } from './EmbeddableAIChat';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reusable page component for the embed assistant page.
|
||||||
|
*/
|
||||||
|
export async function EmbeddableAssistantPage(props: {
|
||||||
|
context: GitBookSiteContext;
|
||||||
|
}) {
|
||||||
|
const { context } = props;
|
||||||
|
|
||||||
|
return <EmbeddableAIChat trademark={context.customization.trademark.enabled} />;
|
||||||
|
}
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
import { type PagePathParams, getSitePageData } from '@/components/SitePage';
|
||||||
|
|
||||||
|
import { PageBody } from '@/components/PageBody';
|
||||||
|
import type { GitBookSiteContext } from '@/lib/context';
|
||||||
|
import type { Metadata } from 'next';
|
||||||
|
|
||||||
|
export const dynamic = 'force-static';
|
||||||
|
|
||||||
|
type EmbeddableDocsPageProps = {
|
||||||
|
context: GitBookSiteContext;
|
||||||
|
pageParams: PagePathParams;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Page component for the embed docs page.
|
||||||
|
*/
|
||||||
|
export async function EmbeddableDocsPage(props: EmbeddableDocsPageProps) {
|
||||||
|
const { context, pageParams } = props;
|
||||||
|
const { page, document, ancestors, withPageFeedback } = await getSitePageData({
|
||||||
|
context,
|
||||||
|
pageParams,
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex-1 overflow-auto p-6">
|
||||||
|
<PageBody
|
||||||
|
context={context}
|
||||||
|
page={page}
|
||||||
|
ancestors={ancestors}
|
||||||
|
document={document}
|
||||||
|
withPageFeedback={withPageFeedback}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function generateEmbeddableDocsPageMetadata(
|
||||||
|
_props: EmbeddableDocsPageProps
|
||||||
|
): Promise<Metadata> {
|
||||||
|
return {
|
||||||
|
robots: { index: false, follow: false },
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
import { tcls } from '@/lib/tailwind';
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
export type EmbeddableFrameHeaderProps = {
|
||||||
|
icon: React.ReactNode;
|
||||||
|
|
||||||
|
title: string;
|
||||||
|
subtitle?: string;
|
||||||
|
|
||||||
|
buttons?: React.ReactNode;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type EmbeddableFrameProps = EmbeddableFrameHeaderProps &
|
||||||
|
React.ComponentProps<'div'> & {
|
||||||
|
children: React.ReactNode;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Presentation component to display an embeddable frame.
|
||||||
|
* It is used for the AI chat window in the docs, but also when embedded in another website.
|
||||||
|
*/
|
||||||
|
export const EmbeddableFrame = React.forwardRef<HTMLDivElement, EmbeddableFrameProps>(
|
||||||
|
(props, ref) => {
|
||||||
|
const { icon, title, subtitle, buttons, children, ...divProps } = props;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
{...divProps}
|
||||||
|
className={tcls(
|
||||||
|
'flex h-full grow animate-fade-in-slow flex-col overflow-hidden bg-tint-base text-sm text-tint',
|
||||||
|
divProps.className
|
||||||
|
)}
|
||||||
|
ref={ref}
|
||||||
|
>
|
||||||
|
<div className="flex select-none items-center gap-2 border-tint-subtle border-b bg-tint-subtle px-4 py-2 text-tint-strong">
|
||||||
|
{icon}
|
||||||
|
<div className="flex flex-col">
|
||||||
|
<div className="font-bold">{title}</div>
|
||||||
|
<div
|
||||||
|
className={`text-tint text-xs leading-none transition-all duration-500 ${
|
||||||
|
subtitle ? 'h-3 opacity-11' : 'h-0 opacity-0'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
{subtitle}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="ml-auto flex gap-2">{buttons}</div>
|
||||||
|
</div>
|
||||||
|
<div className="flex flex-1 flex-col overflow-hidden">{children}</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import type { ParentToFrameMessage } from '@gitbook/embed';
|
||||||
|
import { createChannel } from 'bidc';
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import { useAIChatController } from '@/components/AI';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expose the API to communicate with the parent window.
|
||||||
|
*/
|
||||||
|
export function EmbeddableIframeAPI() {
|
||||||
|
const chatController = useAIChatController();
|
||||||
|
|
||||||
|
React.useEffect(() => {
|
||||||
|
if (window.parent === window) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const channel = createChannel();
|
||||||
|
|
||||||
|
channel.receive((payload) => {
|
||||||
|
const message = payload as ParentToFrameMessage;
|
||||||
|
|
||||||
|
switch (message.type) {
|
||||||
|
case 'clearChat': {
|
||||||
|
chatController.clear();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'postUserMessage': {
|
||||||
|
chatController.postMessage({
|
||||||
|
message: message.message,
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// TODO: Handle other messages
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return channel.cleanup();
|
||||||
|
}, [chatController]);
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
import { AIChatProvider, AIContextProvider } from '@/components/AI';
|
||||||
|
import { AIChatDynamicIcon } from '@/components/AIChat';
|
||||||
|
import { EmbeddableFrame } from '@/components/Embeddable';
|
||||||
|
import { CustomizationRootLayout } from '@/components/RootLayout';
|
||||||
|
import {
|
||||||
|
SiteLayoutClientContexts,
|
||||||
|
generateSiteLayoutMetadata,
|
||||||
|
generateSiteLayoutViewport,
|
||||||
|
} from '@/components/SiteLayout';
|
||||||
|
import type { GitBookSiteContext } from '@/lib/context';
|
||||||
|
import { CustomizationAIMode } from '@gitbook/api';
|
||||||
|
import { EmbeddableIframeAPI } from './EmbeddableIframeAPI';
|
||||||
|
|
||||||
|
type EmbeddableRootLayoutProps = {
|
||||||
|
context: GitBookSiteContext;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Layout component for the embed routes.
|
||||||
|
*/
|
||||||
|
export async function EmbeddableRootLayout({
|
||||||
|
context,
|
||||||
|
children,
|
||||||
|
}: React.PropsWithChildren<EmbeddableRootLayoutProps>) {
|
||||||
|
return (
|
||||||
|
<CustomizationRootLayout customization={context.customization}>
|
||||||
|
<SiteLayoutClientContexts
|
||||||
|
forcedTheme={context.customization.themes.default}
|
||||||
|
externalLinksTarget={context.customization.externalLinks.target}
|
||||||
|
contextId={context.contextId}
|
||||||
|
>
|
||||||
|
<EmbeddableFrame
|
||||||
|
icon={<AIChatDynamicIcon trademark={context.customization.trademark.enabled} />}
|
||||||
|
title="Test"
|
||||||
|
className="fixed inset-0"
|
||||||
|
>
|
||||||
|
<AIContextProvider
|
||||||
|
aiMode={CustomizationAIMode.Assistant}
|
||||||
|
trademark={context.customization.trademark.enabled}
|
||||||
|
>
|
||||||
|
<AIChatProvider
|
||||||
|
renderMessageOptions={{
|
||||||
|
withLinkPreviews: false,
|
||||||
|
asEmbeddable: true,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
<EmbeddableIframeAPI />
|
||||||
|
</AIChatProvider>
|
||||||
|
</AIContextProvider>
|
||||||
|
</EmbeddableFrame>
|
||||||
|
</SiteLayoutClientContexts>
|
||||||
|
</CustomizationRootLayout>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function generateEmbeddableViewport({ context }: EmbeddableRootLayoutProps) {
|
||||||
|
return generateSiteLayoutViewport(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function generateEmbeddableMetadata({ context }: EmbeddableRootLayoutProps) {
|
||||||
|
return generateSiteLayoutMetadata(context);
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
export * from './EmbeddableFrame';
|
||||||
|
export * from './EmbeddableRootLayout';
|
||||||
|
export * from './EmbeddableAssistantPage';
|
||||||
|
export * from './EmbeddableDocsPage';
|
||||||
@@ -245,7 +245,7 @@ async function PDFPageDocument(props: {
|
|||||||
page,
|
page,
|
||||||
},
|
},
|
||||||
getId: (id) => getPagePDFContainerId(page, id),
|
getId: (id) => getPagePDFContainerId(page, id),
|
||||||
shouldRenderLinkPreviews: false, // We don't want to render link previews in the PDF.
|
withLinkPreviews: false, // We don't want to render link previews in the PDF.
|
||||||
}}
|
}}
|
||||||
// We consider all pages as offscreen in PDF mode
|
// We consider all pages as offscreen in PDF mode
|
||||||
// to ensure we can efficiently render as many pages as possible
|
// to ensure we can efficiently render as many pages as possible
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ export function PageBody(props: {
|
|||||||
const contentFullWidth = document ? hasFullWidthBlock(document) : false;
|
const contentFullWidth = document ? hasFullWidthBlock(document) : false;
|
||||||
|
|
||||||
// Render link previews only if there are less than LINK_PREVIEW_MAX_COUNT links in the document.
|
// Render link previews only if there are less than LINK_PREVIEW_MAX_COUNT links in the document.
|
||||||
const shouldRenderLinkPreviews = document
|
const withLinkPreviews = document
|
||||||
? !hasMoreThan(
|
? !hasMoreThan(
|
||||||
document,
|
document,
|
||||||
(inline) => inline.object === 'inline' && inline.type === 'link',
|
(inline) => inline.object === 'inline' && inline.type === 'link',
|
||||||
@@ -81,7 +81,7 @@ export function PageBody(props: {
|
|||||||
context={{
|
context={{
|
||||||
mode: 'default',
|
mode: 'default',
|
||||||
contentContext: context,
|
contentContext: context,
|
||||||
shouldRenderLinkPreviews,
|
withLinkPreviews,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</React.Suspense>
|
</React.Suspense>
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ import { getSpaceLanguage } from '@/intl/server';
|
|||||||
import { getAssetURL } from '@/lib/assets';
|
import { getAssetURL } from '@/lib/assets';
|
||||||
import { tcls } from '@/lib/tailwind';
|
import { tcls } from '@/lib/tailwind';
|
||||||
|
|
||||||
import { ClientContexts } from './ClientContexts';
|
import { RootLayoutClientContexts } from './RootLayoutClientContexts';
|
||||||
|
|
||||||
import '@gitbook/icons/style.css';
|
import '@gitbook/icons/style.css';
|
||||||
import './globals.css';
|
import './globals.css';
|
||||||
@@ -185,7 +185,9 @@ export async function CustomizationRootLayout(props: {
|
|||||||
: null) || IconStyle.Regular
|
: null) || IconStyle.Regular
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<ClientContexts language={language}>{children}</ClientContexts>
|
<RootLayoutClientContexts language={language}>
|
||||||
|
{children}
|
||||||
|
</RootLayoutClientContexts>
|
||||||
</IconsProvider>
|
</IconsProvider>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
+4
-1
@@ -8,7 +8,10 @@ import { TooltipProvider } from '@radix-ui/react-tooltip';
|
|||||||
import { HashProvider } from '../hooks';
|
import { HashProvider } from '../hooks';
|
||||||
import { LoadingStateProvider } from '../primitives/LoadingStateProvider';
|
import { LoadingStateProvider } from '../primitives/LoadingStateProvider';
|
||||||
|
|
||||||
export function ClientContexts(props: {
|
/**
|
||||||
|
* Client component context providers for the root layout.
|
||||||
|
*/
|
||||||
|
export function RootLayoutClientContexts(props: {
|
||||||
language: TranslationLanguage;
|
language: TranslationLanguage;
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}) {
|
||||||
@@ -355,7 +355,7 @@ async function transformAnswer(
|
|||||||
mode: 'default',
|
mode: 'default',
|
||||||
contentContext: context,
|
contentContext: context,
|
||||||
wrapBlocksInSuspense: false,
|
wrapBlocksInSuspense: false,
|
||||||
shouldRenderLinkPreviews: false, // We don't want to render link previews in the AI answer.
|
withLinkPreviews: false, // We don't want to render link previews in the AI answer.
|
||||||
}}
|
}}
|
||||||
style={['space-y-5']}
|
style={['space-y-5']}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -1,36 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import type { CustomizationThemeMode, SiteExternalLinksTarget } from '@gitbook/api';
|
|
||||||
import { ThemeProvider } from 'next-themes';
|
|
||||||
import type React from 'react';
|
|
||||||
import { useClearRouterCache } from '../hooks/useClearRouterCache';
|
|
||||||
import { LinkSettingsContext } from '../primitives';
|
|
||||||
|
|
||||||
export function ClientContexts(props: {
|
|
||||||
nonce?: string;
|
|
||||||
forcedTheme: CustomizationThemeMode | undefined;
|
|
||||||
externalLinksTarget: SiteExternalLinksTarget;
|
|
||||||
contextId: string | undefined;
|
|
||||||
children: React.ReactNode;
|
|
||||||
}) {
|
|
||||||
const { children, forcedTheme, externalLinksTarget, contextId } = props;
|
|
||||||
|
|
||||||
useClearRouterCache(contextId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A bug in ThemeProvider is causing the nonce to be included incorrectly
|
|
||||||
* on the client-side. Original issue: https://github.com/pacocoursey/next-themes/issues/218
|
|
||||||
*
|
|
||||||
* This is a workaround for it, until next-themes fixes it in their library. There is already
|
|
||||||
* a PR: https://github.com/pacocoursey/next-themes/pull/223
|
|
||||||
*/
|
|
||||||
const nonce = typeof window === 'undefined' || !props.nonce ? props.nonce : '';
|
|
||||||
|
|
||||||
return (
|
|
||||||
<ThemeProvider nonce={nonce} attribute="class" enableSystem forcedTheme={forcedTheme}>
|
|
||||||
<LinkSettingsContext.Provider value={{ externalLinksTarget }}>
|
|
||||||
{children}
|
|
||||||
</LinkSettingsContext.Provider>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -2,12 +2,9 @@
|
|||||||
* Insert inline JS to detect Cloudflare Rocket Loader and notify the user that the content will not load correctly.
|
* Insert inline JS to detect Cloudflare Rocket Loader and notify the user that the content will not load correctly.
|
||||||
* It needs to be inserted as a script tag so that we can pass `data-cfasync="false"` to avoid being processed by Rocket Loader.
|
* It needs to be inserted as a script tag so that we can pass `data-cfasync="false"` to avoid being processed by Rocket Loader.
|
||||||
*/
|
*/
|
||||||
export function RocketLoaderDetector(props: { nonce?: string }) {
|
export function RocketLoaderDetector() {
|
||||||
const { nonce } = props;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<script
|
<script
|
||||||
nonce={nonce}
|
|
||||||
suppressHydrationWarning
|
suppressHydrationWarning
|
||||||
data-cfasync="false"
|
data-cfasync="false"
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import type { GitBookSiteContext } from '@/lib/context';
|
import type { GitBookSiteContext } from '@/lib/context';
|
||||||
import { CustomizationThemeMode } from '@gitbook/api';
|
import { CustomizationThemeMode } from '@gitbook/api';
|
||||||
import type { Metadata, Viewport } from 'next';
|
import type { Metadata, Viewport } from 'next';
|
||||||
import { NuqsAdapter } from 'nuqs/adapters/next/app';
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import * as ReactDOM from 'react-dom';
|
import * as ReactDOM from 'react-dom';
|
||||||
|
|
||||||
@@ -14,21 +13,21 @@ import { buildVersion } from '@/lib/build';
|
|||||||
import { GITBOOK_API_PUBLIC_URL, GITBOOK_ASSETS_URL, GITBOOK_ICONS_URL } from '@/lib/env';
|
import { GITBOOK_API_PUBLIC_URL, GITBOOK_ASSETS_URL, GITBOOK_ICONS_URL } from '@/lib/env';
|
||||||
import { getResizedImageURL } from '@/lib/images';
|
import { getResizedImageURL } from '@/lib/images';
|
||||||
import { isSiteIndexable } from '@/lib/seo';
|
import { isSiteIndexable } from '@/lib/seo';
|
||||||
import { ClientContexts } from './ClientContexts';
|
import { AIChatProvider, AIContextProvider } from '../AI';
|
||||||
import { RocketLoaderDetector } from './RocketLoaderDetector';
|
import { RocketLoaderDetector } from './RocketLoaderDetector';
|
||||||
|
import { SiteLayoutClientContexts } from './SiteLayoutClientContexts';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Layout when rendering a site.
|
* Layout when rendering a site.
|
||||||
*/
|
*/
|
||||||
export async function SiteLayout(props: {
|
export async function SiteLayout(props: {
|
||||||
nonce?: string;
|
|
||||||
context: GitBookSiteContext;
|
context: GitBookSiteContext;
|
||||||
forcedTheme?: CustomizationThemeMode | null;
|
forcedTheme?: CustomizationThemeMode | null;
|
||||||
withTracking: boolean;
|
withTracking: boolean;
|
||||||
visitorAuthClaims: VisitorAuthClaims;
|
visitorAuthClaims: VisitorAuthClaims;
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}) {
|
||||||
const { context, nonce, forcedTheme, withTracking, visitorAuthClaims, children } = props;
|
const { context, forcedTheme, withTracking, visitorAuthClaims, children } = props;
|
||||||
|
|
||||||
const { customization } = context;
|
const { customization } = context;
|
||||||
// Scripts are disabled when tracking is disabled
|
// Scripts are disabled when tracking is disabled
|
||||||
@@ -43,49 +42,52 @@ export async function SiteLayout(props: {
|
|||||||
scripts.forEach(({ script }) => {
|
scripts.forEach(({ script }) => {
|
||||||
ReactDOM.preload(script, {
|
ReactDOM.preload(script, {
|
||||||
as: 'script',
|
as: 'script',
|
||||||
nonce,
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NuqsAdapter>
|
<SiteLayoutClientContexts
|
||||||
<ClientContexts
|
contextId={context.contextId}
|
||||||
nonce={nonce}
|
forcedTheme={
|
||||||
contextId={context.contextId}
|
forcedTheme ??
|
||||||
forcedTheme={
|
(customization.themes.toggeable ? undefined : customization.themes.default)
|
||||||
forcedTheme ??
|
}
|
||||||
(customization.themes.toggeable ? undefined : customization.themes.default)
|
externalLinksTarget={customization.externalLinks.target}
|
||||||
}
|
>
|
||||||
externalLinksTarget={customization.externalLinks.target}
|
<AIContextProvider
|
||||||
|
aiMode={customization.ai?.mode}
|
||||||
|
trademark={customization.trademark.enabled}
|
||||||
>
|
>
|
||||||
<SpaceLayout
|
<AIChatProvider>
|
||||||
context={context}
|
<SpaceLayout
|
||||||
withTracking={withTracking}
|
context={context}
|
||||||
visitorAuthClaims={visitorAuthClaims}
|
withTracking={withTracking}
|
||||||
>
|
visitorAuthClaims={visitorAuthClaims}
|
||||||
{children}
|
>
|
||||||
</SpaceLayout>
|
{children}
|
||||||
|
</SpaceLayout>
|
||||||
|
</AIChatProvider>
|
||||||
|
</AIContextProvider>
|
||||||
|
|
||||||
{scripts.length > 0 ? (
|
{scripts.length > 0 ? (
|
||||||
<>
|
<>
|
||||||
<LoadIntegrations />
|
<LoadIntegrations />
|
||||||
{scripts.map(({ script }) => (
|
{scripts.map(({ script }) => (
|
||||||
<script key={script} async src={script} nonce={nonce} />
|
<script key={script} async src={script} />
|
||||||
))}
|
))}
|
||||||
</>
|
</>
|
||||||
) : null}
|
) : null}
|
||||||
|
|
||||||
{scripts.some((script) => script.cookies) || customization.privacyPolicy.url ? (
|
{scripts.some((script) => script.cookies) || customization.privacyPolicy.url ? (
|
||||||
<React.Suspense fallback={null}>
|
<React.Suspense fallback={null}>
|
||||||
<CookiesToast privacyPolicy={customization.privacyPolicy.url} />
|
<CookiesToast privacyPolicy={customization.privacyPolicy.url} />
|
||||||
</React.Suspense>
|
</React.Suspense>
|
||||||
) : null}
|
) : null}
|
||||||
|
|
||||||
<RocketLoaderDetector nonce={nonce} />
|
<RocketLoaderDetector />
|
||||||
|
|
||||||
<AdminToolbar context={context} />
|
<AdminToolbar context={context} />
|
||||||
</ClientContexts>
|
</SiteLayoutClientContexts>
|
||||||
</NuqsAdapter>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,33 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import type { CustomizationThemeMode, SiteExternalLinksTarget } from '@gitbook/api';
|
||||||
|
import { ThemeProvider } from 'next-themes';
|
||||||
|
import { NuqsAdapter } from 'nuqs/adapters/next/app';
|
||||||
|
import type React from 'react';
|
||||||
|
import { SearchContextProvider } from '../Search';
|
||||||
|
import { useClearRouterCache } from '../hooks/useClearRouterCache';
|
||||||
|
import { LinkSettingsContext } from '../primitives';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Client component context providers for the site layout.
|
||||||
|
*/
|
||||||
|
export function SiteLayoutClientContexts(props: {
|
||||||
|
forcedTheme: CustomizationThemeMode | undefined;
|
||||||
|
externalLinksTarget: SiteExternalLinksTarget;
|
||||||
|
contextId: string | undefined;
|
||||||
|
children: React.ReactNode;
|
||||||
|
}) {
|
||||||
|
const { children, forcedTheme, externalLinksTarget, contextId } = props;
|
||||||
|
|
||||||
|
useClearRouterCache(contextId);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<NuqsAdapter>
|
||||||
|
<ThemeProvider attribute="class" enableSystem forcedTheme={forcedTheme}>
|
||||||
|
<LinkSettingsContext.Provider value={{ externalLinksTarget }}>
|
||||||
|
<SearchContextProvider>{children}</SearchContextProvider>
|
||||||
|
</LinkSettingsContext.Provider>
|
||||||
|
</ThemeProvider>
|
||||||
|
</NuqsAdapter>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1 +1,2 @@
|
|||||||
export * from './SiteLayout';
|
export * from './SiteLayout';
|
||||||
|
export * from './SiteLayoutClientContexts';
|
||||||
|
|||||||
@@ -25,46 +25,18 @@ export type SitePageProps = {
|
|||||||
* Fetch and render a page.
|
* Fetch and render a page.
|
||||||
*/
|
*/
|
||||||
export async function SitePage(props: SitePageProps) {
|
export async function SitePage(props: SitePageProps) {
|
||||||
const { context, pageTarget } = await getPageDataWithFallback({
|
const {
|
||||||
context: props.context,
|
context,
|
||||||
pagePathParams: props.pageParams,
|
page,
|
||||||
});
|
ancestors,
|
||||||
|
document,
|
||||||
const rawPathname = getPathnameParam(props.pageParams);
|
withFullPageCover,
|
||||||
if (!pageTarget) {
|
withPageFeedback,
|
||||||
const pathname = rawPathname.toLowerCase();
|
withSections,
|
||||||
if (pathname !== rawPathname) {
|
withTopHeader,
|
||||||
// If the pathname was not normalized, redirect to the normalized version
|
} = await getSitePageData(props);
|
||||||
// before trying to resolve the page again
|
|
||||||
redirect(context.linker.toPathInSpace(pathname));
|
|
||||||
} else {
|
|
||||||
notFound();
|
|
||||||
}
|
|
||||||
} else if (getPagePath(context.revision.pages, pageTarget.page) !== rawPathname) {
|
|
||||||
redirect(
|
|
||||||
context.linker.toPathForPage({
|
|
||||||
pages: context.revision.pages,
|
|
||||||
page: pageTarget.page,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const { customization, sections } = context;
|
|
||||||
const { page, ancestors } = pageTarget;
|
|
||||||
|
|
||||||
const withTopHeader = customization.header.preset !== CustomizationHeaderPreset.None;
|
|
||||||
const withFullPageCover = !!(
|
|
||||||
page.cover &&
|
|
||||||
page.layout.cover &&
|
|
||||||
page.layout.coverSize === 'full'
|
|
||||||
);
|
|
||||||
const withPageFeedback = customization.feedback.enabled;
|
|
||||||
|
|
||||||
const withSections = Boolean(sections && sections.list.length > 0);
|
|
||||||
const headerOffset = { sectionsHeader: withSections, topHeader: withTopHeader };
|
const headerOffset = { sectionsHeader: withSections, topHeader: withTopHeader };
|
||||||
|
|
||||||
const document = await getPageDocument(context, page);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PageContextProvider pageId={page.id} spaceId={context.space.id} title={page.title}>
|
<PageContextProvider pageId={page.id} spaceId={context.space.id} title={page.title}>
|
||||||
{withFullPageCover && page.cover ? (
|
{withFullPageCover && page.cover ? (
|
||||||
@@ -156,6 +128,61 @@ export async function generateSitePageMetadata(props: SitePageProps): Promise<Me
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetches all the data required to render the site page.
|
||||||
|
*/
|
||||||
|
export async function getSitePageData(props: SitePageProps) {
|
||||||
|
const { context, pageTarget } = await getPageDataWithFallback({
|
||||||
|
context: props.context,
|
||||||
|
pagePathParams: props.pageParams,
|
||||||
|
});
|
||||||
|
|
||||||
|
const rawPathname = getPathnameParam(props.pageParams);
|
||||||
|
if (!pageTarget) {
|
||||||
|
const pathname = rawPathname.toLowerCase();
|
||||||
|
if (pathname !== rawPathname) {
|
||||||
|
// If the pathname was not normalized, redirect to the normalized version
|
||||||
|
// before trying to resolve the page again
|
||||||
|
redirect(context.linker.toPathInSpace(pathname));
|
||||||
|
} else {
|
||||||
|
notFound();
|
||||||
|
}
|
||||||
|
} else if (getPagePath(context.revision.pages, pageTarget.page) !== rawPathname) {
|
||||||
|
redirect(
|
||||||
|
context.linker.toPathForPage({
|
||||||
|
pages: context.revision.pages,
|
||||||
|
page: pageTarget.page,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const { customization, sections } = context;
|
||||||
|
const { page, ancestors } = pageTarget;
|
||||||
|
|
||||||
|
const withTopHeader = customization.header.preset !== CustomizationHeaderPreset.None;
|
||||||
|
const withFullPageCover = !!(
|
||||||
|
page.cover &&
|
||||||
|
page.layout.cover &&
|
||||||
|
page.layout.coverSize === 'full'
|
||||||
|
);
|
||||||
|
const withPageFeedback = customization.feedback.enabled;
|
||||||
|
|
||||||
|
const withSections = Boolean(sections && sections.list.length > 0);
|
||||||
|
|
||||||
|
const document = await getPageDocument(context, page);
|
||||||
|
|
||||||
|
return {
|
||||||
|
context,
|
||||||
|
page,
|
||||||
|
ancestors,
|
||||||
|
document,
|
||||||
|
withSections,
|
||||||
|
withPageFeedback,
|
||||||
|
withFullPageCover,
|
||||||
|
withTopHeader,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetches the page data matching the requested pathname and fallback to root page when page is not found.
|
* Fetches the page data matching the requested pathname and fallback to root page when page is not found.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -14,12 +14,11 @@ import { tcls } from '@/lib/tailwind';
|
|||||||
|
|
||||||
import type { VisitorAuthClaims } from '@/lib/adaptive';
|
import type { VisitorAuthClaims } from '@/lib/adaptive';
|
||||||
import { GITBOOK_API_PUBLIC_URL, GITBOOK_APP_URL } from '@/lib/env';
|
import { GITBOOK_API_PUBLIC_URL, GITBOOK_APP_URL } from '@/lib/env';
|
||||||
import { AIContextProvider } from '../AI';
|
|
||||||
import { AIChat } from '../AIChat';
|
import { AIChat } from '../AIChat';
|
||||||
import { Announcement } from '../Announcement';
|
import { Announcement } from '../Announcement';
|
||||||
import { SpacesDropdown } from '../Header/SpacesDropdown';
|
import { SpacesDropdown } from '../Header/SpacesDropdown';
|
||||||
import { InsightsProvider } from '../Insights';
|
import { InsightsProvider } from '../Insights';
|
||||||
import { SearchContainer, SearchContextProvider } from '../Search';
|
import { SearchContainer } from '../Search';
|
||||||
import { SiteSectionList, encodeClientSiteSections } from '../SiteSections';
|
import { SiteSectionList, encodeClientSiteSections } from '../SiteSections';
|
||||||
import { CurrentContentProvider } from '../hooks';
|
import { CurrentContentProvider } from '../hooks';
|
||||||
import { SpaceLayoutContextProvider } from './SpaceLayoutContext';
|
import { SpaceLayoutContextProvider } from './SpaceLayoutContext';
|
||||||
@@ -53,8 +52,6 @@ export function SpaceLayout(props: {
|
|||||||
customization.footer.logo ||
|
customization.footer.logo ||
|
||||||
customization.footer.groups?.length;
|
customization.footer.groups?.length;
|
||||||
|
|
||||||
const aiMode = customization.ai?.mode;
|
|
||||||
|
|
||||||
const search = (
|
const search = (
|
||||||
<div className="flex grow items-center gap-2">
|
<div className="flex grow items-center gap-2">
|
||||||
<React.Suspense fallback={null}>
|
<React.Suspense fallback={null}>
|
||||||
@@ -90,92 +87,79 @@ export function SpaceLayout(props: {
|
|||||||
apiHost={GITBOOK_API_PUBLIC_URL}
|
apiHost={GITBOOK_API_PUBLIC_URL}
|
||||||
visitorCookieTrackingEnabled={customization.insights?.trackingCookie}
|
visitorCookieTrackingEnabled={customization.insights?.trackingCookie}
|
||||||
>
|
>
|
||||||
<SearchContextProvider>
|
<Announcement context={context} />
|
||||||
<AIContextProvider
|
<Header withTopHeader={withTopHeader} context={context} search={search} />
|
||||||
aiMode={aiMode}
|
{customization.ai?.mode === CustomizationAIMode.Assistant ? (
|
||||||
trademark={customization.trademark.enabled}
|
<AIChat trademark={customization.trademark.enabled} />
|
||||||
>
|
) : null}
|
||||||
<Announcement context={context} />
|
<div className="scroll-nojump">
|
||||||
<Header
|
<div className="motion-safe:transition-all motion-safe:duration-300 lg:chat-open:mr-80 xl:chat-open:mr-96">
|
||||||
withTopHeader={withTopHeader}
|
<div
|
||||||
context={context}
|
className={tcls(
|
||||||
search={search}
|
'flex',
|
||||||
/>
|
'flex-col',
|
||||||
{aiMode === CustomizationAIMode.Assistant ? (
|
'lg:flex-row',
|
||||||
<AIChat trademark={customization.trademark.enabled} />
|
CONTAINER_STYLE,
|
||||||
) : null}
|
'site-width-wide:max-w-full',
|
||||||
<div className="scroll-nojump">
|
|
||||||
<div className="motion-safe:transition-all motion-safe:duration-300 lg:chat-open:mr-80 xl:chat-open:mr-96">
|
|
||||||
<div
|
|
||||||
className={tcls(
|
|
||||||
'flex',
|
|
||||||
'flex-col',
|
|
||||||
'lg:flex-row',
|
|
||||||
CONTAINER_STYLE,
|
|
||||||
'site-width-wide:max-w-full',
|
|
||||||
|
|
||||||
// Ensure the footer is display below the viewport even if the content is not enough
|
// Ensure the footer is display below the viewport even if the content is not enough
|
||||||
withFooter && 'min-h-[calc(100vh-64px)]',
|
withFooter && 'min-h-[calc(100vh-64px)]',
|
||||||
withTopHeader ? null : 'lg:min-h-screen'
|
withTopHeader ? null : 'lg:min-h-screen'
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<TableOfContents
|
<TableOfContents
|
||||||
context={context}
|
context={context}
|
||||||
header={
|
header={
|
||||||
withTopHeader ? null : (
|
withTopHeader ? null : (
|
||||||
<div
|
<div
|
||||||
className={tcls(
|
className={tcls(
|
||||||
'hidden',
|
'hidden',
|
||||||
'pr-4',
|
'pr-4',
|
||||||
'md:flex',
|
'md:flex',
|
||||||
'grow-0',
|
'grow-0',
|
||||||
'flex-wrap',
|
'flex-wrap',
|
||||||
'dark:shadow-light/1',
|
'dark:shadow-light/1',
|
||||||
'text-base/tight'
|
'text-base/tight'
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<HeaderLogo context={context} />
|
<HeaderLogo context={context} />
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
innerHeader={
|
innerHeader={
|
||||||
// displays the search button and/or the space dropdown in the ToC according to the header/variant settings. E.g if there is no header, the search button will be displayed in the ToC.
|
// displays the search button and/or the space dropdown in the ToC according to the header/variant settings. E.g if there is no header, the search button will be displayed in the ToC.
|
||||||
<>
|
<>
|
||||||
{!withTopHeader && search}
|
{!withTopHeader && search}
|
||||||
{!withTopHeader && withSections && sections && (
|
{!withTopHeader && withSections && sections && (
|
||||||
<SiteSectionList
|
<SiteSectionList
|
||||||
className={tcls('hidden', 'lg:block')}
|
className={tcls('hidden', 'lg:block')}
|
||||||
sections={encodeClientSiteSections(
|
sections={encodeClientSiteSections(
|
||||||
context,
|
context,
|
||||||
sections
|
sections
|
||||||
)}
|
|
||||||
/>
|
|
||||||
)}
|
)}
|
||||||
{isMultiVariants && !sections && (
|
/>
|
||||||
<SpacesDropdown
|
)}
|
||||||
context={context}
|
{isMultiVariants && !sections && (
|
||||||
siteSpace={siteSpace}
|
<SpacesDropdown
|
||||||
siteSpaces={siteSpaces}
|
context={context}
|
||||||
className={tcls(
|
siteSpace={siteSpace}
|
||||||
'w-full',
|
siteSpaces={siteSpaces}
|
||||||
'page-no-toc:hidden',
|
className={tcls(
|
||||||
'page-no-toc:site-header-none:flex'
|
'w-full',
|
||||||
)}
|
'page-no-toc:hidden',
|
||||||
/>
|
'page-no-toc:site-header-none:flex'
|
||||||
)}
|
)}
|
||||||
</>
|
/>
|
||||||
}
|
)}
|
||||||
/>
|
</>
|
||||||
<div className="flex min-w-0 flex-1 flex-col">
|
}
|
||||||
{children}
|
/>
|
||||||
</div>
|
<div className="flex min-w-0 flex-1 flex-col">{children}</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{withFooter ? <Footer context={context} /> : null}
|
{withFooter ? <Footer context={context} /> : null}
|
||||||
</AIContextProvider>
|
|
||||||
</SearchContextProvider>
|
|
||||||
</InsightsProvider>
|
</InsightsProvider>
|
||||||
</CurrentContentProvider>
|
</CurrentContentProvider>
|
||||||
</SpaceLayoutContextProvider>
|
</SpaceLayoutContextProvider>
|
||||||
|
|||||||
@@ -12,3 +12,4 @@ export * from './Tooltip';
|
|||||||
export * from './Popover';
|
export * from './Popover';
|
||||||
export * from './LoadingStateProvider';
|
export * from './LoadingStateProvider';
|
||||||
export * from './HoverCard';
|
export * from './HoverCard';
|
||||||
|
export * from './DropdownMenu';
|
||||||
|
|||||||
@@ -0,0 +1,52 @@
|
|||||||
|
import { type RouteLayoutParams, getDynamicSiteContext, getStaticSiteContext } from '@/app/utils';
|
||||||
|
import type { GitBookSiteContext } from '@/lib/context';
|
||||||
|
import type { GitBookLinker } from '@/lib/links';
|
||||||
|
import { getPagePath } from '@/lib/pages';
|
||||||
|
import { joinPath } from '@/lib/paths';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the context for the embeddable static routes.
|
||||||
|
*/
|
||||||
|
export async function getEmbeddableStaticContext(params: RouteLayoutParams) {
|
||||||
|
const { context: baseContext, visitorAuthClaims } = await getStaticSiteContext(params);
|
||||||
|
const context: GitBookSiteContext = {
|
||||||
|
...baseContext,
|
||||||
|
linker: getEmbeddableLinker(baseContext.linker),
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
context,
|
||||||
|
visitorAuthClaims,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the context for the embeddable dynamic routes.
|
||||||
|
*/
|
||||||
|
export async function getEmbeddableDynamicContext(params: RouteLayoutParams) {
|
||||||
|
const { context: baseContext, visitorAuthClaims } = await getDynamicSiteContext(params);
|
||||||
|
const context: GitBookSiteContext = {
|
||||||
|
...baseContext,
|
||||||
|
linker: getEmbeddableLinker(baseContext.linker),
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
context,
|
||||||
|
visitorAuthClaims,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a linker to generate links in the embeddable context.
|
||||||
|
*/
|
||||||
|
export function getEmbeddableLinker(linker: GitBookLinker): GitBookLinker {
|
||||||
|
return {
|
||||||
|
...linker,
|
||||||
|
toPathForPage({ pages, page, anchor }) {
|
||||||
|
const pagePath = getPagePath(pages, page);
|
||||||
|
const embedPagePath = joinPath('~gitbook/embed/page', pagePath);
|
||||||
|
|
||||||
|
return linker.toPathInSpace(embedPagePath) + (anchor ? `#${anchor}` : '');
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -531,13 +531,24 @@ function encodePathInSiteContent(rawPathname: string): {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If the pathname is an embedded page
|
||||||
|
const embedPage = pathname.match(/^~gitbook\/embed\/page\/(\S+)$/);
|
||||||
|
if (embedPage) {
|
||||||
|
return {
|
||||||
|
pathname: `~gitbook/embed/page/${encodeURIComponent(embedPage[1])}`,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
switch (pathname) {
|
switch (pathname) {
|
||||||
|
case '~gitbook/embed/assistant':
|
||||||
case '~gitbook/icon':
|
case '~gitbook/icon':
|
||||||
return { pathname };
|
return { pathname };
|
||||||
case 'llms.txt':
|
case 'llms.txt':
|
||||||
case 'sitemap.xml':
|
case 'sitemap.xml':
|
||||||
case 'sitemap-pages.xml':
|
case 'sitemap-pages.xml':
|
||||||
case 'robots.txt':
|
case 'robots.txt':
|
||||||
|
case '~gitbook/embed/script.js':
|
||||||
|
case '~gitbook/embed/assistant-demo':
|
||||||
// LLMs.txt, sitemap, sitemap-pages and robots.txt are always static
|
// LLMs.txt, sitemap, sitemap-pages and robots.txt are always static
|
||||||
// as they only depend on the site structure / pages.
|
// as they only depend on the site structure / pages.
|
||||||
return { pathname, routeType: 'static' };
|
return { pathname, routeType: 'static' };
|
||||||
|
|||||||
@@ -2,7 +2,12 @@
|
|||||||
"extends": ["//"],
|
"extends": ["//"],
|
||||||
"tasks": {
|
"tasks": {
|
||||||
"generate": {
|
"generate": {
|
||||||
"outputs": ["public/~gitbook/static/icons/**/*", "public/~gitbook/static/math/**/*"]
|
"outputs": [
|
||||||
|
"public/~gitbook/static/icons/**/*",
|
||||||
|
"public/~gitbook/static/math/**/*",
|
||||||
|
"public/~gitbook/static/embed/**/*"
|
||||||
|
],
|
||||||
|
"dependsOn": ["^generate", "@gitbook/embed#build"]
|
||||||
},
|
},
|
||||||
"typecheck": {
|
"typecheck": {
|
||||||
"dependsOn": ["^typecheck", "generate"]
|
"dependsOn": ["^typecheck", "generate"]
|
||||||
|
|||||||
Reference in New Issue
Block a user