mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-12 14:00:28 +00:00
Compare commits
65 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 278689e0a0 | |||
| 886e204e68 | |||
| c59947ab39 | |||
| 4f0a772a21 | |||
| 903f962673 | |||
| 31d800e48b | |||
| c1c58eb919 | |||
| eec3eed100 | |||
| 99da8df3d1 | |||
| c9ea23919e | |||
| 16292def79 | |||
| 9108c56ca1 | |||
| b011ea0af8 | |||
| d33171b779 | |||
| 6aaeae269e | |||
| e5f0cc8663 | |||
| 9b5f971aa1 | |||
| ff3b708ad3 | |||
| e996904013 | |||
| f32bf1f15d | |||
| 6cda2dd57b | |||
| c60e9ba27f | |||
| 9bc3d504c8 | |||
| b5e4fd75e9 | |||
| a92cb49445 | |||
| 88f64b0d63 | |||
| 844059f9a5 | |||
| eaf2d68308 | |||
| 12bdbf988d | |||
| 29bab79005 | |||
| 8d5de97ddf | |||
| d9b5a898ab | |||
| f127d28675 | |||
| 65c1bdc455 | |||
| 0711a171d4 | |||
| c58c551f9e | |||
| f574858b9b | |||
| 3e1592e16b | |||
| 90604c4c3b | |||
| 9ffc3b606d | |||
| e00c87d3e6 | |||
| bb3ca9c165 | |||
| 8ee9757132 | |||
| 946a463979 | |||
| 7aad9f7ff8 | |||
| 3fe8f7c219 | |||
| 0278a14e8e | |||
| e5366d3a49 | |||
| 38e84ffe1a | |||
| 052e07a936 | |||
| 7e67ebc11d | |||
| c9dea94717 | |||
| 1344754ca9 | |||
| 0f4759fb89 | |||
| 6d77b647a4 | |||
| 5907bd9af4 | |||
| b66d04c9c5 | |||
| 3173d8ec2d | |||
| 31e381035e | |||
| 259074b81f | |||
| 9a2f5b9295 | |||
| 58cd70b0c1 | |||
| 821899a767 | |||
| bfcc119ff3 | |||
| 76c797498e |
@@ -0,0 +1,71 @@
|
|||||||
|
name: 'Deploy cloudflare'
|
||||||
|
description: 'Deploy GitBook to Cloudflare'
|
||||||
|
inputs:
|
||||||
|
opItem:
|
||||||
|
description: '1Password item to load secrets from'
|
||||||
|
required: true
|
||||||
|
opServiceAccount:
|
||||||
|
description: '1Password service account token'
|
||||||
|
required: true
|
||||||
|
apiToken:
|
||||||
|
description: 'Cloudflare API token'
|
||||||
|
required: true
|
||||||
|
accountId:
|
||||||
|
description: 'Cloudflare account ID'
|
||||||
|
required: true
|
||||||
|
environment:
|
||||||
|
description: 'Cloudflare environment to deploy to (staging, production, preview)'
|
||||||
|
required: true
|
||||||
|
deploy:
|
||||||
|
description: 'Deploy as main version for all traffic instead of uploading versions'
|
||||||
|
required: true
|
||||||
|
outputs:
|
||||||
|
deployment-url:
|
||||||
|
description: "Deployment URL"
|
||||||
|
value: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
runs:
|
||||||
|
using: 'composite'
|
||||||
|
steps:
|
||||||
|
- name: Setup Bun
|
||||||
|
uses: ./.github/composite/setup-bun
|
||||||
|
- name: Install dependencies
|
||||||
|
run: bun install --frozen-lockfile
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
PUPPETEER_SKIP_DOWNLOAD: 1
|
||||||
|
- name: Load secret
|
||||||
|
uses: 1password/load-secrets-action@v2
|
||||||
|
env:
|
||||||
|
OP_SERVICE_ACCOUNT_TOKEN: ${{ inputs.opServiceAccount }}
|
||||||
|
GITBOOK_URL: ${{ inputs.opItem }}/GITBOOK_URL
|
||||||
|
GITBOOK_ICONS_URL: ${{ inputs.opItem }}/GITBOOK_ICONS_URL
|
||||||
|
GITBOOK_ICONS_TOKEN: ${{ inputs.opItem }}/GITBOOK_ICONS_TOKEN
|
||||||
|
NEXT_SERVER_ACTIONS_ENCRYPTION_KEY: ${{ inputs.opItem }}/NEXT_SERVER_ACTIONS_ENCRYPTION_KEY
|
||||||
|
GITBOOK_SECRET: ${{ inputs.opItem }}/GITBOOK_SECRET
|
||||||
|
GITBOOK_APP_URL: ${{ inputs.opItem }}/GITBOOK_APP_URL
|
||||||
|
GITBOOK_API_URL: ${{ inputs.opItem }}/GITBOOK_API_URL
|
||||||
|
GITBOOK_API_PUBLIC_URL: ${{ inputs.opItem }}/GITBOOK_API_PUBLIC_URL
|
||||||
|
GITBOOK_API_TOKEN: ${{ inputs.opItem }}/GITBOOK_API_TOKEN
|
||||||
|
GITBOOK_INTEGRATIONS_HOST: ${{ inputs.opItem }}/GITBOOK_INTEGRATIONS_HOST
|
||||||
|
GITBOOK_IMAGE_RESIZE_SIGNING_KEY: ${{ inputs.opItem }}/GITBOOK_IMAGE_RESIZE_SIGNING_KEY
|
||||||
|
GITBOOK_IMAGE_RESIZE_URL: ${{ inputs.opItem }}/GITBOOK_IMAGE_RESIZE_URL
|
||||||
|
GITBOOK_ASSETS_PREFIX: ${{ inputs.opItem }}/GITBOOK_ASSETS_PREFIX
|
||||||
|
- name: Build worker
|
||||||
|
run: bun run turbo build:v2:cloudflare
|
||||||
|
shell: bash
|
||||||
|
- id: deploy
|
||||||
|
name: Deploy to Cloudflare
|
||||||
|
uses: cloudflare/wrangler-action@v3.14.0
|
||||||
|
with:
|
||||||
|
apiToken: ${{ inputs.apiToken }}
|
||||||
|
accountId: ${{ inputs.accountId }}
|
||||||
|
workingDirectory: ./
|
||||||
|
wranglerVersion: '3.112.0'
|
||||||
|
environment: ${{ inputs.environment }}
|
||||||
|
command: ${{ fromJSON(inputs.deploy) == true && 'deploy' || 'versions upload' }} --config ./packages/gitbook-v2/wrangler.toml
|
||||||
|
- name: Outputs
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
DEPLOYMENT_URL: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
run: |
|
||||||
|
echo "URL: ${{ steps.deploy.outputs.deployment-url }}"
|
||||||
@@ -1,15 +1,21 @@
|
|||||||
name: 'Deploy vercel'
|
name: 'Deploy vercel'
|
||||||
description: 'Deploy GitBook to Vercel'
|
description: 'Deploy GitBook to Vercel'
|
||||||
inputs:
|
inputs:
|
||||||
vercel-org:
|
vercelOrg:
|
||||||
description: 'Vercel organization'
|
description: 'Vercel organization'
|
||||||
required: true
|
required: true
|
||||||
vercel-project:
|
vercelProject:
|
||||||
description: 'Vercel project'
|
description: 'Vercel project'
|
||||||
required: true
|
required: true
|
||||||
vercel-token:
|
vercelToken:
|
||||||
description: 'Vercel token'
|
description: 'Vercel token'
|
||||||
required: true
|
required: true
|
||||||
|
opItem:
|
||||||
|
description: '1Password item to load secrets from'
|
||||||
|
required: true
|
||||||
|
opServiceAccount:
|
||||||
|
description: '1Password service account token'
|
||||||
|
required: true
|
||||||
environment:
|
environment:
|
||||||
description: 'Environment to deploy to'
|
description: 'Environment to deploy to'
|
||||||
required: true
|
required: true
|
||||||
@@ -27,31 +33,43 @@ runs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
PUPPETEER_SKIP_DOWNLOAD: 1
|
PUPPETEER_SKIP_DOWNLOAD: 1
|
||||||
- name: Sets env vars for environment
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "VERCEL_ENVIRONMENT=${{ inputs.environment }}" >> $GITHUB_ENV
|
|
||||||
- name: Pull Vercel Environment Information
|
- name: Pull Vercel Environment Information
|
||||||
run: bun run vercel pull --yes --environment=$VERCEL_ENVIRONMENT --token=${{ inputs.vercel-token }}
|
run: bun run vercel pull --yes --environment=${{ inputs.environment }} --token=${{ inputs.vercelToken }}
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
VERCEL_ORG_ID: ${{ inputs.vercel-org }}
|
VERCEL_ORG_ID: ${{ inputs.vercelOrg }}
|
||||||
VERCEL_PROJECT_ID: ${{ inputs.vercel-project }}
|
VERCEL_PROJECT_ID: ${{ inputs.vercelProject }}
|
||||||
|
- name: Load secret
|
||||||
|
uses: 1password/load-secrets-action@v2
|
||||||
|
env:
|
||||||
|
OP_SERVICE_ACCOUNT_TOKEN: ${{ inputs.opServiceAccount }}
|
||||||
|
GITBOOK_URL: ${{ inputs.opItem }}/GITBOOK_URL
|
||||||
|
GITBOOK_ICONS_URL: ${{ inputs.opItem }}/GITBOOK_ICONS_URL
|
||||||
|
GITBOOK_ICONS_TOKEN: ${{ inputs.opItem }}/GITBOOK_ICONS_TOKEN
|
||||||
|
GITBOOK_SECRET: ${{ inputs.opItem }}/GITBOOK_SECRET
|
||||||
|
GITBOOK_APP_URL: ${{ inputs.opItem }}/GITBOOK_APP_URL
|
||||||
|
GITBOOK_API_URL: ${{ inputs.opItem }}/GITBOOK_API_URL
|
||||||
|
GITBOOK_API_PUBLIC_URL: ${{ inputs.opItem }}/GITBOOK_API_PUBLIC_URL
|
||||||
|
GITBOOK_API_TOKEN: ${{ inputs.opItem }}/GITBOOK_API_TOKEN
|
||||||
|
GITBOOK_INTEGRATIONS_HOST: ${{ inputs.opItem }}/GITBOOK_INTEGRATIONS_HOST
|
||||||
|
GITBOOK_IMAGE_RESIZE_SIGNING_KEY: ${{ inputs.opItem }}/GITBOOK_IMAGE_RESIZE_SIGNING_KEY
|
||||||
|
GITBOOK_IMAGE_RESIZE_URL: ${{ inputs.opItem }}/GITBOOK_IMAGE_RESIZE_URL
|
||||||
|
GITBOOK_ASSETS_PREFIX: ${{ inputs.opItem }}/GITBOOK_ASSETS_PREFIX
|
||||||
- name: Build Project Artifacts
|
- name: Build Project Artifacts
|
||||||
run: bun run vercel build --target=$VERCEL_ENVIRONMENT --token=${{ inputs.vercel-token }}
|
run: bun run vercel build --target=${{ inputs.environment }} --token=${{ inputs.vercelToken }}
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
VERCEL_ORG_ID: ${{ inputs.vercel-org }}
|
VERCEL_ORG_ID: ${{ inputs.vercelOrg }}
|
||||||
VERCEL_PROJECT_ID: ${{ inputs.vercel-project }}
|
VERCEL_PROJECT_ID: ${{ inputs.vercelProject }}
|
||||||
- name: Deploy Project Artifacts to Vercel
|
- name: Deploy Project Artifacts to Vercel
|
||||||
id: deploy
|
id: deploy
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
DEPLOYMENT_URL=$(bun run vercel deploy --prebuilt --target=$VERCEL_ENVIRONMENT --token=${{ inputs.vercel-token }})
|
DEPLOYMENT_URL=$(bun run vercel deploy --prebuilt --target=${{ inputs.environment }} --token=${{ inputs.vercelToken }})
|
||||||
echo "deployment-url=$DEPLOYMENT_URL" >> "$GITHUB_OUTPUT"
|
echo "deployment-url=$DEPLOYMENT_URL" >> "$GITHUB_OUTPUT"
|
||||||
env:
|
env:
|
||||||
VERCEL_ORG_ID: ${{ inputs.vercel-org }}
|
VERCEL_ORG_ID: ${{ inputs.vercelOrg }}
|
||||||
VERCEL_PROJECT_ID: ${{ inputs.vercel-project }}
|
VERCEL_PROJECT_ID: ${{ inputs.vercelProject }}
|
||||||
- name: Outputs
|
- name: Outputs
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -7,316 +7,6 @@ on:
|
|||||||
env:
|
env:
|
||||||
NPM_TOKEN_READONLY: ${{ secrets.NPM_TOKEN_READONLY }}
|
NPM_TOKEN_READONLY: ${{ secrets.NPM_TOKEN_READONLY }}
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
|
||||||
name: Deploy to Cloudflare Pages
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
deployments: write
|
|
||||||
issues: write
|
|
||||||
pull-requests: write
|
|
||||||
checks: write
|
|
||||||
statuses: write
|
|
||||||
outputs:
|
|
||||||
deployment-url: ${{ steps.deploy.outputs.deployment-url }}
|
|
||||||
deployment-alias-url: ${{ steps.deploy.outputs.deployment-alias-url }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Bun
|
|
||||||
uses: ./.github/composite/setup-bun
|
|
||||||
- name: Install dependencies
|
|
||||||
run: bun install --frozen-lockfile
|
|
||||||
env:
|
|
||||||
PUPPETEER_SKIP_DOWNLOAD: 1
|
|
||||||
- name: Sets env vars for production
|
|
||||||
run: |
|
|
||||||
echo "SENTRY_ENVIRONMENT=production" >> $GITHUB_ENV
|
|
||||||
echo "GITBOOK_ASSETS_PREFIX=https://static.gitbook.com" >> $GITHUB_ENV
|
|
||||||
if: startsWith(github.ref, 'refs/heads/main')
|
|
||||||
- name: Sets env vars for preview
|
|
||||||
run: |
|
|
||||||
echo "SENTRY_ENVIRONMENT=preview" >> $GITHUB_ENV
|
|
||||||
if: 1 && !startsWith(github.ref, 'refs/heads/main')
|
|
||||||
- name: Build Next.js with next-on-pages
|
|
||||||
run: bun run turbo gitbook#build:cloudflare
|
|
||||||
env:
|
|
||||||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
||||||
NEXT_SERVER_ACTIONS_ENCRYPTION_KEY: ${{ secrets.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY }}
|
|
||||||
SENTRY_ORG: ${{ vars.SENTRY_ORG }}
|
|
||||||
SENTRY_PROJECT: ${{ vars.SENTRY_PROJECT }}
|
|
||||||
SENTRY_DSN: ${{ vars.SENTRY_DSN }}
|
|
||||||
SENTRY_RELEASE: ${{ github.sha }}
|
|
||||||
- id: deploy
|
|
||||||
name: Deploy to Cloudflare
|
|
||||||
uses: cloudflare/wrangler-action@v3.14.0
|
|
||||||
with:
|
|
||||||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
||||||
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
|
||||||
workingDirectory: ./
|
|
||||||
wranglerVersion: '3.82.0'
|
|
||||||
command: pages deploy ./packages/gitbook/.vercel/output/static --project-name=${{ vars.CLOUDFLARE_PROJECT_NAME }} --branch=${{ github.ref == 'refs/heads/main' && 'main' || format('pr{0}', github.event.pull_request.number) }}
|
|
||||||
- name: Outputs
|
|
||||||
run: |
|
|
||||||
echo "URL: ${{ steps.deploy.outputs.deployment-url }}"
|
|
||||||
echo "Alias URL: ${{ steps.deploy.outputs.deployment-alias-url }}"
|
|
||||||
- name: Archive build output
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: build-output
|
|
||||||
path: .vercel/
|
|
||||||
# Until https://github.com/cloudflare/wrangler-action/issues/301 is done
|
|
||||||
- name: Update Deployment Status to Success
|
|
||||||
env:
|
|
||||||
DEPLOYMENT_URL: ${{ steps.deploy.outputs.deployment-url }}
|
|
||||||
run: |
|
|
||||||
curl -X POST \
|
|
||||||
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
|
||||||
-H "Accept: application/vnd.github.v3+json" \
|
|
||||||
-d '{"state": "success", "target_url": "${{ steps.deploy.outputs.deployment-url }}", "description": "Deployed Preview URL for commit", "context": "cloudflare/preview"}' \
|
|
||||||
https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }}
|
|
||||||
deploy-v2-vercel:
|
|
||||||
name: Deploy v2 to Vercel
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
deployments: write
|
|
||||||
issues: write
|
|
||||||
pull-requests: write
|
|
||||||
checks: write
|
|
||||||
statuses: write
|
|
||||||
outputs:
|
|
||||||
deployment-url: ${{ steps.deploy.outputs.deployment-url }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Deploy ${{ github.ref == 'refs/heads/main' && 'production' || 'preview' }}
|
|
||||||
id: deploy
|
|
||||||
uses: ./.github/composite/deploy-vercel
|
|
||||||
with:
|
|
||||||
environment: ${{ github.ref == 'refs/heads/main' && 'production' || 'preview' }}
|
|
||||||
vercel-org: ${{ secrets.VERCEL_ORG_ID }}
|
|
||||||
vercel-project: ${{ secrets.VERCEL_PROJECT_ID }}
|
|
||||||
vercel-token: ${{ secrets.VERCEL_TOKEN }}
|
|
||||||
deploy-v2-vercel-staging:
|
|
||||||
name: Deploy v2 to Vercel (staging)
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
deployments: write
|
|
||||||
issues: write
|
|
||||||
pull-requests: write
|
|
||||||
checks: write
|
|
||||||
statuses: write
|
|
||||||
if: startsWith(github.ref, 'refs/heads/main')
|
|
||||||
outputs:
|
|
||||||
deployment-url: ${{ steps.deploy.outputs.deployment-url }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Deploy staging
|
|
||||||
id: deploy
|
|
||||||
uses: ./.github/composite/deploy-vercel
|
|
||||||
with:
|
|
||||||
environment: staging
|
|
||||||
vercel-org: ${{ secrets.VERCEL_ORG_ID }}
|
|
||||||
vercel-project: ${{ secrets.VERCEL_PROJECT_ID }}
|
|
||||||
vercel-token: ${{ secrets.VERCEL_TOKEN }}
|
|
||||||
deploy-v2-cloudflare:
|
|
||||||
name: Deploy v2 to Cloudflare Worker
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
deployments: write
|
|
||||||
issues: write
|
|
||||||
pull-requests: write
|
|
||||||
checks: write
|
|
||||||
statuses: write
|
|
||||||
outputs:
|
|
||||||
deployment-url: ${{ steps.deploy.outputs.deployment-url }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Bun
|
|
||||||
uses: ./.github/composite/setup-bun
|
|
||||||
- name: Install dependencies
|
|
||||||
run: bun install --frozen-lockfile
|
|
||||||
env:
|
|
||||||
PUPPETEER_SKIP_DOWNLOAD: 1
|
|
||||||
- name: Sets env vars for production
|
|
||||||
run: |
|
|
||||||
echo "SENTRY_ENVIRONMENT=production" >> $GITHUB_ENV
|
|
||||||
echo "GITBOOK_URL=https://open-2c.gitbook.com" >> $GITHUB_ENV
|
|
||||||
echo "GITBOOK_ASSETS_PREFIX=https://static-2c.gitbook.com" >> $GITHUB_ENV
|
|
||||||
if: startsWith(github.ref, 'refs/heads/main')
|
|
||||||
- name: Sets env vars for preview
|
|
||||||
run: |
|
|
||||||
echo "SENTRY_ENVIRONMENT=preview" >> $GITHUB_ENV
|
|
||||||
if: 1 && !startsWith(github.ref, 'refs/heads/main')
|
|
||||||
- name: Build worker
|
|
||||||
run: bun run turbo build:v2:cloudflare
|
|
||||||
env:
|
|
||||||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
||||||
NEXT_SERVER_ACTIONS_ENCRYPTION_KEY: ${{ secrets.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY }}
|
|
||||||
SENTRY_ORG: ${{ vars.SENTRY_ORG }}
|
|
||||||
SENTRY_PROJECT: ${{ vars.SENTRY_PROJECT }}
|
|
||||||
SENTRY_DSN: ${{ vars.SENTRY_DSN }}
|
|
||||||
SENTRY_RELEASE: ${{ github.sha }}
|
|
||||||
- id: deploy
|
|
||||||
name: Deploy to Cloudflare
|
|
||||||
uses: cloudflare/wrangler-action@v3.14.0
|
|
||||||
with:
|
|
||||||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
||||||
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
|
||||||
workingDirectory: ./
|
|
||||||
wranglerVersion: '3.82.0'
|
|
||||||
command: versions upload --config ./packages/gitbook-v2/wrangler.toml
|
|
||||||
- name: Outputs
|
|
||||||
run: |
|
|
||||||
echo "URL: ${{ steps.deploy.outputs.deployment-url }}"
|
|
||||||
comment-deployments:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Comment Deployments
|
|
||||||
if: always() && !startsWith(github.ref, 'refs/heads/main')
|
|
||||||
needs:
|
|
||||||
- deploy
|
|
||||||
- deploy-v2-vercel
|
|
||||||
- deploy-v2-cloudflare
|
|
||||||
steps:
|
|
||||||
- name: Find GitHub Comment
|
|
||||||
uses: peter-evans/find-comment@v3
|
|
||||||
id: fc
|
|
||||||
with:
|
|
||||||
issue-number: ${{ github.event.pull_request.number }}
|
|
||||||
comment-author: 'github-actions[bot]'
|
|
||||||
body-includes: 'Summary of the deployments'
|
|
||||||
|
|
||||||
- name: Create or update GitHub comment
|
|
||||||
uses: peter-evans/create-or-update-comment@v4
|
|
||||||
with:
|
|
||||||
comment-id: ${{ steps.fc.outputs.comment-id }}
|
|
||||||
issue-number: ${{ github.event.pull_request.number }}
|
|
||||||
body: |
|
|
||||||
Summary of the deployments:
|
|
||||||
|
|
||||||
### Version 1 (production)
|
|
||||||
|
|
||||||
| Version | URL | Status |
|
|
||||||
| --- | --- | --- |
|
|
||||||
| Latest commit | [${{ needs.deploy.outputs.deployment-url }}](${{ needs.deploy.outputs.deployment-url }}) | ${{ needs.deploy.result == 'success' && '✅' || '❌' }} |
|
|
||||||
| PR | [${{ needs.deploy.outputs.deployment-alias-url }}](${{ needs.deploy.outputs.deployment-alias-url }}) | ${{ needs.deploy.result == 'success' && '✅' || '❌' }} |
|
|
||||||
|
|
||||||
### Version 2 (experimental)
|
|
||||||
|
|
||||||
| Version | URL | Status |
|
|
||||||
| --- | --- | --- |
|
|
||||||
| Vercel | [${{ needs.deploy-v2-vercel.outputs.deployment-url }}](${{ needs.deploy-v2-vercel.outputs.deployment-url }}) | ${{ needs.deploy-v2-vercel.result == 'success' && '✅' || '❌' }} |
|
|
||||||
| Cloudflare | [${{ needs.deploy-v2-cloudflare.outputs.deployment-url }}](${{ needs.deploy-v2-cloudflare.outputs.deployment-url }}) | ${{ needs.deploy-v2-cloudflare.result == 'success' && '✅' || '❌' }} |
|
|
||||||
|
|
||||||
### Test content
|
|
||||||
|
|
||||||
| Site | v1 | v2 |
|
|
||||||
| --- | --- | --- |
|
|
||||||
| GitBook | [${{ needs.deploy.outputs.deployment-url }}/docs.gitbook.com](${{ needs.deploy.outputs.deployment-url }}/docs.gitbook.com) | [${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/docs.gitbook.com](${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/docs.gitbook.com) |
|
|
||||||
| E2E | [${{ needs.deploy.outputs.deployment-url }}/gitbook.gitbook.io/test-gitbook-open](${{ needs.deploy.outputs.deployment-url }}/gitbook.gitbook.io/test-gitbook-open) | [${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/gitbook.gitbook.io/test-gitbook-open](${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/gitbook.gitbook.io/test-gitbook-open) |
|
|
||||||
edit-mode: replace
|
|
||||||
visual-testing:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Visual Testing
|
|
||||||
needs: deploy
|
|
||||||
timeout-minutes: 6
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Bun
|
|
||||||
uses: ./.github/composite/setup-bun
|
|
||||||
- name: Install dependencies
|
|
||||||
run: bun install --frozen-lockfile
|
|
||||||
- name: Setup Playwright
|
|
||||||
uses: ./.github/actions/setup-playwright
|
|
||||||
- name: Run Playwright tests
|
|
||||||
run: bun e2e
|
|
||||||
env:
|
|
||||||
BASE_URL: ${{ needs.deploy.outputs.deployment-url }}
|
|
||||||
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}
|
|
||||||
visual-testing-v2:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Visual Testing v2
|
|
||||||
needs: deploy-v2-vercel
|
|
||||||
timeout-minutes: 6
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Bun
|
|
||||||
uses: ./.github/composite/setup-bun
|
|
||||||
- name: Install dependencies
|
|
||||||
run: bun install --frozen-lockfile
|
|
||||||
- name: Setup Playwright
|
|
||||||
uses: ./.github/actions/setup-playwright
|
|
||||||
- name: Run Playwright tests
|
|
||||||
run: bun e2e
|
|
||||||
env:
|
|
||||||
BASE_URL: ${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/
|
|
||||||
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}
|
|
||||||
ARGOS_BUILD_NAME: 'v2'
|
|
||||||
visual-testing-customers:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Visual Testing Customers
|
|
||||||
needs: deploy
|
|
||||||
timeout-minutes: 6
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Bun
|
|
||||||
uses: ./.github/composite/setup-bun
|
|
||||||
- name: Install dependencies
|
|
||||||
run: bun install --frozen-lockfile
|
|
||||||
- name: Setup Playwright
|
|
||||||
uses: ./.github/actions/setup-playwright
|
|
||||||
- name: Run Playwright tests
|
|
||||||
run: bun e2e-customers
|
|
||||||
env:
|
|
||||||
BASE_URL: ${{ needs.deploy.outputs.deployment-url }}
|
|
||||||
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}
|
|
||||||
ARGOS_BUILD_NAME: 'customers'
|
|
||||||
visual-testing-customers-v2:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Visual Testing Customers v2
|
|
||||||
needs: deploy-v2-vercel
|
|
||||||
timeout-minutes: 6
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Bun
|
|
||||||
uses: ./.github/composite/setup-bun
|
|
||||||
- name: Install dependencies
|
|
||||||
run: bun install --frozen-lockfile
|
|
||||||
- name: Setup Playwright
|
|
||||||
uses: ./.github/actions/setup-playwright
|
|
||||||
- name: Run Playwright tests
|
|
||||||
run: bun e2e-customers
|
|
||||||
env:
|
|
||||||
BASE_URL: ${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/
|
|
||||||
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}
|
|
||||||
ARGOS_BUILD_NAME: 'customers-v2'
|
|
||||||
pagespeed-testing:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: PageSpeed Testing
|
|
||||||
needs: deploy
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Bun
|
|
||||||
uses: ./.github/composite/setup-bun
|
|
||||||
- name: Install dependencies
|
|
||||||
run: bun install --frozen-lockfile
|
|
||||||
env:
|
|
||||||
PUPPETEER_SKIP_DOWNLOAD: 1
|
|
||||||
- name: Run pagespeed tests
|
|
||||||
run: bun ./packages/gitbook/tests/pagespeed-testing.ts $DEPLOYMENT_URL
|
|
||||||
env:
|
|
||||||
DEPLOYMENT_URL: ${{needs.deploy.outputs.deployment-url}}
|
|
||||||
PAGESPEED_API_KEY: ${{ secrets.PAGESPEED_API_KEY }}
|
|
||||||
format:
|
format:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: Format
|
name: Format
|
||||||
|
|||||||
@@ -0,0 +1,245 @@
|
|||||||
|
name: Preview
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
env:
|
||||||
|
NPM_TOKEN_READONLY: ${{ secrets.NPM_TOKEN_READONLY }}
|
||||||
|
jobs:
|
||||||
|
deploy-v1-cloudflare:
|
||||||
|
name: Deploy v1 to Cloudflare Pages
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment:
|
||||||
|
name: ${{ github.ref == 'refs/heads/main' && '1c-production' || '1c-preview' }}
|
||||||
|
url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
deployments: write
|
||||||
|
issues: write
|
||||||
|
pull-requests: write
|
||||||
|
checks: write
|
||||||
|
statuses: write
|
||||||
|
outputs:
|
||||||
|
deployment-url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
deployment-alias-url: ${{ steps.deploy.outputs.deployment-alias-url }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup Bun
|
||||||
|
uses: ./.github/composite/setup-bun
|
||||||
|
- name: Install dependencies
|
||||||
|
run: bun install --frozen-lockfile
|
||||||
|
env:
|
||||||
|
PUPPETEER_SKIP_DOWNLOAD: 1
|
||||||
|
- name: Sets env vars for production
|
||||||
|
if: github.ref == 'refs/heads/main'
|
||||||
|
run: |
|
||||||
|
echo "GITBOOK_ASSETS_PREFIX=https://static.gitbook.com" >> $GITHUB_ENV
|
||||||
|
- name: Build Next.js with next-on-pages
|
||||||
|
run: bun run turbo gitbook#build:cloudflare
|
||||||
|
env:
|
||||||
|
NEXT_SERVER_ACTIONS_ENCRYPTION_KEY: ${{ secrets.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY }}
|
||||||
|
- id: deploy
|
||||||
|
name: Deploy to Cloudflare
|
||||||
|
uses: cloudflare/wrangler-action@v3.14.0
|
||||||
|
with:
|
||||||
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||||
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||||
|
workingDirectory: ./
|
||||||
|
wranglerVersion: '3.112.0'
|
||||||
|
command: pages deploy ./packages/gitbook/.vercel/output/static --project-name=${{ vars.CLOUDFLARE_PROJECT_NAME }} --branch=${{ github.ref == 'refs/heads/main' && 'main' || format('pr{0}', github.event.pull_request.number) }}
|
||||||
|
- name: Outputs
|
||||||
|
run: |
|
||||||
|
echo "URL: ${{ steps.deploy.outputs.deployment-url }}"
|
||||||
|
echo "Alias URL: ${{ steps.deploy.outputs.deployment-alias-url }}"
|
||||||
|
deploy-v2-vercel:
|
||||||
|
name: Deploy v2 to Vercel (preview)
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment:
|
||||||
|
name: 2v-preview
|
||||||
|
url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
outputs:
|
||||||
|
deployment-url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Deploy to Vercel
|
||||||
|
id: deploy
|
||||||
|
uses: ./.github/composite/deploy-vercel
|
||||||
|
with:
|
||||||
|
environment: preview
|
||||||
|
vercelOrg: ${{ secrets.VERCEL_ORG_ID }}
|
||||||
|
vercelProject: ${{ secrets.VERCEL_PROJECT_ID }}
|
||||||
|
vercelToken: ${{ secrets.VERCEL_TOKEN }}
|
||||||
|
opItem: op://gitbook-open/2v-preview
|
||||||
|
opServiceAccount: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
|
||||||
|
deploy-v2-cloudflare:
|
||||||
|
name: Deploy v2 to Cloudflare Worker (preview)
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment:
|
||||||
|
name: 2c-preview
|
||||||
|
url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
outputs:
|
||||||
|
deployment-url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Deploy to Cloudflare
|
||||||
|
id: deploy
|
||||||
|
uses: ./.github/composite/deploy-cloudflare
|
||||||
|
with:
|
||||||
|
environment: preview
|
||||||
|
deploy: ${{ github.ref == 'refs/heads/main' }}
|
||||||
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||||
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||||
|
opItem: op://gitbook-open/2c-preview
|
||||||
|
opServiceAccount: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
|
||||||
|
- name: Outputs
|
||||||
|
run: |
|
||||||
|
echo "URL: ${{ steps.deploy.outputs.deployment-url }}"
|
||||||
|
comment-deployments:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Comment Deployments (preview)
|
||||||
|
if: always() && !startsWith(github.ref, 'refs/heads/main')
|
||||||
|
needs:
|
||||||
|
- deploy-v1-cloudflare
|
||||||
|
- deploy-v2-vercel
|
||||||
|
- deploy-v2-cloudflare
|
||||||
|
steps:
|
||||||
|
- name: Find GitHub Comment
|
||||||
|
uses: peter-evans/find-comment@v3
|
||||||
|
id: fc
|
||||||
|
with:
|
||||||
|
issue-number: ${{ github.event.pull_request.number }}
|
||||||
|
comment-author: 'github-actions[bot]'
|
||||||
|
body-includes: 'Summary of the deployments'
|
||||||
|
|
||||||
|
- name: Create or update GitHub comment
|
||||||
|
uses: peter-evans/create-or-update-comment@v4
|
||||||
|
with:
|
||||||
|
comment-id: ${{ steps.fc.outputs.comment-id }}
|
||||||
|
issue-number: ${{ github.event.pull_request.number }}
|
||||||
|
body: |
|
||||||
|
Summary of the deployments:
|
||||||
|
|
||||||
|
### Version 1 (production)
|
||||||
|
|
||||||
|
| Version | URL | Status |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| Latest commit | [${{ needs.deploy-v1-cloudflare.outputs.deployment-url }}](${{ needs.deploy-v1-cloudflare.outputs.deployment-url }}) | ${{ needs.deploy-v1-cloudflare.result == 'success' && '✅' || '❌' }} |
|
||||||
|
| PR | [${{ needs.deploy-v1-cloudflare.outputs.deployment-alias-url }}](${{ needs.deploy-v1-cloudflare.outputs.deployment-alias-url }}) | ${{ needs.deploy-v1-cloudflare.result == 'success' && '✅' || '❌' }} |
|
||||||
|
|
||||||
|
### Version 2 (experimental)
|
||||||
|
|
||||||
|
| Version | URL | Status |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| Vercel | [${{ needs.deploy-v2-vercel.outputs.deployment-url }}](${{ needs.deploy-v2-vercel.outputs.deployment-url }}) | ${{ needs.deploy-v2-vercel.result == 'success' && '✅' || '❌' }} |
|
||||||
|
| Cloudflare | [${{ needs.deploy-v2-cloudflare.outputs.deployment-url }}](${{ needs.deploy-v2-cloudflare.outputs.deployment-url }}) | ${{ needs.deploy-v2-cloudflare.result == 'success' && '✅' || '❌' }} |
|
||||||
|
|
||||||
|
### Test content
|
||||||
|
|
||||||
|
| Site | v1 | v2 |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| GitBook | [${{ needs.deploy-v1-cloudflare.outputs.deployment-url }}/docs.gitbook.com](${{ needs.deploy-v1-cloudflare.outputs.deployment-url }}/docs.gitbook.com) | [${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/docs.gitbook.com](${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/docs.gitbook.com) |
|
||||||
|
| E2E | [${{ needs.deploy-v1-cloudflare.outputs.deployment-url }}/gitbook.gitbook.io/test-gitbook-open](${{ needs.deploy-v1-cloudflare.outputs.deployment-url }}/gitbook.gitbook.io/test-gitbook-open) | [${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/gitbook.gitbook.io/test-gitbook-open](${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/gitbook.gitbook.io/test-gitbook-open) |
|
||||||
|
edit-mode: replace
|
||||||
|
visual-testing-v1:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Visual Testing v1
|
||||||
|
needs: deploy-v1-cloudflare
|
||||||
|
timeout-minutes: 8
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup Bun
|
||||||
|
uses: ./.github/composite/setup-bun
|
||||||
|
- name: Install dependencies
|
||||||
|
run: bun install --frozen-lockfile
|
||||||
|
- name: Setup Playwright
|
||||||
|
uses: ./.github/actions/setup-playwright
|
||||||
|
- name: Run Playwright tests
|
||||||
|
run: bun e2e
|
||||||
|
env:
|
||||||
|
BASE_URL: ${{ needs.deploy-v1-cloudflare.outputs.deployment-url }}
|
||||||
|
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}
|
||||||
|
visual-testing-v2-vercel:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Visual Testing v2
|
||||||
|
needs: deploy-v2-vercel
|
||||||
|
timeout-minutes: 10
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup Bun
|
||||||
|
uses: ./.github/composite/setup-bun
|
||||||
|
- name: Install dependencies
|
||||||
|
run: bun install --frozen-lockfile
|
||||||
|
- name: Setup Playwright
|
||||||
|
uses: ./.github/actions/setup-playwright
|
||||||
|
- name: Run Playwright tests
|
||||||
|
run: bun e2e
|
||||||
|
env:
|
||||||
|
BASE_URL: ${{ needs.deploy-v2-vercel.outputs.deployment-url }}
|
||||||
|
SITE_BASE_URL: ${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/
|
||||||
|
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}
|
||||||
|
ARGOS_BUILD_NAME: 'v2-vercel'
|
||||||
|
visual-testing-customers-v1:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Visual Testing Customers v1
|
||||||
|
needs: deploy-v1-cloudflare
|
||||||
|
timeout-minutes: 6
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup Bun
|
||||||
|
uses: ./.github/composite/setup-bun
|
||||||
|
- name: Install dependencies
|
||||||
|
run: bun install --frozen-lockfile
|
||||||
|
- name: Setup Playwright
|
||||||
|
uses: ./.github/actions/setup-playwright
|
||||||
|
- name: Run Playwright tests
|
||||||
|
run: bun e2e-customers
|
||||||
|
env:
|
||||||
|
BASE_URL: ${{ needs.deploy-v1-cloudflare.outputs.deployment-url }}
|
||||||
|
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}
|
||||||
|
ARGOS_BUILD_NAME: 'customers-v1'
|
||||||
|
visual-testing-customers-v2:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Visual Testing Customers v2
|
||||||
|
needs: deploy-v2-vercel
|
||||||
|
timeout-minutes: 6
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup Bun
|
||||||
|
uses: ./.github/composite/setup-bun
|
||||||
|
- name: Install dependencies
|
||||||
|
run: bun install --frozen-lockfile
|
||||||
|
- name: Setup Playwright
|
||||||
|
uses: ./.github/actions/setup-playwright
|
||||||
|
- name: Run Playwright tests
|
||||||
|
run: bun e2e-customers
|
||||||
|
env:
|
||||||
|
BASE_URL: ${{ needs.deploy-v2-vercel.outputs.deployment-url }}
|
||||||
|
SITE_BASE_URL: ${{ needs.deploy-v2-vercel.outputs.deployment-url }}/url/
|
||||||
|
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}
|
||||||
|
ARGOS_BUILD_NAME: 'customers-v2'
|
||||||
|
pagespeed-testing-v1:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: PageSpeed Testing v1
|
||||||
|
needs: deploy-v1-cloudflare
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup Bun
|
||||||
|
uses: ./.github/composite/setup-bun
|
||||||
|
- name: Install dependencies
|
||||||
|
run: bun install --frozen-lockfile
|
||||||
|
env:
|
||||||
|
PUPPETEER_SKIP_DOWNLOAD: 1
|
||||||
|
- name: Run pagespeed tests
|
||||||
|
run: bun ./packages/gitbook/tests/pagespeed-testing.ts
|
||||||
|
env:
|
||||||
|
BASE_URL: ${{needs.deploy-v1-cloudflare.outputs.deployment-url}}
|
||||||
|
PAGESPEED_API_KEY: ${{ secrets.PAGESPEED_API_KEY }}
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
name: Production
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
env:
|
||||||
|
NPM_TOKEN_READONLY: ${{ secrets.NPM_TOKEN_READONLY }}
|
||||||
|
jobs:
|
||||||
|
deploy-v2-vercel:
|
||||||
|
name: Deploy v2 to Vercel (production)
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment:
|
||||||
|
name: 2v-production
|
||||||
|
url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
outputs:
|
||||||
|
deployment-url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Deploy staging
|
||||||
|
id: deploy
|
||||||
|
uses: ./.github/composite/deploy-vercel
|
||||||
|
with:
|
||||||
|
environment: production
|
||||||
|
vercelOrg: ${{ secrets.VERCEL_ORG_ID }}
|
||||||
|
vercelProject: ${{ secrets.VERCEL_PROJECT_ID }}
|
||||||
|
vercelToken: ${{ secrets.VERCEL_TOKEN }}
|
||||||
|
opItem: op://gitbook-open/2v-production
|
||||||
|
opServiceAccount: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
|
||||||
|
deploy-v2-cloudflare:
|
||||||
|
name: Deploy v2 to Cloudflare Worker (production)
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment:
|
||||||
|
name: 2c-production
|
||||||
|
url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
outputs:
|
||||||
|
deployment-url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Deploy
|
||||||
|
id: deploy
|
||||||
|
uses: ./.github/composite/deploy-cloudflare
|
||||||
|
with:
|
||||||
|
environment: production
|
||||||
|
deploy: true
|
||||||
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||||
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||||
|
opItem: op://gitbook-open/2c-production
|
||||||
|
opServiceAccount: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
|
||||||
|
- name: Outputs
|
||||||
|
run: |
|
||||||
|
echo "URL: ${{ steps.deploy.outputs.deployment-url }}"
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
name: Staging
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
env:
|
||||||
|
NPM_TOKEN_READONLY: ${{ secrets.NPM_TOKEN_READONLY }}
|
||||||
|
jobs:
|
||||||
|
deploy-v2-vercel:
|
||||||
|
name: Deploy v2 to Vercel (staging)
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment:
|
||||||
|
name: 2v-staging
|
||||||
|
url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
outputs:
|
||||||
|
deployment-url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Deploy staging
|
||||||
|
id: deploy
|
||||||
|
uses: ./.github/composite/deploy-vercel
|
||||||
|
with:
|
||||||
|
environment: staging
|
||||||
|
vercelOrg: ${{ secrets.VERCEL_ORG_ID }}
|
||||||
|
vercelProject: ${{ secrets.VERCEL_PROJECT_ID }}
|
||||||
|
vercelToken: ${{ secrets.VERCEL_TOKEN }}
|
||||||
|
opItem: op://gitbook-open/2v-staging
|
||||||
|
opServiceAccount: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
|
||||||
|
deploy-v2-cloudflare:
|
||||||
|
name: Deploy v2 to Cloudflare Worker (staging)
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment:
|
||||||
|
name: 2c-staging
|
||||||
|
url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
outputs:
|
||||||
|
deployment-url: ${{ steps.deploy.outputs.deployment-url }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Deploy
|
||||||
|
id: deploy
|
||||||
|
uses: ./.github/composite/deploy-cloudflare
|
||||||
|
with:
|
||||||
|
environment: staging
|
||||||
|
deploy: true
|
||||||
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||||
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||||
|
opItem: op://gitbook-open/2c-staging
|
||||||
|
opServiceAccount: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
|
||||||
|
- name: Outputs
|
||||||
|
run: |
|
||||||
|
echo "URL: ${{ steps.deploy.outputs.deployment-url }}"
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
.next
|
|
||||||
.vercel
|
|
||||||
.open-next
|
|
||||||
|
|
||||||
# Generated
|
|
||||||
packages/emoji-codepoints/index.ts
|
|
||||||
packages/gitbook/public/~gitbook/static/
|
|
||||||
packages/icons/src/data/*.json
|
|
||||||
|
|
||||||
# Build files
|
|
||||||
dist/
|
|
||||||
|
|
||||||
README.md
|
|
||||||
CHANGELOG.md
|
|
||||||
|
|
||||||
# v2
|
|
||||||
packages/gitbook-v2/public/~gitbook/static/
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"printWidth": 100,
|
|
||||||
"singleQuote": true,
|
|
||||||
"tabWidth": 4
|
|
||||||
}
|
|
||||||
Vendored
+2
-1
@@ -11,6 +11,7 @@
|
|||||||
"prettier.enable": false,
|
"prettier.enable": false,
|
||||||
"editor.defaultFormatter": "biomejs.biome",
|
"editor.defaultFormatter": "biomejs.biome",
|
||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
"source.organizeImports": "explicit"
|
"source.organizeImports.biome": "explicit",
|
||||||
|
"source.fixAll.biome": "explicit"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+9
-2
@@ -18,7 +18,9 @@
|
|||||||
"**/.vercel/**/*",
|
"**/.vercel/**/*",
|
||||||
"**/.cache/**/*",
|
"**/.cache/**/*",
|
||||||
"**/.wrangler/**/*",
|
"**/.wrangler/**/*",
|
||||||
"packages/openapi-parser/src/fixtures/**/*"
|
"packages/openapi-parser/src/fixtures/**/*",
|
||||||
|
"packages/emoji-codepoints/index.ts",
|
||||||
|
"packages/icons/src/data/*.json"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"formatter": {
|
"formatter": {
|
||||||
@@ -67,7 +69,12 @@
|
|||||||
"useThrowOnlyError": "error"
|
"useThrowOnlyError": "error"
|
||||||
},
|
},
|
||||||
"suspicious": {
|
"suspicious": {
|
||||||
"noConsole": "warn",
|
"noConsole": {
|
||||||
|
"level": "warn",
|
||||||
|
"options": {
|
||||||
|
"allow": ["assert", "error", "warn"]
|
||||||
|
}
|
||||||
|
},
|
||||||
"noExplicitAny": "warn",
|
"noExplicitAny": "warn",
|
||||||
"noImplicitAnyLet": "warn",
|
"noImplicitAnyLet": "warn",
|
||||||
"noConfusingVoidType": "warn",
|
"noConfusingVoidType": "warn",
|
||||||
|
|||||||
+2
-1
@@ -11,7 +11,8 @@
|
|||||||
"overrides": {
|
"overrides": {
|
||||||
"@codemirror/state": "6.4.1",
|
"@codemirror/state": "6.4.1",
|
||||||
"react": "18.3.1",
|
"react": "18.3.1",
|
||||||
"react-dom": "18.3.1"
|
"react-dom": "18.3.1",
|
||||||
|
"@gitbook/api": "0.99.0"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"typescript": "^5.5.3",
|
"typescript": "^5.5.3",
|
||||||
"wrangler": "^3.109.2"
|
"wrangler": "^3.112.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"generate": "wrangler types --experimental-include-runtime",
|
"generate": "wrangler types --experimental-include-runtime",
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @gitbook/cache-tags
|
# @gitbook/cache-tags
|
||||||
|
|
||||||
|
## 0.2.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- f32bf1f: Export function `getCacheTagForURL` to easily get the cache tag for a URL.
|
||||||
|
|
||||||
## 0.1.0
|
## 0.1.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|||||||
@@ -8,9 +8,9 @@
|
|||||||
"default": "./dist/index.js"
|
"default": "./dist/index.js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"version": "0.1.0",
|
"version": "0.2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@gitbook/api": "0.96.1",
|
"@gitbook/api": "*",
|
||||||
"assert-never": "^1.2.1"
|
"assert-never": "^1.2.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
@@ -111,6 +111,17 @@ export function getCacheTag(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the cache tag for a given URL.
|
||||||
|
*/
|
||||||
|
export function getCacheTagForURL(url: string | URL) {
|
||||||
|
const parsedURL = url instanceof URL ? url : new URL(url);
|
||||||
|
return getCacheTag({
|
||||||
|
tag: 'url',
|
||||||
|
hostname: parsedURL.hostname,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the tags for a computed content source.
|
* Get the tags for a computed content source.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @gitbook/colors
|
# @gitbook/colors
|
||||||
|
|
||||||
|
## 0.3.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- 4f0a772: Override tint lightness if supplied color is out of bounds
|
||||||
|
|
||||||
## 0.2.0
|
## 0.2.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
"default": "./dist/index.js"
|
"default": "./dist/index.js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"version": "0.2.0",
|
"version": "0.3.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"typescript": "^5.5.3"
|
"typescript": "^5.5.3"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -184,6 +184,7 @@ export function colorScale(
|
|||||||
const mixColor = mix?.color ? rgbToOklch(hexToRgbArray(mix.color)) : null;
|
const mixColor = mix?.color ? rgbToOklch(hexToRgbArray(mix.color)) : null;
|
||||||
const foregroundColor = rgbToOklch(hexToRgbArray(foreground));
|
const foregroundColor = rgbToOklch(hexToRgbArray(foreground));
|
||||||
const backgroundColor = rgbToOklch(hexToRgbArray(background));
|
const backgroundColor = rgbToOklch(hexToRgbArray(background));
|
||||||
|
let mapping = darkMode ? colorMixMapping.dark : colorMixMapping.light;
|
||||||
|
|
||||||
if (mixColor && mix?.ratio && mix.ratio > 0) {
|
if (mixColor && mix?.ratio && mix.ratio > 0) {
|
||||||
// If defined, we mix in a (tiny) bit of the mix color with the base color.
|
// If defined, we mix in a (tiny) bit of the mix color with the base color.
|
||||||
@@ -192,7 +193,20 @@ export function colorScale(
|
|||||||
baseColor.H = mix.color === DEFAULT_TINT_COLOR ? baseColor.H : mixColor.H;
|
baseColor.H = mix.color === DEFAULT_TINT_COLOR ? baseColor.H : mixColor.H;
|
||||||
}
|
}
|
||||||
|
|
||||||
const mapping = darkMode ? colorMixMapping.dark : colorMixMapping.light;
|
if (
|
||||||
|
(darkMode && baseColor.L < backgroundColor.L) ||
|
||||||
|
(!darkMode && baseColor.L > backgroundColor.L)
|
||||||
|
) {
|
||||||
|
// If the supplied color is outside of our lightness bounds, use the supplied color's lightness.
|
||||||
|
// This is mostly used to allow darker-than-dark backgrounds for brands that specifically want that look.
|
||||||
|
const difference = (backgroundColor.L - baseColor.L) / backgroundColor.L;
|
||||||
|
backgroundColor.L = baseColor.L;
|
||||||
|
// At the edges of the scale, the subtle lightness changes stop being perceptible. We need to amp up our mapping to still stand out.
|
||||||
|
const amplifier = 1;
|
||||||
|
mapping = mapping.map((step, index) =>
|
||||||
|
index < 9 ? step + step * amplifier * difference : step
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
const result = [];
|
const result = [];
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,18 @@
|
|||||||
# gitbook-v2
|
# gitbook-v2
|
||||||
|
|
||||||
|
## 0.2.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [f32bf1f]
|
||||||
|
- @gitbook/cache-tags@0.2.0
|
||||||
|
|
||||||
|
## 0.2.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- 76c7974: Add route to revalidate cached data
|
||||||
|
|
||||||
## 0.1.2
|
## 0.1.2
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -10,10 +10,21 @@ const nextConfig = {
|
|||||||
|
|
||||||
env: {
|
env: {
|
||||||
BUILD_VERSION: (process.env.GITHUB_SHA ?? '').slice(0, 7),
|
BUILD_VERSION: (process.env.GITHUB_SHA ?? '').slice(0, 7),
|
||||||
GITBOOK_URL: process.env.GITBOOK_URL,
|
|
||||||
GITBOOK_ASSETS_PREFIX: process.env.GITBOOK_ASSETS_PREFIX,
|
// GitBook envs
|
||||||
|
GITBOOK_API_URL: process.env.GITBOOK_API_URL,
|
||||||
|
GITBOOK_APP_URL: process.env.GITBOOK_APP_URL,
|
||||||
|
GITBOOK_INTEGRATIONS_HOST: process.env.GITBOOK_INTEGRATIONS_HOST,
|
||||||
|
GITBOOK_IMAGE_RESIZE_URL: process.env.GITBOOK_IMAGE_RESIZE_URL,
|
||||||
GITBOOK_ICONS_URL: process.env.GITBOOK_ICONS_URL,
|
GITBOOK_ICONS_URL: process.env.GITBOOK_ICONS_URL,
|
||||||
GITBOOK_ICONS_TOKEN: process.env.GITBOOK_ICONS_TOKEN,
|
GITBOOK_ICONS_TOKEN: process.env.GITBOOK_ICONS_TOKEN,
|
||||||
|
GITBOOK_URL: process.env.GITBOOK_URL,
|
||||||
|
GITBOOK_API_TOKEN: process.env.GITBOOK_API_TOKEN,
|
||||||
|
GITBOOK_ASSETS_PREFIX: process.env.GITBOOK_ASSETS_PREFIX,
|
||||||
|
GITBOOK_SECRET: process.env.GITBOOK_SECRET,
|
||||||
|
GITBOOK_IMAGE_RESIZE_SIGNING_KEY: process.env.GITBOOK_IMAGE_RESIZE_SIGNING_KEY,
|
||||||
|
|
||||||
|
// Next.js envs
|
||||||
NEXT_SERVER_ACTIONS_ENCRYPTION_KEY: process.env.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY,
|
NEXT_SERVER_ACTIONS_ENCRYPTION_KEY: process.env.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY,
|
||||||
|
|
||||||
// Used to detect if the app is running in V2 mode
|
// Used to detect if the app is running in V2 mode
|
||||||
|
|||||||
@@ -1,30 +1,10 @@
|
|||||||
// default open-next.config.ts file created by @opennextjs/cloudflare
|
import { defineCloudflareConfig } from '@opennextjs/cloudflare';
|
||||||
|
import d1TagCache from '@opennextjs/cloudflare/d1-tag-cache';
|
||||||
|
import kvIncrementalCache from '@opennextjs/cloudflare/kv-cache';
|
||||||
|
import memoryQueue from '@opennextjs/cloudflare/memory-queue';
|
||||||
|
|
||||||
import cache from '@opennextjs/cloudflare/kvCache';
|
export default defineCloudflareConfig({
|
||||||
|
incrementalCache: kvIncrementalCache,
|
||||||
const config = {
|
queue: memoryQueue,
|
||||||
default: {
|
tagCache: d1TagCache,
|
||||||
override: {
|
});
|
||||||
wrapper: 'cloudflare-node',
|
|
||||||
converter: 'edge',
|
|
||||||
incrementalCache: async () => cache,
|
|
||||||
tagCache: 'dummy',
|
|
||||||
queue: 'dummy',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
middleware: {
|
|
||||||
external: true,
|
|
||||||
override: {
|
|
||||||
wrapper: 'cloudflare-edge',
|
|
||||||
converter: 'edge',
|
|
||||||
proxyExternalRequest: 'fetch',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
dangerous: {
|
|
||||||
enableCacheInterception: false,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default config;
|
|
||||||
|
|||||||
@@ -1,19 +1,20 @@
|
|||||||
{
|
{
|
||||||
"name": "gitbook-v2",
|
"name": "gitbook-v2",
|
||||||
"version": "0.1.2",
|
"version": "0.2.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"next": "^15.2.0",
|
"next": "^15.2.1",
|
||||||
"react": "^19.0.0",
|
"react": "^19.0.0",
|
||||||
"react-dom": "^19.0.0",
|
"react-dom": "^19.0.0",
|
||||||
"@gitbook/api": "0.96.1",
|
"@gitbook/api": "*",
|
||||||
"@gitbook/cache-tags": "workspace:*",
|
"@gitbook/cache-tags": "workspace:*",
|
||||||
"@sindresorhus/fnv1a": "^3.1.0",
|
"@sindresorhus/fnv1a": "^3.1.0",
|
||||||
"server-only": "^0.0.1"
|
"server-only": "^0.0.1",
|
||||||
|
"warn-once": "^0.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"gitbook": "*",
|
"gitbook": "*",
|
||||||
"@opennextjs/cloudflare": "^0.5.3",
|
"@opennextjs/cloudflare": "^0.5.10",
|
||||||
"tailwindcss": "^3.4.0",
|
"tailwindcss": "^3.4.0",
|
||||||
"postcss": "^8"
|
"postcss": "^8"
|
||||||
},
|
},
|
||||||
@@ -25,6 +26,7 @@
|
|||||||
"start": "next start",
|
"start": "next start",
|
||||||
"build:v2:cloudflare": "opennextjs-cloudflare",
|
"build:v2:cloudflare": "opennextjs-cloudflare",
|
||||||
"dev:v2:cloudflare": "wrangler dev --port 8771",
|
"dev:v2:cloudflare": "wrangler dev --port 8771",
|
||||||
"unit": "bun test"
|
"unit": "bun test",
|
||||||
|
"typecheck": "tsc --noEmit"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-4
@@ -16,7 +16,7 @@ export default async function Page(props: PageProps) {
|
|||||||
const context = await getDynamicSiteContext(params);
|
const context = await getDynamicSiteContext(params);
|
||||||
const pathname = getPagePathFromParams(params);
|
const pathname = getPagePathFromParams(params);
|
||||||
|
|
||||||
return <SitePage context={context} pageParams={{ pathname }} redirectOnFallback={true} />;
|
return <SitePage context={context} pageParams={{ pathname }} />;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function generateViewport(props: PageProps): Promise<Viewport> {
|
export async function generateViewport(props: PageProps): Promise<Viewport> {
|
||||||
@@ -25,14 +25,12 @@ export async function generateViewport(props: PageProps): Promise<Viewport> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function generateMetadata(props: PageProps): Promise<Metadata> {
|
export async function generateMetadata(props: PageProps): Promise<Metadata> {
|
||||||
const [params, searchParams] = await Promise.all([props.params, props.searchParams]);
|
const params = await props.params;
|
||||||
const context = await getDynamicSiteContext(params);
|
const context = await getDynamicSiteContext(params);
|
||||||
const pathname = getPagePathFromParams(params);
|
const pathname = getPagePathFromParams(params);
|
||||||
|
|
||||||
return generateSitePageMetadata({
|
return generateSitePageMetadata({
|
||||||
context,
|
context,
|
||||||
pageParams: { pathname },
|
pageParams: { pathname },
|
||||||
redirectOnFallback: true,
|
|
||||||
fallback: !!searchParams.fallback,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -3,8 +3,6 @@ import type { NextRequest } from 'next/server';
|
|||||||
import { serveIcon } from '@/routes/icon';
|
import { serveIcon } from '@/routes/icon';
|
||||||
import { type RouteLayoutParams, getDynamicSiteContext } from '@v2/app/utils';
|
import { type RouteLayoutParams, getDynamicSiteContext } from '@v2/app/utils';
|
||||||
|
|
||||||
export const dynamic = 'force-static';
|
|
||||||
|
|
||||||
export async function GET(
|
export async function GET(
|
||||||
request: NextRequest,
|
request: NextRequest,
|
||||||
{ params }: { params: Promise<RouteLayoutParams> }
|
{ params }: { params: Promise<RouteLayoutParams> }
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
import { PDFRootLayout } from '@/components/PDF';
|
||||||
|
import { type RouteLayoutParams, getDynamicSiteContext } from '@v2/app/utils';
|
||||||
|
|
||||||
|
export default async function RootLayout(props: {
|
||||||
|
params: Promise<RouteLayoutParams>;
|
||||||
|
children: React.ReactNode;
|
||||||
|
}) {
|
||||||
|
const { params, children } = props;
|
||||||
|
const context = await getDynamicSiteContext(await params);
|
||||||
|
|
||||||
|
return <PDFRootLayout context={context}>{children}</PDFRootLayout>;
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
import { PDFPage, generatePDFMetadata } from '@/components/PDF';
|
||||||
|
import { type RouteLayoutParams, getDynamicSiteContext } from '@v2/app/utils';
|
||||||
|
|
||||||
|
export async function generateMetadata({
|
||||||
|
params,
|
||||||
|
}: {
|
||||||
|
params: Promise<RouteLayoutParams>;
|
||||||
|
}) {
|
||||||
|
const context = await getDynamicSiteContext(await params);
|
||||||
|
return generatePDFMetadata(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default async function Page(props: {
|
||||||
|
params: Promise<RouteLayoutParams>;
|
||||||
|
searchParams: Promise<{ [key: string]: string }>;
|
||||||
|
}) {
|
||||||
|
const { params, searchParams } = props;
|
||||||
|
const context = await getDynamicSiteContext(await params);
|
||||||
|
return <PDFPage context={context} searchParams={await searchParams} />;
|
||||||
|
}
|
||||||
@@ -28,7 +28,7 @@ export default async function Page(props: PageProps) {
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
return <SitePage context={context} pageParams={{ pathname }} redirectOnFallback={true} />;
|
return <SitePage context={context} pageParams={{ pathname }} />;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function generateViewport(props: PageProps): Promise<Viewport> {
|
export async function generateViewport(props: PageProps): Promise<Viewport> {
|
||||||
@@ -44,6 +44,5 @@ export async function generateMetadata(props: PageProps): Promise<Metadata> {
|
|||||||
return generateSitePageMetadata({
|
return generateSitePageMetadata({
|
||||||
context,
|
context,
|
||||||
pageParams: { pathname },
|
pageParams: { pathname },
|
||||||
redirectOnFallback: true,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,38 @@
|
|||||||
|
import { type NextRequest, NextResponse } from 'next/server';
|
||||||
|
|
||||||
|
import {
|
||||||
|
GITBOOK_API_PUBLIC_URL,
|
||||||
|
GITBOOK_API_TOKEN,
|
||||||
|
GITBOOK_API_URL,
|
||||||
|
GITBOOK_APP_URL,
|
||||||
|
GITBOOK_ASSETS_URL,
|
||||||
|
GITBOOK_DISABLE_TRACKING,
|
||||||
|
GITBOOK_ICONS_URL,
|
||||||
|
GITBOOK_IMAGE_RESIZE_SIGNING_KEY,
|
||||||
|
GITBOOK_INTEGRATIONS_HOST,
|
||||||
|
GITBOOK_SECRET,
|
||||||
|
GITBOOK_URL,
|
||||||
|
GITBOOK_USER_AGENT,
|
||||||
|
} from '@v2/lib/env';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Output the public environment variables for this deployment
|
||||||
|
*/
|
||||||
|
export async function GET(_req: NextRequest) {
|
||||||
|
return NextResponse.json({
|
||||||
|
GITBOOK_URL,
|
||||||
|
GITBOOK_APP_URL,
|
||||||
|
GITBOOK_API_URL,
|
||||||
|
GITBOOK_API_PUBLIC_URL,
|
||||||
|
GITBOOK_ASSETS_URL,
|
||||||
|
GITBOOK_ICONS_URL,
|
||||||
|
GITBOOK_USER_AGENT,
|
||||||
|
GITBOOK_INTEGRATIONS_HOST,
|
||||||
|
GITBOOK_DISABLE_TRACKING,
|
||||||
|
|
||||||
|
// Secret envs
|
||||||
|
GITBOOK_SECRET: !!GITBOOK_SECRET,
|
||||||
|
GITBOOK_API_TOKEN: !!GITBOOK_API_TOKEN,
|
||||||
|
GITBOOK_IMAGE_RESIZE_SIGNING_KEY: !!GITBOOK_IMAGE_RESIZE_SIGNING_KEY,
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
import { type NextRequest, NextResponse } from 'next/server';
|
||||||
|
|
||||||
|
import { withVerifySignature } from '@v2/lib/routes';
|
||||||
|
import { revalidateTag } from 'next/cache';
|
||||||
|
|
||||||
|
interface JsonBody {
|
||||||
|
tags: string[];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Revalidate cached data based on tags.
|
||||||
|
* The body should be a JSON with { tags: string[] }
|
||||||
|
*/
|
||||||
|
export async function POST(req: NextRequest) {
|
||||||
|
return withVerifySignature<JsonBody>(req, async (body) => {
|
||||||
|
if (!body.tags || !Array.isArray(body.tags)) {
|
||||||
|
return NextResponse.json(
|
||||||
|
{
|
||||||
|
error: 'tags must be an array',
|
||||||
|
},
|
||||||
|
{ status: 400 }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.tags.forEach((tag) => {
|
||||||
|
// biome-ignore lint/suspicious/noConsole: we want to log here
|
||||||
|
console.log(`Revalidating tag: ${tag}`);
|
||||||
|
revalidateTag(tag);
|
||||||
|
});
|
||||||
|
|
||||||
|
return NextResponse.json({
|
||||||
|
success: true,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
import {
|
||||||
|
type GitBookBaseContext,
|
||||||
|
type GitBookSpaceContext,
|
||||||
|
fetchSpaceContextByIds,
|
||||||
|
} from '@v2/lib/context';
|
||||||
|
import { createDataFetcher } from '@v2/lib/data';
|
||||||
|
import { createLinker } from '@v2/lib/links';
|
||||||
|
import { getAPITokenFromMiddleware } from '@v2/lib/middleware';
|
||||||
|
|
||||||
|
export type SpacePDFRouteParams = {
|
||||||
|
spaceId: string;
|
||||||
|
changeRequestId?: string;
|
||||||
|
revisionId?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export async function getSpacePDFContext(
|
||||||
|
params: SpacePDFRouteParams
|
||||||
|
): Promise<GitBookSpaceContext> {
|
||||||
|
const { spaceId } = params;
|
||||||
|
|
||||||
|
const apiToken = await getAPITokenFromMiddleware();
|
||||||
|
|
||||||
|
const linker = createLinker({
|
||||||
|
pathname: getPDFRoutePath(params),
|
||||||
|
});
|
||||||
|
const dataFetcher = createDataFetcher({
|
||||||
|
apiToken: apiToken,
|
||||||
|
});
|
||||||
|
|
||||||
|
const baseContext: GitBookBaseContext = {
|
||||||
|
linker,
|
||||||
|
dataFetcher,
|
||||||
|
};
|
||||||
|
|
||||||
|
return await fetchSpaceContextByIds(baseContext, {
|
||||||
|
space: spaceId,
|
||||||
|
shareKey: undefined,
|
||||||
|
changeRequest: params.changeRequestId,
|
||||||
|
revision: params.revisionId,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function getPDFRoutePath(params: SpacePDFRouteParams) {
|
||||||
|
let path = `/~space/${params.spaceId}`;
|
||||||
|
|
||||||
|
if (params.changeRequestId) {
|
||||||
|
path += `/~/changes/${params.changeRequestId}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (params.revisionId) {
|
||||||
|
path += `/~/revisions/${params.revisionId}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
path += '~gitbook/pdf';
|
||||||
|
|
||||||
|
return path;
|
||||||
|
}
|
||||||
+2
@@ -0,0 +1,2 @@
|
|||||||
|
import RootLayout from '@v2/app/~space/[spaceId]/~gitbook/pdf/layout';
|
||||||
|
export default RootLayout;
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
import PDFPage, { generateMetadata } from '@v2/app/~space/[spaceId]/~gitbook/pdf/page';
|
||||||
|
|
||||||
|
export default PDFPage;
|
||||||
|
export { generateMetadata };
|
||||||
+2
@@ -0,0 +1,2 @@
|
|||||||
|
import RootLayout from '@v2/app/~space/[spaceId]/~gitbook/pdf/layout';
|
||||||
|
export default RootLayout;
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
import PDFPage, { generateMetadata } from '@v2/app/~space/[spaceId]/~gitbook/pdf/page';
|
||||||
|
|
||||||
|
export default PDFPage;
|
||||||
|
export { generateMetadata };
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
import { PDFRootLayout } from '@/components/PDF';
|
||||||
|
import { type SpacePDFRouteParams, getSpacePDFContext } from '@v2/app/~space/[spaceId]/pdf';
|
||||||
|
|
||||||
|
export default async function RootLayout(props: {
|
||||||
|
params: Promise<SpacePDFRouteParams>;
|
||||||
|
children: React.ReactNode;
|
||||||
|
}) {
|
||||||
|
const { params, children } = props;
|
||||||
|
const context = await getSpacePDFContext(await params);
|
||||||
|
|
||||||
|
return <PDFRootLayout context={context}>{children}</PDFRootLayout>;
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
import { PDFPage, generatePDFMetadata } from '@/components/PDF';
|
||||||
|
import { type SpacePDFRouteParams, getSpacePDFContext } from '@v2/app/~space/[spaceId]/pdf';
|
||||||
|
|
||||||
|
export async function generateMetadata({
|
||||||
|
params,
|
||||||
|
}: {
|
||||||
|
params: Promise<SpacePDFRouteParams>;
|
||||||
|
}) {
|
||||||
|
const context = await getSpacePDFContext(await params);
|
||||||
|
return generatePDFMetadata(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default async function Page(props: {
|
||||||
|
params: Promise<SpacePDFRouteParams>;
|
||||||
|
searchParams: Promise<{ [key: string]: string }>;
|
||||||
|
}) {
|
||||||
|
const { params, searchParams } = props;
|
||||||
|
const context = await getSpacePDFContext(await params);
|
||||||
|
return <PDFPage context={context} searchParams={await searchParams} />;
|
||||||
|
}
|
||||||
@@ -13,10 +13,10 @@ import type {
|
|||||||
SiteStructure,
|
SiteStructure,
|
||||||
Space,
|
Space,
|
||||||
} from '@gitbook/api';
|
} from '@gitbook/api';
|
||||||
import { type GitBookDataFetcher, createDataFetcher } from '@v2/lib/data';
|
import { type GitBookDataFetcher, createDataFetcher, throwIfDataError } from '@v2/lib/data';
|
||||||
import { redirect } from 'next/navigation';
|
import { redirect } from 'next/navigation';
|
||||||
import { assert } from 'ts-essentials';
|
import { assert } from 'ts-essentials';
|
||||||
import { GITBOOK_API_TOKEN, GITBOOK_API_URL, GITBOOK_URL } from './env';
|
import { GITBOOK_URL } from './env';
|
||||||
import { type ImageResizer, createImageResizer } from './images';
|
import { type ImageResizer, createImageResizer } from './images';
|
||||||
import { type GitBookSpaceLinker, createLinker } from './links';
|
import { type GitBookSpaceLinker, createLinker } from './links';
|
||||||
|
|
||||||
@@ -113,34 +113,16 @@ export function getBaseContext(input: {
|
|||||||
const urlMode = input.urlMode;
|
const urlMode = input.urlMode;
|
||||||
|
|
||||||
const dataFetcher = createDataFetcher({
|
const dataFetcher = createDataFetcher({
|
||||||
apiToken: input.apiToken ?? GITBOOK_API_TOKEN,
|
apiToken: input.apiToken ?? null,
|
||||||
apiEndpoint: GITBOOK_API_URL,
|
|
||||||
});
|
|
||||||
const gitbookURL = new URL(GITBOOK_URL);
|
|
||||||
|
|
||||||
const linker =
|
|
||||||
urlMode === 'url-host'
|
|
||||||
? createLinker({
|
|
||||||
host: url.host,
|
|
||||||
pathname: url.pathname,
|
|
||||||
})
|
|
||||||
: createLinker({
|
|
||||||
protocol: gitbookURL.protocol,
|
|
||||||
host: gitbookURL.host,
|
|
||||||
pathname: `/url/${url.host}${url.pathname}`,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
if (urlMode === 'url') {
|
const linker = getLinkerForSiteURL({
|
||||||
// Create link in the same format for links to other sites/sections.
|
siteURL: url,
|
||||||
linker.toLinkForContent = (rawURL: string) => {
|
urlMode,
|
||||||
const urlObject = new URL(rawURL);
|
});
|
||||||
return `/url/${urlObject.host}${urlObject.pathname}`;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const imageResizer = createImageResizer({
|
const imageResizer = createImageResizer({
|
||||||
host: urlMode === 'url-host' ? url.host : gitbookURL.host,
|
host: url.host,
|
||||||
|
|
||||||
// To ensure image resizing work for proxied sites,
|
// To ensure image resizing work for proxied sites,
|
||||||
// we serve images from the root of the site.
|
// we serve images from the root of the site.
|
||||||
linker: linker,
|
linker: linker,
|
||||||
@@ -153,6 +135,39 @@ export function getBaseContext(input: {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the linker for a given site URL.
|
||||||
|
*/
|
||||||
|
export function getLinkerForSiteURL(input: {
|
||||||
|
siteURL: URL;
|
||||||
|
urlMode: 'url' | 'url-host';
|
||||||
|
}) {
|
||||||
|
const { siteURL, urlMode } = input;
|
||||||
|
|
||||||
|
const gitbookURL = GITBOOK_URL ? new URL(GITBOOK_URL) : undefined;
|
||||||
|
const linker =
|
||||||
|
urlMode === 'url-host'
|
||||||
|
? createLinker({
|
||||||
|
host: siteURL.host,
|
||||||
|
pathname: siteURL.pathname,
|
||||||
|
})
|
||||||
|
: createLinker({
|
||||||
|
protocol: gitbookURL?.protocol,
|
||||||
|
host: gitbookURL?.host,
|
||||||
|
pathname: `/url/${siteURL.host}${siteURL.pathname}`,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (urlMode === 'url') {
|
||||||
|
// Create link in the same format for links to other sites/sections.
|
||||||
|
linker.toLinkForContent = (rawURL: string) => {
|
||||||
|
const urlObject = new URL(rawURL);
|
||||||
|
return `/url/${urlObject.host}${urlObject.pathname}${urlObject.search}`;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return linker;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetch the context of a site for a given URL and a base context.
|
* Fetch the context of a site for a given URL and a base context.
|
||||||
*/
|
*/
|
||||||
@@ -165,11 +180,13 @@ export async function fetchSiteContextByURL(
|
|||||||
}
|
}
|
||||||
): Promise<GitBookSiteContext> {
|
): Promise<GitBookSiteContext> {
|
||||||
const { dataFetcher } = baseContext;
|
const { dataFetcher } = baseContext;
|
||||||
const data = await dataFetcher.getPublishedContentByUrl({
|
const data = await throwIfDataError(
|
||||||
|
dataFetcher.getPublishedContentByUrl({
|
||||||
url: input.url,
|
url: input.url,
|
||||||
visitorAuthToken: input.visitorAuthToken,
|
visitorAuthToken: input.visitorAuthToken,
|
||||||
redirectOnError: input.redirectOnError,
|
redirectOnError: input.redirectOnError,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
|
|
||||||
return fetchSiteContextByURLLookup(baseContext, data);
|
return fetchSiteContextByURLLookup(baseContext, data);
|
||||||
}
|
}
|
||||||
@@ -226,11 +243,13 @@ export async function fetchSiteContextByIds(
|
|||||||
|
|
||||||
const [{ site: orgSite, structure: siteStructure, customizations, scripts }, spaceContext] =
|
const [{ site: orgSite, structure: siteStructure, customizations, scripts }, spaceContext] =
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
|
throwIfDataError(
|
||||||
dataFetcher.getPublishedContentSite({
|
dataFetcher.getPublishedContentSite({
|
||||||
organizationId: ids.organization,
|
organizationId: ids.organization,
|
||||||
siteId: ids.site,
|
siteId: ids.site,
|
||||||
siteShareKey: ids.shareKey,
|
siteShareKey: ids.shareKey,
|
||||||
}),
|
})
|
||||||
|
),
|
||||||
fetchSpaceContextByIds(baseContext, ids),
|
fetchSpaceContextByIds(baseContext, ids),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
@@ -303,27 +322,33 @@ export async function fetchSpaceContextByIds(
|
|||||||
const { dataFetcher } = baseContext;
|
const { dataFetcher } = baseContext;
|
||||||
|
|
||||||
const [space, changeRequest] = await Promise.all([
|
const [space, changeRequest] = await Promise.all([
|
||||||
|
throwIfDataError(
|
||||||
dataFetcher.getSpace({
|
dataFetcher.getSpace({
|
||||||
spaceId: ids.space,
|
spaceId: ids.space,
|
||||||
shareKey: ids.shareKey,
|
shareKey: ids.shareKey,
|
||||||
}),
|
})
|
||||||
|
),
|
||||||
ids.changeRequest
|
ids.changeRequest
|
||||||
? dataFetcher.getChangeRequest({
|
? throwIfDataError(
|
||||||
|
dataFetcher.getChangeRequest({
|
||||||
spaceId: ids.space,
|
spaceId: ids.space,
|
||||||
changeRequestId: ids.changeRequest,
|
changeRequestId: ids.changeRequest,
|
||||||
})
|
})
|
||||||
|
)
|
||||||
: null,
|
: null,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const revisionId = changeRequest?.revision ?? ids.revision ?? space.revision;
|
const revisionId = changeRequest?.revision ?? ids.revision ?? space.revision;
|
||||||
|
|
||||||
const pages = await dataFetcher.getRevisionPages({
|
const pages = await throwIfDataError(
|
||||||
|
dataFetcher.getRevisionPages({
|
||||||
spaceId: ids.space,
|
spaceId: ids.space,
|
||||||
revisionId,
|
revisionId,
|
||||||
// We only care about the Git metadata when the Git sync is enabled,
|
// We only care about the Git metadata when the Git sync is enabled,
|
||||||
// otherwise we can optimize performance by not fetching it
|
// otherwise we can optimize performance by not fetching it
|
||||||
metadata: !!space.gitSync,
|
metadata: !!space.gitSync,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...baseContext,
|
...baseContext,
|
||||||
|
|||||||
@@ -1,41 +1,40 @@
|
|||||||
import { type ComputedContentSource, GitBookAPI } from '@gitbook/api';
|
import { trace } from '@/lib/tracing';
|
||||||
import { getCacheTag, getComputedContentSourceCacheTags } from '@gitbook/cache-tags';
|
import {
|
||||||
|
type ComputedContentSource,
|
||||||
|
GitBookAPI,
|
||||||
|
type GitBookAPIServiceBinding,
|
||||||
|
} from '@gitbook/api';
|
||||||
|
import {
|
||||||
|
getCacheTag,
|
||||||
|
getCacheTagForURL,
|
||||||
|
getComputedContentSourceCacheTags,
|
||||||
|
} from '@gitbook/cache-tags';
|
||||||
import { GITBOOK_API_TOKEN, GITBOOK_API_URL, GITBOOK_USER_AGENT } from '@v2/lib/env';
|
import { GITBOOK_API_TOKEN, GITBOOK_API_URL, GITBOOK_USER_AGENT } from '@v2/lib/env';
|
||||||
import { unstable_cacheLife as cacheLife, unstable_cacheTag as cacheTag } from 'next/cache';
|
import { unstable_cacheLife as cacheLife, unstable_cacheTag as cacheTag } from 'next/cache';
|
||||||
|
import { wrapDataFetcherError } from './errors';
|
||||||
import type { GitBookDataFetcher } from './types';
|
import type { GitBookDataFetcher } from './types';
|
||||||
|
|
||||||
interface DataFetcherInput {
|
interface DataFetcherInput {
|
||||||
/**
|
|
||||||
* API host to use.
|
|
||||||
*/
|
|
||||||
apiEndpoint: string;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* API token.
|
* API token.
|
||||||
*/
|
*/
|
||||||
apiToken: string | null;
|
apiToken: string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const commonInput: DataFetcherInput = {
|
|
||||||
apiEndpoint: GITBOOK_API_URL,
|
|
||||||
apiToken: GITBOOK_API_TOKEN,
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a data fetcher using an API token.
|
* Create a data fetcher using an API token.
|
||||||
* The data are being cached by Next.js built-in cache.
|
* The data are being cached by Next.js built-in cache.
|
||||||
*/
|
*/
|
||||||
export function createDataFetcher(input: DataFetcherInput = commonInput): GitBookDataFetcher {
|
export function createDataFetcher(
|
||||||
|
input: DataFetcherInput = { apiToken: null }
|
||||||
|
): GitBookDataFetcher {
|
||||||
return {
|
return {
|
||||||
apiEndpoint: input.apiEndpoint,
|
|
||||||
|
|
||||||
async api() {
|
async api() {
|
||||||
return getAPI(input);
|
return apiClient(input);
|
||||||
},
|
},
|
||||||
|
|
||||||
withToken({ apiToken }) {
|
withToken({ apiToken }) {
|
||||||
return createDataFetcher({
|
return createDataFetcher({
|
||||||
...input,
|
|
||||||
apiToken,
|
apiToken,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@@ -44,94 +43,120 @@ export function createDataFetcher(input: DataFetcherInput = commonInput): GitBoo
|
|||||||
// API that are tied to the token
|
// API that are tied to the token
|
||||||
//
|
//
|
||||||
getPublishedContentSite(params) {
|
getPublishedContentSite(params) {
|
||||||
return getPublishedContentSite(input, {
|
return trace('getPublishedContentSite', () =>
|
||||||
|
getPublishedContentSite(input, {
|
||||||
organizationId: params.organizationId,
|
organizationId: params.organizationId,
|
||||||
siteId: params.siteId,
|
siteId: params.siteId,
|
||||||
siteShareKey: params.siteShareKey,
|
siteShareKey: params.siteShareKey,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getSiteRedirectBySource(params) {
|
getSiteRedirectBySource(params) {
|
||||||
return getSiteRedirectBySource(input, {
|
return trace('getSiteRedirectBySource', () =>
|
||||||
|
getSiteRedirectBySource(input, {
|
||||||
organizationId: params.organizationId,
|
organizationId: params.organizationId,
|
||||||
siteId: params.siteId,
|
siteId: params.siteId,
|
||||||
siteShareKey: params.siteShareKey,
|
siteShareKey: params.siteShareKey,
|
||||||
source: params.source,
|
source: params.source,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getRevision(params) {
|
getRevision(params) {
|
||||||
return getRevision(input, {
|
return trace('getRevision', () =>
|
||||||
|
getRevision(input, {
|
||||||
spaceId: params.spaceId,
|
spaceId: params.spaceId,
|
||||||
revisionId: params.revisionId,
|
revisionId: params.revisionId,
|
||||||
metadata: params.metadata,
|
metadata: params.metadata,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getRevisionPages(params) {
|
getRevisionPages(params) {
|
||||||
return getRevisionPages(input, {
|
return trace('getRevisionPages', () =>
|
||||||
|
getRevisionPages(input, {
|
||||||
spaceId: params.spaceId,
|
spaceId: params.spaceId,
|
||||||
revisionId: params.revisionId,
|
revisionId: params.revisionId,
|
||||||
metadata: params.metadata,
|
metadata: params.metadata,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getRevisionFile(params) {
|
getRevisionFile(params) {
|
||||||
return getRevisionFile(input, {
|
return trace('getRevisionFile', () =>
|
||||||
|
getRevisionFile(input, {
|
||||||
spaceId: params.spaceId,
|
spaceId: params.spaceId,
|
||||||
revisionId: params.revisionId,
|
revisionId: params.revisionId,
|
||||||
fileId: params.fileId,
|
fileId: params.fileId,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getRevisionPageByPath(params) {
|
getRevisionPageByPath(params) {
|
||||||
return getRevisionPageByPath(input, {
|
return trace('getRevisionPageByPath', () =>
|
||||||
|
getRevisionPageByPath(input, {
|
||||||
spaceId: params.spaceId,
|
spaceId: params.spaceId,
|
||||||
revisionId: params.revisionId,
|
revisionId: params.revisionId,
|
||||||
path: params.path,
|
path: params.path,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getReusableContent(params) {
|
getReusableContent(params) {
|
||||||
return getReusableContent(input, {
|
return trace('getReusableContent', () =>
|
||||||
|
getReusableContent(input, {
|
||||||
spaceId: params.spaceId,
|
spaceId: params.spaceId,
|
||||||
revisionId: params.revisionId,
|
revisionId: params.revisionId,
|
||||||
reusableContentId: params.reusableContentId,
|
reusableContentId: params.reusableContentId,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getLatestOpenAPISpecVersionContent(params) {
|
getLatestOpenAPISpecVersionContent(params) {
|
||||||
return getLatestOpenAPISpecVersionContent(input, {
|
return trace('getLatestOpenAPISpecVersionContent', () =>
|
||||||
|
getLatestOpenAPISpecVersionContent(input, {
|
||||||
organizationId: params.organizationId,
|
organizationId: params.organizationId,
|
||||||
slug: params.slug,
|
slug: params.slug,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getSpace(params) {
|
getSpace(params) {
|
||||||
return getSpace(input, {
|
return trace('getSpace', () =>
|
||||||
|
getSpace(input, {
|
||||||
spaceId: params.spaceId,
|
spaceId: params.spaceId,
|
||||||
shareKey: params.shareKey,
|
shareKey: params.shareKey,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getChangeRequest(params) {
|
getChangeRequest(params) {
|
||||||
return getChangeRequest(input, {
|
return trace('getChangeRequest', () =>
|
||||||
|
getChangeRequest(input, {
|
||||||
spaceId: params.spaceId,
|
spaceId: params.spaceId,
|
||||||
changeRequestId: params.changeRequestId,
|
changeRequestId: params.changeRequestId,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getDocument(params) {
|
getDocument(params) {
|
||||||
return getDocument(input, {
|
return trace('getDocument', () =>
|
||||||
|
getDocument(input, {
|
||||||
spaceId: params.spaceId,
|
spaceId: params.spaceId,
|
||||||
documentId: params.documentId,
|
documentId: params.documentId,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getComputedDocument(params) {
|
getComputedDocument(params) {
|
||||||
return getComputedDocument(input, {
|
return trace('getComputedDocument', () =>
|
||||||
|
getComputedDocument(input, {
|
||||||
organizationId: params.organizationId,
|
organizationId: params.organizationId,
|
||||||
spaceId: params.spaceId,
|
spaceId: params.spaceId,
|
||||||
source: params.source,
|
source: params.source,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
getEmbedByUrl(params) {
|
getEmbedByUrl(params) {
|
||||||
return getEmbedByUrl(input, {
|
return trace('getEmbedByUrl', () =>
|
||||||
|
getEmbedByUrl(input, {
|
||||||
url: params.url,
|
url: params.url,
|
||||||
spaceId: params.spaceId,
|
spaceId: params.spaceId,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
},
|
},
|
||||||
searchSiteContent(params) {
|
searchSiteContent(params) {
|
||||||
return searchSiteContent(input, params);
|
return trace('searchSiteContent', () => searchSiteContent(input, params));
|
||||||
},
|
},
|
||||||
|
|
||||||
//
|
//
|
||||||
@@ -139,33 +164,33 @@ export function createDataFetcher(input: DataFetcherInput = commonInput): GitBoo
|
|||||||
// where the data is the same for all users
|
// where the data is the same for all users
|
||||||
//
|
//
|
||||||
getUserById(userId) {
|
getUserById(userId) {
|
||||||
return getUserById(commonInput, userId);
|
return trace('getUserById', () => getUserById({ apiToken: null }, { userId }));
|
||||||
},
|
},
|
||||||
getPublishedContentByUrl(params) {
|
getPublishedContentByUrl(params) {
|
||||||
return getPublishedContentByUrl(commonInput, {
|
return trace('getPublishedContentByUrl', () =>
|
||||||
|
getPublishedContentByUrl(
|
||||||
|
{ apiToken: null },
|
||||||
|
{
|
||||||
url: params.url,
|
url: params.url,
|
||||||
visitorAuthToken: params.visitorAuthToken,
|
visitorAuthToken: params.visitorAuthToken,
|
||||||
redirectOnError: params.redirectOnError,
|
redirectOnError: params.redirectOnError,
|
||||||
});
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getUserById(input: DataFetcherInput, userId: string) {
|
async function getUserById(input: DataFetcherInput, params: { userId: string }) {
|
||||||
'use cache';
|
'use cache';
|
||||||
|
|
||||||
cacheLife('days');
|
cacheLife('days');
|
||||||
|
|
||||||
try {
|
return wrapDataFetcherError(async () => {
|
||||||
const res = await getAPI(input).users.getUserById(userId);
|
const api = await apiClient(input);
|
||||||
|
const res = await api.users.getUserById(params.userId);
|
||||||
return res.data;
|
return res.data;
|
||||||
} catch (error) {
|
});
|
||||||
if (checkHasErrorCode(error, 404)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getSpace(
|
async function getSpace(
|
||||||
@@ -185,10 +210,13 @@ async function getSpace(
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
const res = await getAPI(input).spaces.getSpaceById(params.spaceId, {
|
return wrapDataFetcherError(async () => {
|
||||||
|
const api = await apiClient(input);
|
||||||
|
const res = await api.spaces.getSpaceById(params.spaceId, {
|
||||||
shareKey: params.shareKey,
|
shareKey: params.shareKey,
|
||||||
});
|
});
|
||||||
return res.data;
|
return res.data;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getChangeRequest(
|
async function getChangeRequest(
|
||||||
@@ -202,11 +230,9 @@ async function getChangeRequest(
|
|||||||
|
|
||||||
cacheLife('minutes');
|
cacheLife('minutes');
|
||||||
|
|
||||||
try {
|
return wrapDataFetcherError(async () => {
|
||||||
const res = await getAPI(input).spaces.getChangeRequestById(
|
const api = await apiClient(input);
|
||||||
params.spaceId,
|
const res = await api.spaces.getChangeRequestById(params.spaceId, params.changeRequestId);
|
||||||
params.changeRequestId
|
|
||||||
);
|
|
||||||
cacheTag(
|
cacheTag(
|
||||||
getCacheTag({
|
getCacheTag({
|
||||||
tag: 'change-request',
|
tag: 'change-request',
|
||||||
@@ -215,13 +241,7 @@ async function getChangeRequest(
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
return res.data;
|
return res.data;
|
||||||
} catch (error) {
|
});
|
||||||
if (checkHasErrorCode(error, 404)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getRevision(
|
async function getRevision(
|
||||||
@@ -236,10 +256,13 @@ async function getRevision(
|
|||||||
|
|
||||||
cacheLife('max');
|
cacheLife('max');
|
||||||
|
|
||||||
const res = await getAPI(input).spaces.getRevisionById(params.spaceId, params.revisionId, {
|
return wrapDataFetcherError(async () => {
|
||||||
|
const api = await apiClient(input);
|
||||||
|
const res = await api.spaces.getRevisionById(params.spaceId, params.revisionId, {
|
||||||
metadata: params.metadata,
|
metadata: params.metadata,
|
||||||
});
|
});
|
||||||
return res.data;
|
return res.data;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getRevisionPages(
|
async function getRevisionPages(
|
||||||
@@ -254,14 +277,13 @@ async function getRevisionPages(
|
|||||||
|
|
||||||
cacheLife('max');
|
cacheLife('max');
|
||||||
|
|
||||||
const res = await getAPI(input).spaces.listPagesInRevisionById(
|
return wrapDataFetcherError(async () => {
|
||||||
params.spaceId,
|
const api = await apiClient(input);
|
||||||
params.revisionId,
|
const res = await api.spaces.listPagesInRevisionById(params.spaceId, params.revisionId, {
|
||||||
{
|
|
||||||
metadata: params.metadata,
|
metadata: params.metadata,
|
||||||
}
|
});
|
||||||
);
|
|
||||||
return res.data.pages;
|
return res.data.pages;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getRevisionFile(
|
async function getRevisionFile(
|
||||||
@@ -276,20 +298,16 @@ async function getRevisionFile(
|
|||||||
|
|
||||||
cacheLife('max');
|
cacheLife('max');
|
||||||
|
|
||||||
try {
|
return wrapDataFetcherError(async () => {
|
||||||
const res = await getAPI(input).spaces.getFileInRevisionById(
|
const api = await apiClient(input);
|
||||||
|
const res = await api.spaces.getFileInRevisionById(
|
||||||
params.spaceId,
|
params.spaceId,
|
||||||
params.revisionId,
|
params.revisionId,
|
||||||
params.fileId
|
params.fileId,
|
||||||
|
{}
|
||||||
);
|
);
|
||||||
return res.data;
|
return res.data;
|
||||||
} catch (error) {
|
});
|
||||||
if (checkHasErrorCode(error, 404)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getRevisionPageByPath(
|
async function getRevisionPageByPath(
|
||||||
@@ -305,21 +323,17 @@ async function getRevisionPageByPath(
|
|||||||
cacheLife('max');
|
cacheLife('max');
|
||||||
|
|
||||||
const encodedPath = encodeURIComponent(params.path);
|
const encodedPath = encodeURIComponent(params.path);
|
||||||
try {
|
return wrapDataFetcherError(async () => {
|
||||||
const res = await getAPI(input).spaces.getPageInRevisionByPath(
|
const api = await apiClient(input);
|
||||||
|
const res = await api.spaces.getPageInRevisionByPath(
|
||||||
params.spaceId,
|
params.spaceId,
|
||||||
params.revisionId,
|
params.revisionId,
|
||||||
encodedPath
|
encodedPath,
|
||||||
|
{}
|
||||||
);
|
);
|
||||||
|
|
||||||
return res.data;
|
return res.data;
|
||||||
} catch (error) {
|
});
|
||||||
if (checkHasErrorCode(error, 404)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getDocument(
|
async function getDocument(
|
||||||
@@ -333,8 +347,11 @@ async function getDocument(
|
|||||||
|
|
||||||
cacheLife('max');
|
cacheLife('max');
|
||||||
|
|
||||||
const res = await getAPI(input).spaces.getDocumentById(params.spaceId, params.documentId);
|
return wrapDataFetcherError(async () => {
|
||||||
|
const api = await apiClient(input);
|
||||||
|
const res = await api.spaces.getDocumentById(params.spaceId, params.documentId, {});
|
||||||
return res.data;
|
return res.data;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getComputedDocument(
|
async function getComputedDocument(
|
||||||
@@ -359,10 +376,13 @@ async function getComputedDocument(
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
const res = await getAPI(input).spaces.getComputedDocument(params.spaceId, {
|
return wrapDataFetcherError(async () => {
|
||||||
|
const api = await apiClient(input);
|
||||||
|
const res = await api.spaces.getComputedDocument(params.spaceId, {
|
||||||
source: params.source,
|
source: params.source,
|
||||||
});
|
});
|
||||||
return res.data;
|
return res.data;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getReusableContent(
|
async function getReusableContent(
|
||||||
@@ -377,20 +397,15 @@ async function getReusableContent(
|
|||||||
|
|
||||||
cacheLife('max');
|
cacheLife('max');
|
||||||
|
|
||||||
try {
|
return wrapDataFetcherError(async () => {
|
||||||
const res = await getAPI(input).spaces.getReusableContentInRevisionById(
|
const api = await apiClient(input);
|
||||||
|
const res = await api.spaces.getReusableContentInRevisionById(
|
||||||
params.spaceId,
|
params.spaceId,
|
||||||
params.revisionId,
|
params.revisionId,
|
||||||
params.reusableContentId
|
params.reusableContentId
|
||||||
);
|
);
|
||||||
return res.data;
|
return res.data;
|
||||||
} catch (error) {
|
});
|
||||||
if (checkHasErrorCode(error, 404)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getLatestOpenAPISpecVersionContent(
|
async function getLatestOpenAPISpecVersionContent(
|
||||||
@@ -411,19 +426,14 @@ async function getLatestOpenAPISpecVersionContent(
|
|||||||
);
|
);
|
||||||
cacheLife('days');
|
cacheLife('days');
|
||||||
|
|
||||||
try {
|
return wrapDataFetcherError(async () => {
|
||||||
const res = await getAPI(input).orgs.getLatestOpenApiSpecVersionContent(
|
const api = await apiClient(input);
|
||||||
|
const res = await api.orgs.getLatestOpenApiSpecVersionContent(
|
||||||
params.organizationId,
|
params.organizationId,
|
||||||
params.slug
|
params.slug
|
||||||
);
|
);
|
||||||
return res.data;
|
return res.data;
|
||||||
} catch (error) {
|
});
|
||||||
if (checkHasErrorCode(error, 404)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getPublishedContentByUrl(
|
async function getPublishedContentByUrl(
|
||||||
@@ -438,16 +448,12 @@ async function getPublishedContentByUrl(
|
|||||||
|
|
||||||
const { url, visitorAuthToken, redirectOnError } = params;
|
const { url, visitorAuthToken, redirectOnError } = params;
|
||||||
|
|
||||||
const hostname = new URL(url).hostname;
|
cacheTag(getCacheTagForURL(url));
|
||||||
cacheTag(
|
|
||||||
getCacheTag({
|
|
||||||
tag: 'url',
|
|
||||||
hostname,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
cacheLife('days');
|
cacheLife('days');
|
||||||
|
|
||||||
const res = await getAPI(input).urls.getPublishedContentByUrl({
|
return wrapDataFetcherError(async () => {
|
||||||
|
const api = await apiClient(input);
|
||||||
|
const res = await api.urls.getPublishedContentByUrl({
|
||||||
url,
|
url,
|
||||||
visitorAuthToken: visitorAuthToken ?? undefined,
|
visitorAuthToken: visitorAuthToken ?? undefined,
|
||||||
redirectOnError,
|
redirectOnError,
|
||||||
@@ -463,6 +469,7 @@ async function getPublishedContentByUrl(
|
|||||||
}
|
}
|
||||||
|
|
||||||
return res.data;
|
return res.data;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getPublishedContentSite(
|
async function getPublishedContentSite(
|
||||||
@@ -475,22 +482,21 @@ async function getPublishedContentSite(
|
|||||||
) {
|
) {
|
||||||
'use cache';
|
'use cache';
|
||||||
|
|
||||||
|
cacheLife('days');
|
||||||
cacheTag(
|
cacheTag(
|
||||||
getCacheTag({
|
getCacheTag({
|
||||||
tag: 'site',
|
tag: 'site',
|
||||||
site: params.siteId,
|
site: params.siteId,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
cacheLife('days');
|
|
||||||
|
|
||||||
const res = await getAPI(input).orgs.getPublishedContentSite(
|
return wrapDataFetcherError(async () => {
|
||||||
params.organizationId,
|
const api = await apiClient(input);
|
||||||
params.siteId,
|
const res = await api.orgs.getPublishedContentSite(params.organizationId, params.siteId, {
|
||||||
{
|
|
||||||
shareKey: params.siteShareKey,
|
shareKey: params.siteShareKey,
|
||||||
}
|
});
|
||||||
);
|
|
||||||
return res.data;
|
return res.data;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getSiteRedirectBySource(
|
async function getSiteRedirectBySource(
|
||||||
@@ -512,30 +518,15 @@ async function getSiteRedirectBySource(
|
|||||||
);
|
);
|
||||||
cacheLife('days');
|
cacheLife('days');
|
||||||
|
|
||||||
try {
|
return wrapDataFetcherError(async () => {
|
||||||
const res = await getAPI(input).orgs.getSiteRedirectBySource(
|
const api = await apiClient(input);
|
||||||
params.organizationId,
|
const res = await api.orgs.getSiteRedirectBySource(params.organizationId, params.siteId, {
|
||||||
params.siteId,
|
|
||||||
{
|
|
||||||
shareKey: params.siteShareKey,
|
shareKey: params.siteShareKey,
|
||||||
source: params.source,
|
source: params.source,
|
||||||
}
|
});
|
||||||
);
|
|
||||||
|
|
||||||
return res.data;
|
return res.data;
|
||||||
} catch (error) {
|
});
|
||||||
// 422 is returned when the source is invalid
|
|
||||||
// we don't want to throw but just return null
|
|
||||||
if (checkHasErrorCode(error, 422)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (checkHasErrorCode(error, 404)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getEmbedByUrl(
|
async function getEmbedByUrl(
|
||||||
@@ -549,9 +540,11 @@ async function getEmbedByUrl(
|
|||||||
|
|
||||||
cacheLife('weeks');
|
cacheLife('weeks');
|
||||||
|
|
||||||
const api = getAPI(input);
|
return wrapDataFetcherError(async () => {
|
||||||
|
const api = await apiClient(input);
|
||||||
const res = await api.spaces.getEmbedByUrlInSpace(params.spaceId, { url: params.url });
|
const res = await api.spaces.getEmbedByUrlInSpace(params.spaceId, { url: params.url });
|
||||||
return res.data;
|
return res.data;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function searchSiteContent(
|
async function searchSiteContent(
|
||||||
@@ -564,24 +557,54 @@ async function searchSiteContent(
|
|||||||
|
|
||||||
cacheLife('days');
|
cacheLife('days');
|
||||||
|
|
||||||
const res = await getAPI(input).orgs.searchSiteContent(organizationId, siteId, {
|
return wrapDataFetcherError(async () => {
|
||||||
|
const api = await apiClient(input);
|
||||||
|
const res = await api.orgs.searchSiteContent(organizationId, siteId, {
|
||||||
query,
|
query,
|
||||||
...scope,
|
...scope,
|
||||||
});
|
});
|
||||||
return res.data.items;
|
return res.data.items;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
let loggedServiceBinding = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new API client.
|
||||||
|
*/
|
||||||
|
export async function apiClient(input: DataFetcherInput = { apiToken: null }) {
|
||||||
|
const { apiToken } = input;
|
||||||
|
let serviceBinding: GitBookAPIServiceBinding | undefined;
|
||||||
|
|
||||||
|
try {
|
||||||
|
// HACK: This is a workaround to avoid webpack trying to bundle this cloudflare only module
|
||||||
|
// @ts-ignore
|
||||||
|
const { env } = await import(
|
||||||
|
/* webpackIgnore: true */ `${'__cloudflare:workers'.replaceAll('_', '')}`
|
||||||
|
);
|
||||||
|
serviceBinding = env.GITBOOK_API;
|
||||||
|
if (!loggedServiceBinding) {
|
||||||
|
loggedServiceBinding = true;
|
||||||
|
if (serviceBinding) {
|
||||||
|
// biome-ignore lint/suspicious/noConsole: we want to log here
|
||||||
|
console.log(`using service binding for the API (${GITBOOK_API_URL})`);
|
||||||
|
} else {
|
||||||
|
// biome-ignore lint/suspicious/noConsole: we want to log here
|
||||||
|
console.warn(`no service binding for the API (${GITBOOK_API_URL})`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
if (process.env.NODE_ENV === 'production' && !process.env.VERCEL) {
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getAPI(input: DataFetcherInput) {
|
|
||||||
const { apiEndpoint, apiToken } = input;
|
|
||||||
const api = new GitBookAPI({
|
const api = new GitBookAPI({
|
||||||
authToken: apiToken ?? undefined,
|
authToken: apiToken || GITBOOK_API_TOKEN || undefined,
|
||||||
endpoint: apiEndpoint,
|
endpoint: GITBOOK_API_URL,
|
||||||
userAgent: GITBOOK_USER_AGENT,
|
userAgent: GITBOOK_USER_AGENT,
|
||||||
|
serviceBinding,
|
||||||
});
|
});
|
||||||
|
|
||||||
return api;
|
return api;
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkHasErrorCode(error: unknown, code: number) {
|
|
||||||
return error instanceof Error && 'code' in error && error.code === code;
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -0,0 +1,115 @@
|
|||||||
|
import { GitBookAPIError } from '@gitbook/api';
|
||||||
|
import type { DataFetcherErrorData, DataFetcherResponse } from './types';
|
||||||
|
|
||||||
|
export class DataFetcherError extends Error {
|
||||||
|
constructor(
|
||||||
|
message: string,
|
||||||
|
public readonly code: number
|
||||||
|
) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Throw an error if the response contains an error.
|
||||||
|
*/
|
||||||
|
export function throwIfDataError<T>(response: DataFetcherResponse<T>): T;
|
||||||
|
export function throwIfDataError<T>(response: Promise<DataFetcherResponse<T>>): Promise<T>;
|
||||||
|
export function throwIfDataError<T>(
|
||||||
|
response: DataFetcherResponse<T> | Promise<DataFetcherResponse<T>>
|
||||||
|
): T | Promise<T> {
|
||||||
|
if (response instanceof Promise) {
|
||||||
|
return response.then((result) => throwIfDataError(result));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (response.error) {
|
||||||
|
throw new DataFetcherError(response.error.message, response.error.code);
|
||||||
|
}
|
||||||
|
return response.data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the data from the response or null if there is an "Not found" error.
|
||||||
|
*/
|
||||||
|
export function getDataOrNull<T>(
|
||||||
|
response: DataFetcherResponse<T>,
|
||||||
|
ignoreErrors?: number[]
|
||||||
|
): T | null;
|
||||||
|
export function getDataOrNull<T>(
|
||||||
|
response: Promise<DataFetcherResponse<T>>,
|
||||||
|
ignoreErrors?: number[]
|
||||||
|
): Promise<T | null>;
|
||||||
|
export function getDataOrNull<T>(
|
||||||
|
response: DataFetcherResponse<T> | Promise<DataFetcherResponse<T>>,
|
||||||
|
ignoreErrors: number[] = [404]
|
||||||
|
): T | null | Promise<T | null> {
|
||||||
|
if (response instanceof Promise) {
|
||||||
|
return response.then((result) => getDataOrNull(result, ignoreErrors));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (response.error) {
|
||||||
|
if (ignoreErrors.includes(response.error.code)) return null;
|
||||||
|
throw new DataFetcherError(response.error.message, response.error.code);
|
||||||
|
}
|
||||||
|
return response.data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ignore error for an API or data call.
|
||||||
|
*/
|
||||||
|
export async function ignoreDataThrownError<T>(promise: Promise<T>): Promise<T | null> {
|
||||||
|
try {
|
||||||
|
return await promise;
|
||||||
|
} catch (error) {
|
||||||
|
getExposableError(error as Error);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ignore all errors for an API or data call.
|
||||||
|
*/
|
||||||
|
export async function ignoreAllThrownError<T>(promise: Promise<T>): Promise<T | null> {
|
||||||
|
try {
|
||||||
|
return await promise;
|
||||||
|
} catch (error) {
|
||||||
|
console.warn('Ignoring error', error);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wrap an async execution to handle errors and return a DataFetcherResponse.
|
||||||
|
*/
|
||||||
|
export async function wrapDataFetcherError<T>(
|
||||||
|
fn: () => Promise<T>
|
||||||
|
): Promise<DataFetcherResponse<T>> {
|
||||||
|
try {
|
||||||
|
return { data: await fn() };
|
||||||
|
} catch (error) {
|
||||||
|
return {
|
||||||
|
error: getExposableError(error as Error),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a data fetcher exposable error from a JS error.
|
||||||
|
*/
|
||||||
|
export function getExposableError(error: Error): DataFetcherErrorData {
|
||||||
|
if (error instanceof GitBookAPIError) {
|
||||||
|
return {
|
||||||
|
code: error.code,
|
||||||
|
message: error.errorMessage,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (error instanceof DataFetcherError) {
|
||||||
|
return {
|
||||||
|
code: error.code,
|
||||||
|
message: error.message,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
@@ -1,4 +1,6 @@
|
|||||||
export * from './api';
|
export * from './api';
|
||||||
export * from './types';
|
export * from './types';
|
||||||
export * from './utils';
|
export * from './pages';
|
||||||
export * from './urls';
|
export * from './urls';
|
||||||
|
export * from './errors';
|
||||||
|
export * from './lookup';
|
||||||
|
|||||||
@@ -0,0 +1,128 @@
|
|||||||
|
import { race, tryCatch } from '@/lib/async';
|
||||||
|
import { joinPath } from '@/lib/paths';
|
||||||
|
import { trace } from '@/lib/tracing';
|
||||||
|
import type { PublishedSiteContentLookup } from '@gitbook/api';
|
||||||
|
import { apiClient } from './api';
|
||||||
|
import { getExposableError } from './errors';
|
||||||
|
import type { DataFetcherResponse } from './types';
|
||||||
|
import { getURLLookupAlternatives, stripURLSearch } from './urls';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lookup a content by its URL using the GitBook API.
|
||||||
|
* To optimize caching, we try multiple lookup alternatives and return the first one that matches.
|
||||||
|
*/
|
||||||
|
export async function getPublishedContentByURL(input: {
|
||||||
|
url: string;
|
||||||
|
visitorAuthToken: string | null;
|
||||||
|
redirectOnError: boolean;
|
||||||
|
}): Promise<DataFetcherResponse<PublishedSiteContentLookup>> {
|
||||||
|
const lookupURL = new URL(input.url);
|
||||||
|
const url = stripURLSearch(lookupURL);
|
||||||
|
const lookup = getURLLookupAlternatives(url);
|
||||||
|
|
||||||
|
const result = await race(lookup.urls, async (alternative, { signal }) => {
|
||||||
|
const api = await apiClient();
|
||||||
|
|
||||||
|
const callResult = await trace(
|
||||||
|
{
|
||||||
|
operation: 'getPublishedContentByURL',
|
||||||
|
name: alternative.url,
|
||||||
|
},
|
||||||
|
() =>
|
||||||
|
tryCatch(
|
||||||
|
api.urls.getPublishedContentByUrl(
|
||||||
|
{
|
||||||
|
url: alternative.url,
|
||||||
|
visitorAuthToken: input.visitorAuthToken ?? undefined,
|
||||||
|
redirectOnError: input.redirectOnError,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
signal,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
if (callResult.error) {
|
||||||
|
if (alternative.primary) {
|
||||||
|
// We only return an error for the primary alternative (full URL),
|
||||||
|
// as other parts could result in errors due to the URL being incomplete (share links, etc).
|
||||||
|
return { error: callResult.error };
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const {
|
||||||
|
data: { data },
|
||||||
|
} = callResult;
|
||||||
|
|
||||||
|
if ('redirect' in data) {
|
||||||
|
if (alternative.primary) {
|
||||||
|
// Append the path to the redirect URL
|
||||||
|
// because we might have matched a shorter path and the redirect is relative to it
|
||||||
|
if (alternative.extraPath) {
|
||||||
|
if (data.target === 'content') {
|
||||||
|
const redirect = new URL(data.redirect);
|
||||||
|
redirect.pathname = joinPath(redirect.pathname, alternative.extraPath);
|
||||||
|
data.redirect = redirect.toString();
|
||||||
|
} else {
|
||||||
|
const redirect = new URL(data.redirect);
|
||||||
|
if (redirect.searchParams.has('location')) {
|
||||||
|
redirect.searchParams.set(
|
||||||
|
'location',
|
||||||
|
joinPath(
|
||||||
|
redirect.searchParams.get('location') ?? '',
|
||||||
|
alternative.extraPath
|
||||||
|
)
|
||||||
|
);
|
||||||
|
data.redirect = redirect.toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return { data };
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* We use the following criteria to determine if the lookup result is the right one:
|
||||||
|
* - the primary alternative was resolved (because that's the longest or most inclusive path)
|
||||||
|
* - the resolution of the site URL is complete (because we want to resolve the deepest path possible)
|
||||||
|
*
|
||||||
|
* In both cases, the idea is to use the deepest/longest/most inclusive path to resolve the content.
|
||||||
|
*/
|
||||||
|
if (alternative.primary || ('site' in data && data.complete)) {
|
||||||
|
const siteResult: PublishedSiteContentLookup = {
|
||||||
|
...data,
|
||||||
|
changeRequest: data.changeRequest ?? lookup.changeRequest,
|
||||||
|
revision: data.revision ?? lookup.revision,
|
||||||
|
basePath: joinPath(data.basePath, lookup.basePath ?? ''),
|
||||||
|
pathname: joinPath(data.pathname, alternative.extraPath),
|
||||||
|
};
|
||||||
|
return { data: siteResult };
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!result) {
|
||||||
|
return {
|
||||||
|
error: {
|
||||||
|
code: 404,
|
||||||
|
message: 'No content found',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (result.error) {
|
||||||
|
return {
|
||||||
|
error: getExposableError(result.error),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
data: result.data,
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
import type { JSONDocument, RevisionPageDocument, Space } from '@gitbook/api';
|
||||||
|
import { getDataOrNull } from './errors';
|
||||||
|
import type { GitBookDataFetcher } from './types';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the document for a page.
|
||||||
|
*/
|
||||||
|
export async function getPageDocument(
|
||||||
|
dataFetcher: GitBookDataFetcher,
|
||||||
|
space: Space,
|
||||||
|
page: RevisionPageDocument
|
||||||
|
): Promise<JSONDocument | null> {
|
||||||
|
if (page.documentId) {
|
||||||
|
return getDataOrNull(
|
||||||
|
dataFetcher.getDocument({ spaceId: space.id, documentId: page.documentId })
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (page.computed) {
|
||||||
|
return getDataOrNull(
|
||||||
|
dataFetcher.getComputedDocument({
|
||||||
|
organizationId: space.organization,
|
||||||
|
spaceId: space.id,
|
||||||
|
source: page.computed,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
@@ -1,15 +1,25 @@
|
|||||||
import type * as api from '@gitbook/api';
|
import type * as api from '@gitbook/api';
|
||||||
|
|
||||||
|
export type DataFetcherErrorData = {
|
||||||
|
code: number;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type DataFetcherResponse<T> =
|
||||||
|
| {
|
||||||
|
data: T;
|
||||||
|
error?: undefined;
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
error: DataFetcherErrorData;
|
||||||
|
data?: undefined;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generic fetcher for GitBook data.
|
* Generic fetcher for GitBook data.
|
||||||
* It is used between v1 and v2.
|
* It is used between v1 and v2.
|
||||||
*/
|
*/
|
||||||
export interface GitBookDataFetcher {
|
export interface GitBookDataFetcher {
|
||||||
/**
|
|
||||||
* Endpoint of the API.
|
|
||||||
*/
|
|
||||||
apiEndpoint: string;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get an API client for the current context.
|
* Get an API client for the current context.
|
||||||
*/
|
*/
|
||||||
@@ -25,7 +35,7 @@ export interface GitBookDataFetcher {
|
|||||||
/**
|
/**
|
||||||
* Get a user by its ID.
|
* Get a user by its ID.
|
||||||
*/
|
*/
|
||||||
getUserById(userId: string): Promise<api.User | null>;
|
getUserById(userId: string): Promise<DataFetcherResponse<api.User>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a published content by its URL.
|
* Get a published content by its URL.
|
||||||
@@ -34,7 +44,7 @@ export interface GitBookDataFetcher {
|
|||||||
url: string;
|
url: string;
|
||||||
visitorAuthToken: string | null;
|
visitorAuthToken: string | null;
|
||||||
redirectOnError: boolean;
|
redirectOnError: boolean;
|
||||||
}): Promise<api.PublishedSiteContentLookup>;
|
}): Promise<DataFetcherResponse<api.PublishedSiteContentLookup>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a published content site by its organization ID and site ID.
|
* Get a published content site by its organization ID and site ID.
|
||||||
@@ -43,12 +53,14 @@ export interface GitBookDataFetcher {
|
|||||||
organizationId: string;
|
organizationId: string;
|
||||||
siteId: string;
|
siteId: string;
|
||||||
siteShareKey: string | undefined;
|
siteShareKey: string | undefined;
|
||||||
}): Promise<api.PublishedContentSite>;
|
}): Promise<DataFetcherResponse<api.PublishedContentSite>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a space by its ID.
|
* Get a space by its ID.
|
||||||
*/
|
*/
|
||||||
getSpace(params: { spaceId: string; shareKey: string | undefined }): Promise<api.Space>;
|
getSpace(params: { spaceId: string; shareKey: string | undefined }): Promise<
|
||||||
|
DataFetcherResponse<api.Space>
|
||||||
|
>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a change request by its space ID and change request ID.
|
* Get a change request by its space ID and change request ID.
|
||||||
@@ -56,7 +68,7 @@ export interface GitBookDataFetcher {
|
|||||||
getChangeRequest(params: {
|
getChangeRequest(params: {
|
||||||
spaceId: string;
|
spaceId: string;
|
||||||
changeRequestId: string;
|
changeRequestId: string;
|
||||||
}): Promise<api.ChangeRequest | null>;
|
}): Promise<DataFetcherResponse<api.ChangeRequest>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the revision by its space ID and revision ID.
|
* Get the revision by its space ID and revision ID.
|
||||||
@@ -65,7 +77,7 @@ export interface GitBookDataFetcher {
|
|||||||
spaceId: string;
|
spaceId: string;
|
||||||
revisionId: string;
|
revisionId: string;
|
||||||
metadata: boolean;
|
metadata: boolean;
|
||||||
}): Promise<api.Revision>;
|
}): Promise<DataFetcherResponse<api.Revision>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the revision pages by its space ID and revision ID.
|
* Get the revision pages by its space ID and revision ID.
|
||||||
@@ -74,7 +86,7 @@ export interface GitBookDataFetcher {
|
|||||||
spaceId: string;
|
spaceId: string;
|
||||||
revisionId: string;
|
revisionId: string;
|
||||||
metadata: boolean;
|
metadata: boolean;
|
||||||
}): Promise<api.RevisionPage[]>;
|
}): Promise<DataFetcherResponse<api.RevisionPage[]>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a revision file by its space ID, revision ID and file ID.
|
* Get a revision file by its space ID, revision ID and file ID.
|
||||||
@@ -83,7 +95,7 @@ export interface GitBookDataFetcher {
|
|||||||
spaceId: string;
|
spaceId: string;
|
||||||
revisionId: string;
|
revisionId: string;
|
||||||
fileId: string;
|
fileId: string;
|
||||||
}): Promise<api.RevisionFile | null>;
|
}): Promise<DataFetcherResponse<api.RevisionFile>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a revision page by its path.
|
* Get a revision page by its path.
|
||||||
@@ -92,12 +104,14 @@ export interface GitBookDataFetcher {
|
|||||||
spaceId: string;
|
spaceId: string;
|
||||||
revisionId: string;
|
revisionId: string;
|
||||||
path: string;
|
path: string;
|
||||||
}): Promise<api.RevisionPageDocument | api.RevisionPageGroup | null>;
|
}): Promise<DataFetcherResponse<api.RevisionPageDocument | api.RevisionPageGroup>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a document by its space ID and document ID.
|
* Get a document by its space ID and document ID.
|
||||||
*/
|
*/
|
||||||
getDocument(params: { spaceId: string; documentId: string }): Promise<api.JSONDocument>;
|
getDocument(params: { spaceId: string; documentId: string }): Promise<
|
||||||
|
DataFetcherResponse<api.JSONDocument>
|
||||||
|
>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a computed document by its space ID and computed source.
|
* Get a computed document by its space ID and computed source.
|
||||||
@@ -106,7 +120,7 @@ export interface GitBookDataFetcher {
|
|||||||
organizationId: string;
|
organizationId: string;
|
||||||
spaceId: string;
|
spaceId: string;
|
||||||
source: api.ComputedContentSource;
|
source: api.ComputedContentSource;
|
||||||
}): Promise<api.JSONDocument>;
|
}): Promise<DataFetcherResponse<api.JSONDocument>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a reusable content by its space ID, revision ID and reusable content ID.
|
* Get a reusable content by its space ID, revision ID and reusable content ID.
|
||||||
@@ -115,7 +129,7 @@ export interface GitBookDataFetcher {
|
|||||||
spaceId: string;
|
spaceId: string;
|
||||||
revisionId: string;
|
revisionId: string;
|
||||||
reusableContentId: string;
|
reusableContentId: string;
|
||||||
}): Promise<api.RevisionReusableContent | null>;
|
}): Promise<DataFetcherResponse<api.RevisionReusableContent>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the latest OpenAPI spec version content by its organization ID and slug.
|
* Get the latest OpenAPI spec version content by its organization ID and slug.
|
||||||
@@ -123,7 +137,7 @@ export interface GitBookDataFetcher {
|
|||||||
getLatestOpenAPISpecVersionContent(params: {
|
getLatestOpenAPISpecVersionContent(params: {
|
||||||
organizationId: string;
|
organizationId: string;
|
||||||
slug: string;
|
slug: string;
|
||||||
}): Promise<api.OpenAPISpecContent | null>;
|
}): Promise<DataFetcherResponse<api.OpenAPISpecContent>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a site redirect by its source path.
|
* Get a site redirect by its source path.
|
||||||
@@ -133,12 +147,14 @@ export interface GitBookDataFetcher {
|
|||||||
siteId: string;
|
siteId: string;
|
||||||
siteShareKey: string | undefined;
|
siteShareKey: string | undefined;
|
||||||
source: string;
|
source: string;
|
||||||
}): Promise<{ redirect: api.SiteRedirect | null; target: string } | null>;
|
}): Promise<DataFetcherResponse<{ redirect: api.SiteRedirect | null; target: string }>>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get an embed by its URL.
|
* Get an embed by its URL.
|
||||||
*/
|
*/
|
||||||
getEmbedByUrl(params: { url: string; spaceId: string }): Promise<api.Embed>;
|
getEmbedByUrl(params: { url: string; spaceId: string }): Promise<
|
||||||
|
DataFetcherResponse<api.Embed>
|
||||||
|
>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Search content in a site.
|
* Search content in a site.
|
||||||
@@ -153,5 +169,5 @@ export interface GitBookDataFetcher {
|
|||||||
| { mode: 'specific'; siteSpaceIds: string[] };
|
| { mode: 'specific'; siteSpaceIds: string[] };
|
||||||
/** Cache bust to ensure the search results are fresh when the space is updated. */
|
/** Cache bust to ensure the search results are fresh when the space is updated. */
|
||||||
cacheBust?: string;
|
cacheBust?: string;
|
||||||
}): Promise<api.SearchSpaceResult[]>;
|
}): Promise<DataFetcherResponse<api.SearchSpaceResult[]>>;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,121 +1,3 @@
|
|||||||
import { race, tryCatch } from '@/lib/async';
|
|
||||||
import { joinPath } from '@/lib/paths';
|
|
||||||
import { GitBookAPI, type GitBookAPIError, type PublishedSiteContentLookup } from '@gitbook/api';
|
|
||||||
import { GITBOOK_API_TOKEN, GITBOOK_API_URL, GITBOOK_USER_AGENT } from '@v2/lib/env';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Lookup a content by its URL using the GitBook API.
|
|
||||||
* To optimize caching, we try multiple lookup alternatives and return the first one that matches.
|
|
||||||
*/
|
|
||||||
export async function getPublishedContentByURL(input: {
|
|
||||||
url: string;
|
|
||||||
visitorAuthToken: string | null;
|
|
||||||
redirectOnError: boolean;
|
|
||||||
}): Promise<
|
|
||||||
| { data: PublishedSiteContentLookup; error?: undefined }
|
|
||||||
| { data?: undefined; error: Error | GitBookAPIError }
|
|
||||||
> {
|
|
||||||
const lookupURL = new URL(input.url);
|
|
||||||
const url = stripURLSearch(lookupURL);
|
|
||||||
const lookup = getURLLookupAlternatives(url);
|
|
||||||
|
|
||||||
const result = await race(lookup.urls, async (alternative, { signal }) => {
|
|
||||||
const api = new GitBookAPI({
|
|
||||||
authToken: GITBOOK_API_TOKEN ?? undefined,
|
|
||||||
endpoint: GITBOOK_API_URL,
|
|
||||||
userAgent: GITBOOK_USER_AGENT,
|
|
||||||
});
|
|
||||||
|
|
||||||
const callResult = await tryCatch(
|
|
||||||
api.urls.getPublishedContentByUrl(
|
|
||||||
{
|
|
||||||
url: alternative.url,
|
|
||||||
visitorAuthToken: input.visitorAuthToken ?? undefined,
|
|
||||||
redirectOnError: input.redirectOnError,
|
|
||||||
cache: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
signal,
|
|
||||||
headers: {
|
|
||||||
'x-gitbook-force-cache': 'true',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (callResult.error) {
|
|
||||||
if (alternative.primary) {
|
|
||||||
// We only return an error for the primary alternative (full URL),
|
|
||||||
// as other parts could result in errors due to the URL being incomplete (share links, etc).
|
|
||||||
return { error: callResult.error };
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
const {
|
|
||||||
data: { data },
|
|
||||||
} = callResult;
|
|
||||||
|
|
||||||
if ('redirect' in data) {
|
|
||||||
if (alternative.primary) {
|
|
||||||
// Append the path to the redirect URL
|
|
||||||
// because we might have matched a shorter path and the redirect is relative to it
|
|
||||||
if (alternative.extraPath) {
|
|
||||||
if (data.target === 'content') {
|
|
||||||
const redirect = new URL(data.redirect);
|
|
||||||
redirect.pathname = joinPath(redirect.pathname, alternative.extraPath);
|
|
||||||
data.redirect = redirect.toString();
|
|
||||||
} else {
|
|
||||||
const redirect = new URL(data.redirect);
|
|
||||||
if (redirect.searchParams.has('location')) {
|
|
||||||
redirect.searchParams.set(
|
|
||||||
'location',
|
|
||||||
joinPath(
|
|
||||||
redirect.searchParams.get('location') ?? '',
|
|
||||||
alternative.extraPath
|
|
||||||
)
|
|
||||||
);
|
|
||||||
data.redirect = redirect.toString();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return { data };
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* We use the following criteria to determine if the lookup result is the right one:
|
|
||||||
* - the primary alternative was resolved (because that's the longest or most inclusive path)
|
|
||||||
* - the resolution of the site URL is complete (because we want to resolve the deepest path possible)
|
|
||||||
*
|
|
||||||
* In both cases, the idea is to use the deepest/longest/most inclusive path to resolve the content.
|
|
||||||
*/
|
|
||||||
if (alternative.primary || ('site' in data && data.complete)) {
|
|
||||||
const siteResult: PublishedSiteContentLookup = {
|
|
||||||
...data,
|
|
||||||
changeRequest: data.changeRequest ?? lookup.changeRequest,
|
|
||||||
revision: data.revision ?? lookup.revision,
|
|
||||||
basePath: joinPath(data.basePath, lookup.basePath ?? ''),
|
|
||||||
pathname: joinPath(data.pathname, alternative.extraPath),
|
|
||||||
};
|
|
||||||
return { data: siteResult };
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!result) {
|
|
||||||
return {
|
|
||||||
error: new Error('No content found'),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For a given GitBook URL, return a list of alternative URLs that could be matched against to lookup the content.
|
* For a given GitBook URL, return a list of alternative URLs that could be matched against to lookup the content.
|
||||||
* The approach is optimized to aim at reusing cached lookup results as much as possible.
|
* The approach is optimized to aim at reusing cached lookup results as much as possible.
|
||||||
|
|||||||
@@ -1,24 +0,0 @@
|
|||||||
import type { RevisionPageDocument, Space } from '@gitbook/api';
|
|
||||||
import type { GitBookDataFetcher } from './types';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the document for a page.
|
|
||||||
*/
|
|
||||||
export async function getPageDocument(
|
|
||||||
dataFetcher: GitBookDataFetcher,
|
|
||||||
space: Space,
|
|
||||||
page: RevisionPageDocument
|
|
||||||
) {
|
|
||||||
if (page.documentId) {
|
|
||||||
return dataFetcher.getDocument({ spaceId: space.id, documentId: page.documentId });
|
|
||||||
}
|
|
||||||
if (page.computed) {
|
|
||||||
return dataFetcher.getComputedDocument({
|
|
||||||
organizationId: space.organization,
|
|
||||||
spaceId: space.id,
|
|
||||||
source: page.computed,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
/**
|
|
||||||
* Main host on which GitBook is running.
|
|
||||||
*/
|
|
||||||
export const GITBOOK_URL =
|
|
||||||
process.env.NODE_ENV === 'development'
|
|
||||||
? 'http://localhost:3000'
|
|
||||||
: ((process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : undefined) ??
|
|
||||||
process.env.GITBOOK_URL ??
|
|
||||||
'');
|
|
||||||
|
|
||||||
/**
|
|
||||||
* URL at which static assets are served.
|
|
||||||
*/
|
|
||||||
export const GITBOOK_ASSETS_URL =
|
|
||||||
process.env.NODE_ENV === 'development'
|
|
||||||
? 'http://localhost:3000'
|
|
||||||
: (process.env.GITBOOK_ASSETS_PREFIX ?? GITBOOK_URL);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* GitBook app URL.
|
|
||||||
*/
|
|
||||||
export const GITBOOK_APP_URL = process.env.NEXT_PUBLIC_GITBOOK_APP_URL ?? 'https://app.gitbook.com';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Default GitBook API URL endpoint.
|
|
||||||
*/
|
|
||||||
export const GITBOOK_API_URL = process.env.GITBOOK_API_URL ?? 'https://api.gitbook.com';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Default GitBook API token.
|
|
||||||
* It can be use to avoid rate-limiting.
|
|
||||||
*/
|
|
||||||
export const GITBOOK_API_TOKEN = process.env.GITBOOK_API_TOKEN ?? null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* User agent to use for API requests.
|
|
||||||
*/
|
|
||||||
export const GITBOOK_USER_AGENT = process.env.GITBOOK_USER_AGENT ?? 'GitBook-Open/2.0.0';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Whether to disable tracking of events into site insights.
|
|
||||||
* This is used to disable tracking in development mode.
|
|
||||||
*/
|
|
||||||
export const GITBOOK_DISABLE_TRACKING = Boolean(
|
|
||||||
!!process.env.GITBOOK_DISABLE_TRACKING || process.env.NODE_ENV !== 'production'
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Hostname serving the integrations.
|
|
||||||
*/
|
|
||||||
export const GITBOOK_INTEGRATIONS_HOST =
|
|
||||||
process.env.GITBOOK_INTEGRATIONS_HOST ?? 'integrations.gitbook.com';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Endpoint to use for resizing images.
|
|
||||||
* It should be a Cloudflare domain with image resizing enabled.
|
|
||||||
*/
|
|
||||||
export const GITBOOK_IMAGE_RESIZE_URL = process.env.GITBOOK_IMAGE_RESIZE_URL ?? null;
|
|
||||||
export const GITBOOK_IMAGE_RESIZE_SIGNING_KEY =
|
|
||||||
process.env.GITBOOK_IMAGE_RESIZE_SIGNING_KEY ?? null;
|
|
||||||
+89
@@ -0,0 +1,89 @@
|
|||||||
|
import 'server-only';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Support both Cloudflare and Vercel, environment variables can be bundled.
|
||||||
|
* To avoid leaking them on the client-side, they should be accessed from this file
|
||||||
|
* and not from the `process.env` object.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Main host on which GitBook is running.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_URL =
|
||||||
|
process.env.NODE_ENV === 'development'
|
||||||
|
? 'http://localhost:3000'
|
||||||
|
: (process.env.GITBOOK_URL ??
|
||||||
|
(process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : undefined) ??
|
||||||
|
'');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* URL at which static assets are served.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_ASSETS_URL =
|
||||||
|
process.env.NODE_ENV === 'development'
|
||||||
|
? 'http://localhost:3000'
|
||||||
|
: process.env.GITBOOK_ASSETS_PREFIX;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GitBook app URL.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_APP_URL = process.env.GITBOOK_APP_URL || 'https://app.gitbook.com';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default GitBook API URL endpoint.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_API_URL = process.env.GITBOOK_API_URL || 'https://api.gitbook.com';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default GitBook API URL endpoint, to be shared with the client.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_API_PUBLIC_URL = process.env.GITBOOK_API_PUBLIC_URL || GITBOOK_API_URL;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default GitBook API token.
|
||||||
|
* It can be use to avoid rate-limiting.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_API_TOKEN = process.env.GITBOOK_API_TOKEN || null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* User agent to use for API requests.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_USER_AGENT = process.env.GITBOOK_USER_AGENT || 'GitBook-Open/2.0.0';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether to disable tracking of events into site insights.
|
||||||
|
* This is used to disable tracking in development mode.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_DISABLE_TRACKING = Boolean(
|
||||||
|
!!process.env.GITBOOK_DISABLE_TRACKING || process.env.NODE_ENV !== 'production'
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Hostname serving the integrations.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_INTEGRATIONS_HOST =
|
||||||
|
process.env.GITBOOK_INTEGRATIONS_HOST || 'integrations.gitbook.com';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Endpoint to use for resizing images.
|
||||||
|
* It should be a Cloudflare domain with image resizing enabled.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_IMAGE_RESIZE_URL = process.env.GITBOOK_IMAGE_RESIZE_URL ?? null;
|
||||||
|
export const GITBOOK_IMAGE_RESIZE_SIGNING_KEY =
|
||||||
|
process.env.GITBOOK_IMAGE_RESIZE_SIGNING_KEY ?? null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Endpoint where icons are served.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_ICONS_URL =
|
||||||
|
process.env.GITBOOK_ICONS_URL || `${GITBOOK_ASSETS_URL || ''}/~gitbook/static/icons`;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Token passed to the icons endpoint.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_ICONS_TOKEN = process.env.GITBOOK_ICONS_TOKEN;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Secret used to validate requests from the GitBook app.
|
||||||
|
*/
|
||||||
|
export const GITBOOK_SECRET = process.env.GITBOOK_SECRET ?? null;
|
||||||
+2
@@ -0,0 +1,2 @@
|
|||||||
|
export * from './globals';
|
||||||
|
export * from './urls';
|
||||||
+45
@@ -0,0 +1,45 @@
|
|||||||
|
import { GITBOOK_ASSETS_URL, GITBOOK_URL } from './globals';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if the URL is a GitBook host URL.
|
||||||
|
*/
|
||||||
|
export function isGitBookHostURL(input: URL | string): boolean {
|
||||||
|
const url = typeof input === 'string' ? new URL(input) : input;
|
||||||
|
|
||||||
|
if (!GITBOOK_URL) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const gitbookHost = new URL(GITBOOK_URL).host;
|
||||||
|
|
||||||
|
if (url.host === gitbookHost) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle the Cloudflare preview URLs that are prefixed with a random hash
|
||||||
|
// https://developers.cloudflare.com/workers/configuration/previews/
|
||||||
|
if (url.host.endsWith(`-${gitbookHost}`)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if the URL is a GitBook assets host URL.
|
||||||
|
*/
|
||||||
|
export function isGitBookAssetsHostURL(input: URL | string): boolean {
|
||||||
|
const url = typeof input === 'string' ? new URL(input) : input;
|
||||||
|
|
||||||
|
if (!GITBOOK_ASSETS_URL) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const gitbookAssetsHost = new URL(GITBOOK_ASSETS_URL).host;
|
||||||
|
|
||||||
|
if (url.host === gitbookAssetsHost) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
@@ -62,28 +62,27 @@ export function createImageResizer({
|
|||||||
url: urlInput,
|
url: urlInput,
|
||||||
});
|
});
|
||||||
|
|
||||||
const url = new URL(
|
const url = linker.toAbsoluteURL(linker.toPathInContent('/~gitbook/image'));
|
||||||
linker.toAbsoluteURL(linker.toPathInContent('/~gitbook/image'))
|
const searchParams = new URLSearchParams();
|
||||||
);
|
searchParams.set('url', getImageAPIUrl(urlInput));
|
||||||
url.searchParams.set('url', getImageAPIUrl(urlInput));
|
|
||||||
|
|
||||||
if (options.width) {
|
if (options.width) {
|
||||||
url.searchParams.set('width', options.width.toString());
|
searchParams.set('width', options.width.toString());
|
||||||
}
|
}
|
||||||
if (options.height) {
|
if (options.height) {
|
||||||
url.searchParams.set('height', options.height.toString());
|
searchParams.set('height', options.height.toString());
|
||||||
}
|
}
|
||||||
if (options.dpr) {
|
if (options.dpr) {
|
||||||
url.searchParams.set('dpr', options.dpr.toString());
|
searchParams.set('dpr', options.dpr.toString());
|
||||||
}
|
}
|
||||||
if (options.quality) {
|
if (options.quality) {
|
||||||
url.searchParams.set('quality', options.quality.toString());
|
searchParams.set('quality', options.quality.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
url.searchParams.set('sign', cachedSignature.signature);
|
searchParams.set('sign', cachedSignature.signature);
|
||||||
url.searchParams.set('sv', cachedSignature.version);
|
searchParams.set('sv', cachedSignature.version);
|
||||||
|
|
||||||
return url.toString();
|
return `${url}?${searchParams.toString()}`;
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { getPagePath } from '@/lib/pages';
|
import { getPagePath } from '@/lib/pages';
|
||||||
import type { RevisionPage, RevisionPageDocument, RevisionPageGroup } from '@gitbook/api';
|
import type { RevisionPage, RevisionPageDocument, RevisionPageGroup } from '@gitbook/api';
|
||||||
|
import warnOnce from 'warn-once';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generic interface to generate links based on a given context.
|
* Generic interface to generate links based on a given context.
|
||||||
@@ -46,13 +47,11 @@ export function createLinker(
|
|||||||
/** Where the top of the space is served on */
|
/** Where the top of the space is served on */
|
||||||
servedOn: {
|
servedOn: {
|
||||||
protocol?: string;
|
protocol?: string;
|
||||||
host: string;
|
host?: string;
|
||||||
pathname: string;
|
pathname: string;
|
||||||
}
|
}
|
||||||
): GitBookSpaceLinker {
|
): GitBookSpaceLinker {
|
||||||
if (servedOn.host.includes('/')) {
|
warnOnce(!servedOn.host, 'No host provided to createLinker. It can lead to issues with links.');
|
||||||
throw new Error('Host cannot include a slash');
|
|
||||||
}
|
|
||||||
|
|
||||||
const linker: GitBookSpaceLinker = {
|
const linker: GitBookSpaceLinker = {
|
||||||
toPathInContent(relativePath: string): string {
|
toPathInContent(relativePath: string): string {
|
||||||
@@ -60,6 +59,10 @@ export function createLinker(
|
|||||||
},
|
},
|
||||||
|
|
||||||
toAbsoluteURL(absolutePath: string): string {
|
toAbsoluteURL(absolutePath: string): string {
|
||||||
|
if (!servedOn.host) {
|
||||||
|
return absolutePath;
|
||||||
|
}
|
||||||
|
|
||||||
return `${servedOn.protocol ?? 'https:'}//${joinPaths(servedOn.host, absolutePath)}`;
|
return `${servedOn.protocol ?? 'https:'}//${joinPaths(servedOn.host, absolutePath)}`;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -32,15 +32,16 @@ export enum MiddlewareHeaders {
|
|||||||
*/
|
*/
|
||||||
Customization = 'x-gitbook-customization',
|
Customization = 'x-gitbook-customization',
|
||||||
|
|
||||||
/**
|
|
||||||
* Token to use for the API.
|
|
||||||
*/
|
|
||||||
APIToken = 'x-gitbook-token',
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The visitor token used to access this content
|
* The visitor token used to access this content
|
||||||
*/
|
*/
|
||||||
VisitorAuthToken = 'x-gitbook-visitor-token',
|
VisitorAuthToken = 'x-gitbook-visitor-token',
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The API token used to fetch the content.
|
||||||
|
* This should only be passed for non-site dynamic routes.
|
||||||
|
*/
|
||||||
|
APIToken = 'x-gitbook-api-token',
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -117,3 +118,17 @@ export async function getVisitorAuthTokenFromMiddleware(): Promise<string | null
|
|||||||
|
|
||||||
return visitorAuthToken;
|
return visitorAuthToken;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the API token from the middleware headers.
|
||||||
|
* This function should only be called in a dynamic route.
|
||||||
|
*/
|
||||||
|
export async function getAPITokenFromMiddleware(): Promise<string> {
|
||||||
|
const headersList = await headers();
|
||||||
|
const apiToken = headersList.get(MiddlewareHeaders.APIToken);
|
||||||
|
if (!apiToken) {
|
||||||
|
throw new Error('API token is not set by the middleware');
|
||||||
|
}
|
||||||
|
|
||||||
|
return apiToken;
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,41 @@
|
|||||||
|
import crypto from 'node:crypto';
|
||||||
|
import { NextResponse } from 'next/server';
|
||||||
|
import { GITBOOK_SECRET } from './env';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verify the signature of the request and call the function with the body.
|
||||||
|
*/
|
||||||
|
export async function withVerifySignature<T>(
|
||||||
|
request: Request,
|
||||||
|
fn: (body: T) => Promise<NextResponse>
|
||||||
|
) {
|
||||||
|
try {
|
||||||
|
const rawBody = await request.text();
|
||||||
|
const body = JSON.parse(rawBody) as T;
|
||||||
|
|
||||||
|
if (GITBOOK_SECRET) {
|
||||||
|
// Retrieve the signature header from the request
|
||||||
|
const incomingSignature = request.headers.get('x-gitbook-signature');
|
||||||
|
if (!incomingSignature) {
|
||||||
|
return NextResponse.json({ error: 'Missing signature header' }, { status: 400 });
|
||||||
|
}
|
||||||
|
|
||||||
|
const computedSignature = crypto
|
||||||
|
.createHmac('sha256', GITBOOK_SECRET)
|
||||||
|
.update(rawBody)
|
||||||
|
.digest('hex');
|
||||||
|
|
||||||
|
// Compare incoming signature to computed signature
|
||||||
|
if (incomingSignature !== computedSignature) {
|
||||||
|
return NextResponse.json({ error: 'Invalid signature' }, { status: 401 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return await fn(body);
|
||||||
|
} catch (_error) {
|
||||||
|
return NextResponse.json(
|
||||||
|
{ error: 'Invalid request or unable to parse JSON' },
|
||||||
|
{ status: 400 }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,21 +1,70 @@
|
|||||||
import { GitBookAPIError } from '@gitbook/api';
|
import { CustomizationThemeMode } from '@gitbook/api';
|
||||||
import type { NextRequest } from 'next/server';
|
import type { NextRequest } from 'next/server';
|
||||||
import { NextResponse } from 'next/server';
|
import { NextResponse } from 'next/server';
|
||||||
|
|
||||||
import { getContentSecurityPolicy } from '@/lib/csp';
|
import { getContentSecurityPolicy } from '@/lib/csp';
|
||||||
|
import { validateSerializedCustomization } from '@/lib/customization';
|
||||||
import { removeLeadingSlash, removeTrailingSlash } from '@/lib/paths';
|
import { removeLeadingSlash, removeTrailingSlash } from '@/lib/paths';
|
||||||
|
import {
|
||||||
|
type ResponseCookies,
|
||||||
|
getPathScopedCookieName,
|
||||||
|
getResponseCookiesForVisitorAuth,
|
||||||
|
getVisitorToken,
|
||||||
|
normalizeVisitorAuthURL,
|
||||||
|
} from '@/lib/visitor-token';
|
||||||
import { serveResizedImage } from '@/routes/image';
|
import { serveResizedImage } from '@/routes/image';
|
||||||
import { getPublishedContentByURL } from '@v2/lib/data';
|
import { getLinkerForSiteURL } from '@v2/lib/context';
|
||||||
|
import {
|
||||||
|
DataFetcherError,
|
||||||
|
getPublishedContentByURL,
|
||||||
|
normalizeURL,
|
||||||
|
throwIfDataError,
|
||||||
|
} from '@v2/lib/data';
|
||||||
|
import { isGitBookAssetsHostURL, isGitBookHostURL } from '@v2/lib/env';
|
||||||
import { MiddlewareHeaders } from '@v2/lib/middleware';
|
import { MiddlewareHeaders } from '@v2/lib/middleware';
|
||||||
|
|
||||||
export const config = {
|
export const config = {
|
||||||
matcher: ['/((?!_next/|_static/|_vercel|[\\w-]+\\.\\w+).*)'],
|
matcher: [
|
||||||
|
'/((?!_next/static|_next/image|~gitbook/static|~gitbook/revalidate|~gitbook/monitoring|~scalar/proxy).*)',
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
type URLWithMode = { url: URL; mode: 'url' | 'url-host' };
|
type URLWithMode = { url: URL; mode: 'url' | 'url-host' };
|
||||||
|
|
||||||
export async function middleware(request: NextRequest) {
|
export async function middleware(request: NextRequest) {
|
||||||
try {
|
try {
|
||||||
|
const requestURL = new URL(request.url);
|
||||||
|
|
||||||
|
// Redirect to normalize the URL
|
||||||
|
const normalized = normalizeURL(requestURL);
|
||||||
|
if (normalized.toString() !== requestURL.toString()) {
|
||||||
|
return NextResponse.redirect(normalized.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const handler of [serveSiteRoutes, servePreviewRoutes]) {
|
||||||
|
const result = await handler(requestURL, request);
|
||||||
|
if (result) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return NextResponse.next();
|
||||||
|
} catch (error) {
|
||||||
|
return serveErrorResponse(error as Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle request that are targetting the site routes group.
|
||||||
|
*/
|
||||||
|
async function serveSiteRoutes(requestURL: URL, request: NextRequest) {
|
||||||
|
const match = getSiteURLFromRequest(request);
|
||||||
|
if (!match) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { url: siteURL, mode } = match;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Serve image resizing requests (all requests containing `/~gitbook/image`).
|
* Serve image resizing requests (all requests containing `/~gitbook/image`).
|
||||||
* All URLs containing `/~gitbook/image` are rewritten to `/~gitbook/image`
|
* All URLs containing `/~gitbook/image` are rewritten to `/~gitbook/image`
|
||||||
@@ -24,72 +73,121 @@ export async function middleware(request: NextRequest) {
|
|||||||
* In GitBook v1: image resizing was done at the root of the hostname (docs.company.com/~gitbook/image)
|
* In GitBook v1: image resizing was done at the root of the hostname (docs.company.com/~gitbook/image)
|
||||||
* In GitBook v2: image resizing is done at the content level (docs.company.com/section/variant/~gitbook/image)
|
* In GitBook v2: image resizing is done at the content level (docs.company.com/section/variant/~gitbook/image)
|
||||||
*/
|
*/
|
||||||
if (request.nextUrl.pathname.endsWith('/~gitbook/image')) {
|
if (siteURL.pathname.endsWith('/~gitbook/image')) {
|
||||||
return serveResizedImage(request);
|
return await serveResizedImage(request, {
|
||||||
|
host: siteURL.host,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Route all requests to a site
|
//
|
||||||
const extracted = extractURL(request);
|
// Detect and extract the visitor authentication token from the request
|
||||||
if (extracted) {
|
//
|
||||||
return serveSiteByURL(request, extracted);
|
// @ts-ignore - request typing
|
||||||
}
|
const visitorToken = getVisitorToken(request, siteURL);
|
||||||
|
|
||||||
// Handle the rest with the router default logic
|
const data = await throwIfDataError(
|
||||||
return NextResponse.next();
|
getPublishedContentByURL({
|
||||||
} catch (error) {
|
url: siteURL.toString(),
|
||||||
return serveErrorResponse(error as Error);
|
visitorAuthToken: visitorToken?.token ?? null,
|
||||||
}
|
// When the visitor auth token is pulled from the cookie, set redirectOnError when calling getPublishedContentByUrl to allow
|
||||||
}
|
// redirecting when the token is invalid as we could be dealing with stale token stored in the cookie.
|
||||||
|
// For example when the VA backend signature has changed but the token stored in the cookie is not yet expired.
|
||||||
|
redirectOnError: visitorToken?.source === 'visitor-auth-cookie',
|
||||||
|
})
|
||||||
|
);
|
||||||
|
let cookies: ResponseCookies = {};
|
||||||
|
|
||||||
/**
|
//
|
||||||
* Serve site by URL.
|
// Handle redirects
|
||||||
*/
|
//
|
||||||
async function serveSiteByURL(request: NextRequest, urlWithMode: URLWithMode) {
|
if ('redirect' in data) {
|
||||||
const dynamicHeaders = getDynamicHeaders(request);
|
// biome-ignore lint/suspicious/noConsole: we want to log the redirect
|
||||||
const { url, mode } = urlWithMode;
|
console.log('redirect', data.redirect);
|
||||||
|
if (data.target === 'content') {
|
||||||
const result = await getPublishedContentByURL({
|
// For content redirects, we use the linker to redirect the optimal URL
|
||||||
url: url.toString(),
|
// during development and testing in 'url' mode.
|
||||||
visitorAuthToken: null,
|
const linker = getLinkerForSiteURL({
|
||||||
redirectOnError: false,
|
siteURL,
|
||||||
|
urlMode: mode,
|
||||||
});
|
});
|
||||||
|
|
||||||
if (result.error) {
|
const contentRedirect = new URL(linker.toLinkForContent(data.redirect), request.url);
|
||||||
throw result.error;
|
|
||||||
|
// Keep the same search params as the original request
|
||||||
|
// as it might contain a VA token
|
||||||
|
contentRedirect.search = request.nextUrl.search;
|
||||||
|
|
||||||
|
return NextResponse.redirect(contentRedirect);
|
||||||
}
|
}
|
||||||
|
|
||||||
const { data } = result;
|
|
||||||
|
|
||||||
if ('redirect' in data) {
|
|
||||||
return NextResponse.redirect(data.redirect);
|
return NextResponse.redirect(data.redirect);
|
||||||
}
|
}
|
||||||
|
|
||||||
const routeType = dynamicHeaders ? 'dynamic' : 'static';
|
cookies = {
|
||||||
|
...cookies,
|
||||||
|
...getResponseCookiesForVisitorAuth(data.basePath, visitorToken),
|
||||||
|
};
|
||||||
|
|
||||||
|
//
|
||||||
|
// Make sure the URL is clean of any va token after a successful lookup
|
||||||
|
// The token is stored in a cookie that is set on the redirect response
|
||||||
|
//
|
||||||
|
const requestURLWithoutToken = normalizeVisitorAuthURL(requestURL);
|
||||||
|
if (requestURLWithoutToken.toString() !== requestURL.toString()) {
|
||||||
|
return writeResponseCookies(
|
||||||
|
NextResponse.redirect(requestURLWithoutToken.toString()),
|
||||||
|
cookies
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Render and serve the content
|
||||||
|
//
|
||||||
|
|
||||||
|
// When visitor has authentication (adaptive content or VA), we serve dynamic routes.
|
||||||
|
let routeType = visitorToken ? 'dynamic' : 'static';
|
||||||
|
|
||||||
const requestHeaders = new Headers(request.headers);
|
const requestHeaders = new Headers(request.headers);
|
||||||
requestHeaders.set(MiddlewareHeaders.RouteType, routeType);
|
requestHeaders.set(MiddlewareHeaders.RouteType, routeType);
|
||||||
requestHeaders.set(MiddlewareHeaders.URLMode, mode);
|
requestHeaders.set(MiddlewareHeaders.URLMode, mode);
|
||||||
requestHeaders.set(MiddlewareHeaders.SiteURL, `${url.origin}${data.basePath}`);
|
requestHeaders.set(MiddlewareHeaders.SiteURL, `${siteURL.origin}${data.basePath}`);
|
||||||
requestHeaders.set(MiddlewareHeaders.SiteURLData, JSON.stringify(data));
|
requestHeaders.set(MiddlewareHeaders.SiteURLData, JSON.stringify(data));
|
||||||
if (dynamicHeaders) {
|
|
||||||
for (const [key, value] of Object.entries(dynamicHeaders)) {
|
// Preview of customization/theme
|
||||||
requestHeaders.set(key, value);
|
const customization = siteURL.searchParams.get('customization');
|
||||||
|
if (customization && validateSerializedCustomization(customization)) {
|
||||||
|
routeType = 'dynamic';
|
||||||
|
requestHeaders.set(MiddlewareHeaders.Customization, customization);
|
||||||
}
|
}
|
||||||
|
const theme = siteURL.searchParams.get('theme');
|
||||||
|
if (theme === CustomizationThemeMode.Dark || theme === CustomizationThemeMode.Light) {
|
||||||
|
routeType = 'dynamic';
|
||||||
|
requestHeaders.set(MiddlewareHeaders.Theme, theme);
|
||||||
|
}
|
||||||
|
|
||||||
|
// We support forcing dynamic routes by setting a `gitbook-dynamic-route` cookie
|
||||||
|
// This is useful for testing dynamic routes.
|
||||||
|
if (request.cookies.has('gitbook-dynamic-route')) {
|
||||||
|
routeType = 'dynamic';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pass a x-forwarded-host and origin that are equal to ensure Next doesn't block server actions when proxied
|
// Pass a x-forwarded-host and origin that are equal to ensure Next doesn't block server actions when proxied
|
||||||
requestHeaders.set('x-forwarded-host', request.nextUrl.host);
|
requestHeaders.set('x-forwarded-host', request.nextUrl.host);
|
||||||
requestHeaders.set('origin', request.nextUrl.origin);
|
requestHeaders.set('origin', request.nextUrl.origin);
|
||||||
|
|
||||||
|
const siteURLWithoutProtocol = `${siteURL.host}${data.basePath}`;
|
||||||
|
const { pathname, routeType: routeTypeFromPathname } = encodePathInSiteContent(data.pathname);
|
||||||
|
routeType = routeTypeFromPathname ?? routeType;
|
||||||
|
|
||||||
const route = [
|
const route = [
|
||||||
'sites',
|
'sites',
|
||||||
routeType,
|
routeType,
|
||||||
mode,
|
mode,
|
||||||
encodeURIComponent(url.host + data.basePath),
|
encodeURIComponent(siteURLWithoutProtocol),
|
||||||
encodePathInSiteContent(data.pathname),
|
pathname,
|
||||||
].join('/');
|
].join('/');
|
||||||
|
|
||||||
console.log(`rewriting to ${route}`);
|
console.log(`rewriting ${request.nextUrl.toString()} to ${route}`);
|
||||||
|
|
||||||
const rewrittenURL = new URL(`/${route}`, request.nextUrl.toString());
|
const rewrittenURL = new URL(`/${route}`, request.nextUrl.toString());
|
||||||
const response = NextResponse.rewrite(rewrittenURL, {
|
const response = NextResponse.rewrite(rewrittenURL, {
|
||||||
@@ -100,66 +198,133 @@ async function serveSiteByURL(request: NextRequest, urlWithMode: URLWithMode) {
|
|||||||
|
|
||||||
// Add Content Security Policy header
|
// Add Content Security Policy header
|
||||||
response.headers.set('content-security-policy', getContentSecurityPolicy());
|
response.headers.set('content-security-policy', getContentSecurityPolicy());
|
||||||
|
// Basic security headers
|
||||||
|
response.headers.set('strict-transport-security', 'max-age=31536000');
|
||||||
|
response.headers.set('referrer-policy', 'no-referrer-when-downgrade');
|
||||||
|
response.headers.set('x-content-type-options', 'nosniff');
|
||||||
|
// Debug header
|
||||||
|
response.headers.set('x-gitbook-route-type', routeType);
|
||||||
|
response.headers.set('x-gitbook-route-site', siteURLWithoutProtocol);
|
||||||
|
|
||||||
return response;
|
return writeResponseCookies(response, cookies);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serve routes for previewing unpublished content.
|
||||||
|
* Routes are:
|
||||||
|
* - PDF export for a space: /~space/:spaceId/~gitbook/pdf
|
||||||
|
* - Preview of an unpublished site: /~site/:siteId/
|
||||||
|
*/
|
||||||
|
async function servePreviewRoutes(requestURL: URL, request: NextRequest) {
|
||||||
|
const pathnameParts = requestURL.pathname.slice(1).split('/');
|
||||||
|
|
||||||
|
if (pathnameParts[0] !== '~space' && pathnameParts[0] !== '~site') {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// We store the API token in a cookie that is scoped to the specific preview route
|
||||||
|
// to avoid errors when multiple previews are opened in different tabs.
|
||||||
|
const cookieName = getPathScopedCookieName(
|
||||||
|
'gitbook-api-token',
|
||||||
|
pathnameParts.slice(0, 2).join('/')
|
||||||
|
);
|
||||||
|
|
||||||
|
// Extract a potential GitBook API token passed in the request
|
||||||
|
// If found, we redirect to the same URL but with the token in the cookie
|
||||||
|
const queryAPIToken = requestURL.searchParams.get('token');
|
||||||
|
if (queryAPIToken) {
|
||||||
|
requestURL.searchParams.delete('token');
|
||||||
|
return writeResponseCookies(NextResponse.redirect(requestURL.toString()), {
|
||||||
|
[cookieName]: {
|
||||||
|
value: queryAPIToken,
|
||||||
|
options: {
|
||||||
|
httpOnly: true,
|
||||||
|
sameSite: process.env.NODE_ENV === 'production' ? 'none' : undefined,
|
||||||
|
secure: process.env.NODE_ENV === 'production',
|
||||||
|
maxAge: 60 * 60, // 1 hour
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const apiToken = request.cookies.get(cookieName)?.value;
|
||||||
|
if (!apiToken) {
|
||||||
|
throw new DataFetcherError('Missing API token', 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle the rest with the router default logic
|
||||||
|
return NextResponse.next({
|
||||||
|
headers: {
|
||||||
|
[MiddlewareHeaders.APIToken]: apiToken,
|
||||||
|
},
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Serve an error response.
|
* Serve an error response.
|
||||||
*/
|
*/
|
||||||
function serveErrorResponse(error: Error) {
|
function serveErrorResponse(error: Error) {
|
||||||
if (error instanceof GitBookAPIError) {
|
if (error instanceof DataFetcherError) {
|
||||||
return NextResponse.json(
|
return new Response(error.message, {
|
||||||
{ error: error.message },
|
status: error.code,
|
||||||
{ status: 500, headers: { 'content-type': 'application/json' } }
|
headers: { 'content-type': 'text/plain' },
|
||||||
);
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The URL of the GitBook content can be passed in 3 different ways:
|
* The URL of the GitBook content can be passed in 3 different ways (in order of priority):
|
||||||
* - The request URL is in the `X-GitBook-URL` header.
|
* - The request has a `X-GitBook-URL` header:
|
||||||
* - Hostname is in the `X-GitBook-Host` header and the pathname is the path in the request URL.
|
* URL is taken from the header.
|
||||||
* - The request URL is matching `/url/:url`
|
* - The request has a `X-Forwarded-Host` header:
|
||||||
|
* Host is taken from the header, pathname is taken from the request URL.
|
||||||
|
* - The request URL is matching `/url/:url`:
|
||||||
|
* URL is taken from the pathname.
|
||||||
*/
|
*/
|
||||||
function extractURL(request: NextRequest): URLWithMode | null {
|
function getSiteURLFromRequest(request: NextRequest): URLWithMode | null {
|
||||||
const xGitbookUrl = request.headers.get('x-gitbook-url');
|
const xGitbookUrl = request.headers.get('x-gitbook-url');
|
||||||
if (xGitbookUrl) {
|
if (xGitbookUrl) {
|
||||||
return {
|
return {
|
||||||
url: new URL(xGitbookUrl),
|
url: appendQueryParams(new URL(xGitbookUrl), request.nextUrl.searchParams),
|
||||||
mode: 'url-host',
|
mode: 'url-host',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const xGitbookHost = request.headers.get('x-gitbook-host');
|
const isMainHost = isGitBookHostURL(request.url);
|
||||||
if (xGitbookHost) {
|
const isAssetsHost = isGitBookAssetsHostURL(request.url);
|
||||||
return {
|
|
||||||
url: new URL(`https://${xGitbookHost}${request.nextUrl.pathname}`),
|
|
||||||
mode: 'url-host',
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
|
// /url/:url requests on the main host
|
||||||
const prefix = '/url/';
|
const prefix = '/url/';
|
||||||
if (request.nextUrl.pathname.startsWith(prefix)) {
|
if (isMainHost && request.nextUrl.pathname.startsWith(prefix)) {
|
||||||
return {
|
return {
|
||||||
url: new URL(`https://${request.nextUrl.pathname.slice(prefix.length)}`),
|
url: appendQueryParams(
|
||||||
|
new URL(`https://${request.nextUrl.pathname.slice(prefix.length)}`),
|
||||||
|
request.nextUrl.searchParams
|
||||||
|
),
|
||||||
mode: 'url',
|
mode: 'url',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Skip other requests to main hosts
|
||||||
|
if (isMainHost || isAssetsHost) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
const xForwardedHost = request.headers.get('x-forwarded-host');
|
||||||
* Evaluate if a request is dynamic or static.
|
// The x-forwarded-host is set by Vercel for all requests
|
||||||
*/
|
// so we ignore it if the hostname is the same as the instance one.
|
||||||
function getDynamicHeaders(_request: NextRequest): null | Record<string, string> {
|
if (xForwardedHost) {
|
||||||
// TODO:
|
return {
|
||||||
// - check token in query string
|
url: appendQueryParams(
|
||||||
// - check token in cookies
|
new URL(`https://${xForwardedHost}${request.nextUrl.pathname}`),
|
||||||
// - check special headers or query string
|
request.nextUrl.searchParams
|
||||||
|
),
|
||||||
|
mode: 'url-host',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -167,21 +332,48 @@ function getDynamicHeaders(_request: NextRequest): null | Record<string, string>
|
|||||||
* Encode path in a site content.
|
* Encode path in a site content.
|
||||||
* Special paths are not encoded and passed to be handled by the route handlers.
|
* Special paths are not encoded and passed to be handled by the route handlers.
|
||||||
*/
|
*/
|
||||||
function encodePathInSiteContent(rawPathname: string) {
|
function encodePathInSiteContent(rawPathname: string): {
|
||||||
|
pathname: string;
|
||||||
|
routeType?: 'static' | 'dynamic';
|
||||||
|
} {
|
||||||
const pathname = removeLeadingSlash(removeTrailingSlash(rawPathname));
|
const pathname = removeLeadingSlash(removeTrailingSlash(rawPathname));
|
||||||
|
|
||||||
if (pathname.match(/^~gitbook\/ogimage\/\S+$/)) {
|
if (pathname.match(/^~gitbook\/ogimage\/\S+$/)) {
|
||||||
return pathname;
|
return { pathname };
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (pathname) {
|
switch (pathname) {
|
||||||
case '~gitbook/icon':
|
case '~gitbook/icon':
|
||||||
case '~gitbook/image':
|
|
||||||
case 'llms.txt':
|
case 'llms.txt':
|
||||||
case 'sitemap.xml':
|
case 'sitemap.xml':
|
||||||
case 'robots.txt':
|
case 'robots.txt':
|
||||||
return pathname;
|
return { pathname };
|
||||||
|
case '~gitbook/pdf':
|
||||||
|
// PDF routes are always dynamic as they depend on the search params.
|
||||||
|
return { pathname, routeType: 'dynamic' };
|
||||||
default:
|
default:
|
||||||
return encodeURIComponent(pathname || '/');
|
return { pathname: encodeURIComponent(pathname || '/') };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Append all the query params from a URL to another URL.
|
||||||
|
*/
|
||||||
|
function appendQueryParams(url: URL, from: URLSearchParams) {
|
||||||
|
for (const [key, value] of from.entries()) {
|
||||||
|
url.searchParams.set(key, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
return url;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Write the cookies to a response.
|
||||||
|
*/
|
||||||
|
function writeResponseCookies<R extends NextResponse>(response: R, cookies: ResponseCookies): R {
|
||||||
|
Object.entries(cookies).forEach(([key, { value, options }]) => {
|
||||||
|
response.cookies.set(key, value, options);
|
||||||
|
});
|
||||||
|
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"extends": ["//"],
|
||||||
|
"tasks": {
|
||||||
|
"generate": {
|
||||||
|
"outputs": ["public"]
|
||||||
|
},
|
||||||
|
"typecheck": {
|
||||||
|
"dependsOn": ["^typecheck"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,50 @@
|
|||||||
main = ".open-next/worker.js"
|
main = ".open-next/worker.js"
|
||||||
name = "gitbook-v2"
|
name = "gitbook-open-v2"
|
||||||
compatibility_date = "2024-09-23"
|
compatibility_date = "2025-03-11"
|
||||||
compatibility_flags = ["nodejs_compat"]
|
compatibility_flags = ["nodejs_compat", "allow_importable_env"]
|
||||||
assets = { directory = ".open-next/assets", binding = "ASSETS" }
|
assets = { directory = ".open-next/assets", binding = "ASSETS" }
|
||||||
|
observability = { enabled = true }
|
||||||
|
|
||||||
|
[env.preview]
|
||||||
|
kv_namespaces = [
|
||||||
|
{ binding = "NEXT_CACHE_WORKERS_KV", id = "b7dd9cf58bf2458f84812a2d83b3760c" } # gitbook-open-v2-cache-preview
|
||||||
|
]
|
||||||
|
d1_databases = [
|
||||||
|
{ binding = "NEXT_CACHE_D1", database_id = "f59ddb40-ad72-4312-9395-0ac6a129af8e", database_name = "gitbook-open-v2-tags-preview" }
|
||||||
|
]
|
||||||
|
services = [
|
||||||
|
{ binding = "NEXT_CACHE_REVALIDATION_WORKER", service = "gitbook-open-v2-preview" },
|
||||||
|
{ binding = "GITBOOK_API", service = "gitbook-x-prod-api-cache" }
|
||||||
|
]
|
||||||
|
|
||||||
|
[env.staging]
|
||||||
|
routes = [
|
||||||
|
{ pattern = "open-2c.gitbook-staging.com/*", zone_name = "gitbook-staging.com" },
|
||||||
|
{ pattern = "static-2c.gitbook-staging.com/*", zone_name = "gitbook-staging.com" }
|
||||||
|
]
|
||||||
|
kv_namespaces = [
|
||||||
|
{ binding = "NEXT_CACHE_WORKERS_KV", id = "a446e25f12b741afb185f1e5b4474f0a" } # gitbook-open-v2-cache-staging
|
||||||
|
]
|
||||||
|
d1_databases = [
|
||||||
|
{ binding = "NEXT_CACHE_D1", database_id = "9df62e39-1f35-4066-83aa-e9b8ed3ac8d5", database_name = "gitbook-open-v2-tags-staging" }
|
||||||
|
]
|
||||||
|
services = [
|
||||||
|
{ binding = "NEXT_CACHE_REVALIDATION_WORKER", service = "gitbook-open-v2-staging" },
|
||||||
|
{ binding = "GITBOOK_API", service = "gitbook-x-staging-api-cache" }
|
||||||
|
]
|
||||||
|
|
||||||
|
[env.production]
|
||||||
|
routes = [
|
||||||
|
{ pattern = "open-2c.gitbook.com/*", zone_name = "gitbook.com" },
|
||||||
|
{ pattern = "static-2c.gitbook.com/*", zone_name = "gitbook.com" }
|
||||||
|
]
|
||||||
|
kv_namespaces = [
|
||||||
|
{ binding = "NEXT_CACHE_WORKERS_KV", id = "72379746280d4e79acf24440eea950dc" } # gitbook-open-v2-cache-production
|
||||||
|
]
|
||||||
|
d1_databases = [
|
||||||
|
{ binding = "NEXT_CACHE_D1", database_id = "a6f16fce-5f45-43a9-89a4-7b83ddf25b77", database_name = "gitbook-open-v2-tags-production" }
|
||||||
|
]
|
||||||
|
services = [
|
||||||
|
{ binding = "NEXT_CACHE_REVALIDATION_WORKER", service = "gitbook-open-v2-production" },
|
||||||
|
{ binding = "GITBOOK_API", service = "gitbook-x-prod-api-cache" }
|
||||||
|
]
|
||||||
|
|||||||
@@ -23,8 +23,5 @@
|
|||||||
## Caching
|
## Caching
|
||||||
# GITBOOK_OUTPUT_CACHE=true
|
# GITBOOK_OUTPUT_CACHE=true
|
||||||
|
|
||||||
### Sentry ###
|
|
||||||
# SENTRY_DSN=xxx
|
|
||||||
|
|
||||||
### Silent logs
|
### Silent logs
|
||||||
# SILENT=true
|
# SILENT=true
|
||||||
@@ -23,9 +23,6 @@ next-env.d.ts
|
|||||||
# visual tests
|
# visual tests
|
||||||
screenshots/
|
screenshots/
|
||||||
|
|
||||||
# Sentry Config File
|
|
||||||
.sentryclirc
|
|
||||||
|
|
||||||
/test-results/
|
/test-results/
|
||||||
/playwright-report/
|
/playwright-report/
|
||||||
/blob-report/
|
/blob-report/
|
||||||
|
|||||||
@@ -1,5 +1,83 @@
|
|||||||
# gitbook
|
# gitbook
|
||||||
|
|
||||||
|
## 0.8.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 886e204: Update OpenAPI operation path design
|
||||||
|
- Updated dependencies [886e204]
|
||||||
|
- Updated dependencies [4f0a772]
|
||||||
|
- @gitbook/react-openapi@1.1.5
|
||||||
|
- @gitbook/colors@0.3.0
|
||||||
|
|
||||||
|
## 0.8.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- eec3eed: Add styling for prominent search bar option
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 16292de: Display sidebar on no-TOC pages
|
||||||
|
- 9b5f971: Transparent background for OpenAPI path block
|
||||||
|
- 99da8df: Optimize favicons and og:image using the image resizer
|
||||||
|
- b011ea0: Fix rendering of code blocks in Ask AI when being streamed
|
||||||
|
- 9bc3d50: Info hint background and link color fixes
|
||||||
|
- 31d800e: Render OpenAPISchemas block
|
||||||
|
- Updated dependencies [6aaeae2]
|
||||||
|
- Updated dependencies [c60e9ba]
|
||||||
|
- Updated dependencies [9108c56]
|
||||||
|
- Updated dependencies [31d800e]
|
||||||
|
- Updated dependencies [ff3b708]
|
||||||
|
- Updated dependencies [f32bf1f]
|
||||||
|
- Updated dependencies [c9ea239]
|
||||||
|
- @gitbook/react-contentkit@0.7.0
|
||||||
|
- @gitbook/react-openapi@1.1.4
|
||||||
|
- @gitbook/cache-tags@0.2.0
|
||||||
|
|
||||||
|
## 0.7.3
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- eaf2d68: OpenAPI operation title fallback in sections
|
||||||
|
- Updated dependencies [844059f]
|
||||||
|
- Updated dependencies [88f64b0]
|
||||||
|
- @gitbook/react-openapi@1.1.3
|
||||||
|
- @gitbook/icons@0.2.0
|
||||||
|
- @gitbook/react-contentkit@0.6.2
|
||||||
|
|
||||||
|
## 0.7.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- f127d28: Rename OpenAPIModels to OpenAPISchemas
|
||||||
|
- Updated dependencies [f127d28]
|
||||||
|
- @gitbook/react-openapi@1.1.2
|
||||||
|
|
||||||
|
## 0.7.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [f574858]
|
||||||
|
- @gitbook/react-openapi@1.1.1
|
||||||
|
|
||||||
|
## 0.7.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- bb3ca9c: Implement OpenAPI models blocks
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 5907bd9: Adjust hint block spacing
|
||||||
|
- 9ffc3b6: Fix content overflowing out of its container in tabs
|
||||||
|
- Updated dependencies [0278a14]
|
||||||
|
- Updated dependencies [bb3ca9c]
|
||||||
|
- Updated dependencies [3173d8e]
|
||||||
|
- Updated dependencies [052e07a]
|
||||||
|
- @gitbook/openapi-parser@2.1.0
|
||||||
|
- @gitbook/react-openapi@1.1.0
|
||||||
|
|
||||||
## 0.6.5
|
## 0.6.5
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import { type TestsCase, runTestCases } from './util';
|
|||||||
const testCases: TestsCase[] = [
|
const testCases: TestsCase[] = [
|
||||||
{
|
{
|
||||||
name: 'Snyk',
|
name: 'Snyk',
|
||||||
baseUrl: 'https://docs.snyk.io',
|
contentBaseURL: 'https://docs.snyk.io',
|
||||||
tests: [
|
tests: [
|
||||||
{ name: 'Home', url: '/' },
|
{ name: 'Home', url: '/' },
|
||||||
{ name: 'OpenAPI', url: '/snyk-api/reference/apps' },
|
{ name: 'OpenAPI', url: '/snyk-api/reference/apps' },
|
||||||
@@ -12,222 +12,222 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Nexthink',
|
name: 'Nexthink',
|
||||||
baseUrl: 'https://docs.nexthink.com',
|
contentBaseURL: 'https://docs.nexthink.com',
|
||||||
tests: [{ name: 'Home', url: '/', screenshot: { waitForTOCScrolling: false } }],
|
tests: [{ name: 'Home', url: '/', screenshot: { waitForTOCScrolling: false } }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'asiksupport-stg.dto.kemkes.go.id',
|
name: 'asiksupport-stg.dto.kemkes.go.id',
|
||||||
baseUrl: 'https://asiksupport-stg.dto.kemkes.go.id',
|
contentBaseURL: 'https://asiksupport-stg.dto.kemkes.go.id',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'jasons-tutorials.gitbook.io',
|
name: 'jasons-tutorials.gitbook.io',
|
||||||
baseUrl: 'https://jasons-tutorials.gitbook.io',
|
contentBaseURL: 'https://jasons-tutorials.gitbook.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'faq.deltaemulator.com',
|
name: 'faq.deltaemulator.com',
|
||||||
baseUrl: 'https://faq.deltaemulator.com',
|
contentBaseURL: 'https://faq.deltaemulator.com',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.dify.ai',
|
name: 'docs.dify.ai',
|
||||||
baseUrl: 'https://docs.dify.ai',
|
contentBaseURL: 'https://docs.dify.ai',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'seeddao.gitbook.io',
|
name: 'seeddao.gitbook.io',
|
||||||
baseUrl: 'https://seeddao.gitbook.io',
|
contentBaseURL: 'https://seeddao.gitbook.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'faq.altstore.io',
|
name: 'faq.altstore.io',
|
||||||
baseUrl: 'https://faq.altstore.io',
|
contentBaseURL: 'https://faq.altstore.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'support.audacityteam.org',
|
name: 'support.audacityteam.org',
|
||||||
baseUrl: 'https://support.audacityteam.org',
|
contentBaseURL: 'https://support.audacityteam.org',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.gmgn.ai',
|
name: 'docs.gmgn.ai',
|
||||||
baseUrl: 'https://docs.gmgn.ai',
|
contentBaseURL: 'https://docs.gmgn.ai',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.spicychat.ai',
|
name: 'docs.spicychat.ai',
|
||||||
baseUrl: 'https://docs.spicychat.ai',
|
contentBaseURL: 'https://docs.spicychat.ai',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.portainer.io',
|
name: 'docs.portainer.io',
|
||||||
baseUrl: 'https://docs.portainer.io',
|
contentBaseURL: 'https://docs.portainer.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.chirptoken.io',
|
name: 'docs.chirptoken.io',
|
||||||
baseUrl: 'https://docs.chirptoken.io',
|
contentBaseURL: 'https://docs.chirptoken.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.dexscreener.com',
|
name: 'docs.dexscreener.com',
|
||||||
baseUrl: 'https://docs.dexscreener.com',
|
contentBaseURL: 'https://docs.dexscreener.com',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.pancakeswap.finance',
|
name: 'docs.pancakeswap.finance',
|
||||||
baseUrl: 'https://docs.pancakeswap.finance',
|
contentBaseURL: 'https://docs.pancakeswap.finance',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'book.character.ai',
|
name: 'book.character.ai',
|
||||||
baseUrl: 'https://book.character.ai',
|
contentBaseURL: 'https://book.character.ai',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.tradeonnova.io',
|
name: 'docs.tradeonnova.io',
|
||||||
baseUrl: 'https://docs.tradeonnova.io',
|
contentBaseURL: 'https://docs.tradeonnova.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'azcoiner.gitbook.io',
|
name: 'azcoiner.gitbook.io',
|
||||||
baseUrl: 'https://azcoiner.gitbook.io',
|
contentBaseURL: 'https://azcoiner.gitbook.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.midas.app',
|
name: 'docs.midas.app',
|
||||||
baseUrl: 'https://docs.midas.app',
|
contentBaseURL: 'https://docs.midas.app',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.keeper.io',
|
name: 'docs.keeper.io',
|
||||||
baseUrl: 'https://docs.keeper.io',
|
contentBaseURL: 'https://docs.keeper.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'adiblar.gitbook.io',
|
name: 'adiblar.gitbook.io',
|
||||||
baseUrl: 'https://adiblar.gitbook.io',
|
contentBaseURL: 'https://adiblar.gitbook.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.gradient.network',
|
name: 'docs.gradient.network',
|
||||||
baseUrl: 'https://docs.gradient.network',
|
contentBaseURL: 'https://docs.gradient.network',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'mygate-network.gitbook.io',
|
name: 'mygate-network.gitbook.io',
|
||||||
baseUrl: 'https://mygate-network.gitbook.io',
|
contentBaseURL: 'https://mygate-network.gitbook.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'treasurenft.gitbook.io',
|
name: 'treasurenft.gitbook.io',
|
||||||
baseUrl: 'https://treasurenft.gitbook.io',
|
contentBaseURL: 'https://treasurenft.gitbook.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'browndust2.gitbook.io',
|
name: 'browndust2.gitbook.io',
|
||||||
baseUrl: 'https://browndust2.gitbook.io',
|
contentBaseURL: 'https://browndust2.gitbook.io',
|
||||||
tests: [{ name: 'Home', url: '/', screenshot: { waitForTOCScrolling: false } }],
|
tests: [{ name: 'Home', url: '/', screenshot: { waitForTOCScrolling: false } }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'junookyo.gitbook.io',
|
name: 'junookyo.gitbook.io',
|
||||||
baseUrl: 'https://junookyo.gitbook.io',
|
contentBaseURL: 'https://junookyo.gitbook.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'meshnet.nordvpn.com',
|
name: 'meshnet.nordvpn.com',
|
||||||
baseUrl: 'https://meshnet.nordvpn.com',
|
contentBaseURL: 'https://meshnet.nordvpn.com',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'manual.bubble.io',
|
name: 'manual.bubble.io',
|
||||||
baseUrl: 'https://manual.bubble.io',
|
contentBaseURL: 'https://manual.bubble.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.tickettool.xyz',
|
name: 'docs.tickettool.xyz',
|
||||||
baseUrl: 'https://docs.tickettool.xyz',
|
contentBaseURL: 'https://docs.tickettool.xyz',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'wiki.redmodding.org',
|
name: 'wiki.redmodding.org',
|
||||||
baseUrl: 'https://wiki.redmodding.org',
|
contentBaseURL: 'https://wiki.redmodding.org',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.cherry-ai.com',
|
name: 'docs.cherry-ai.com',
|
||||||
baseUrl: 'https://docs.cherry-ai.com',
|
contentBaseURL: 'https://docs.cherry-ai.com',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.snyk.io',
|
name: 'docs.snyk.io',
|
||||||
baseUrl: 'https://docs.snyk.io',
|
contentBaseURL: 'https://docs.snyk.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.realapp.link',
|
name: 'docs.realapp.link',
|
||||||
baseUrl: 'https://docs.realapp.link',
|
contentBaseURL: 'https://docs.realapp.link',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.plaza.finance',
|
name: 'docs.plaza.finance',
|
||||||
baseUrl: 'https://docs.plaza.finance',
|
contentBaseURL: 'https://docs.plaza.finance',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.publicai.io',
|
name: 'docs.publicai.io',
|
||||||
baseUrl: 'https://docs.publicai.io',
|
contentBaseURL: 'https://docs.publicai.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'hyperliquid.gitbook.io',
|
name: 'hyperliquid.gitbook.io',
|
||||||
baseUrl: 'https://hyperliquid.gitbook.io',
|
contentBaseURL: 'https://hyperliquid.gitbook.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.umbraco.com',
|
name: 'docs.umbraco.com',
|
||||||
baseUrl: 'https://docs.umbraco.com',
|
contentBaseURL: 'https://docs.umbraco.com',
|
||||||
tests: [{ name: 'Home', url: '/welcome', screenshot: { waitForTOCScrolling: false } }],
|
tests: [{ name: 'Home', url: '/welcome', screenshot: { waitForTOCScrolling: false } }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'sosovalue-white-paper.gitbook.io',
|
name: 'sosovalue-white-paper.gitbook.io',
|
||||||
baseUrl: 'https://sosovalue-white-paper.gitbook.io',
|
contentBaseURL: 'https://sosovalue-white-paper.gitbook.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.revrobotics.com',
|
name: 'docs.revrobotics.com',
|
||||||
baseUrl: 'https://docs.revrobotics.com',
|
contentBaseURL: 'https://docs.revrobotics.com',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'chartschool.stockcharts.com',
|
name: 'chartschool.stockcharts.com',
|
||||||
baseUrl: 'https://chartschool.stockcharts.com',
|
contentBaseURL: 'https://chartschool.stockcharts.com',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.soniclabs.com',
|
name: 'docs.soniclabs.com',
|
||||||
baseUrl: 'https://docs.soniclabs.com',
|
contentBaseURL: 'https://docs.soniclabs.com',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.meshchain.ai',
|
name: 'docs.meshchain.ai',
|
||||||
baseUrl: 'https://docs.meshchain.ai',
|
contentBaseURL: 'https://docs.meshchain.ai',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.thousandeyes.com',
|
name: 'docs.thousandeyes.com',
|
||||||
baseUrl: 'https://docs.thousandeyes.com',
|
contentBaseURL: 'https://docs.thousandeyes.com',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.raydium.io',
|
name: 'docs.raydium.io',
|
||||||
baseUrl: 'https://docs.raydium.io',
|
contentBaseURL: 'https://docs.raydium.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'docs.fluentbit.io',
|
name: 'docs.fluentbit.io',
|
||||||
baseUrl: 'https://docs.fluentbit.io',
|
contentBaseURL: 'https://docs.fluentbit.io',
|
||||||
tests: [{ name: 'Home', url: '/' }],
|
tests: [{ name: 'Home', url: '/' }],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -14,10 +14,12 @@ import {
|
|||||||
getVisitorAuthCookieValue,
|
getVisitorAuthCookieValue,
|
||||||
} from '@/lib/visitor-token';
|
} from '@/lib/visitor-token';
|
||||||
|
|
||||||
|
import { getSiteAPIToken } from '../tests/utils';
|
||||||
import {
|
import {
|
||||||
type TestsCase,
|
type TestsCase,
|
||||||
allDeprecatedThemePresets,
|
allDeprecatedThemePresets,
|
||||||
allLocales,
|
allLocales,
|
||||||
|
allSearchStyles,
|
||||||
allSidebarBackgroundStyles,
|
allSidebarBackgroundStyles,
|
||||||
allThemeModes,
|
allThemeModes,
|
||||||
allThemes,
|
allThemes,
|
||||||
@@ -31,7 +33,7 @@ import {
|
|||||||
const testCases: TestsCase[] = [
|
const testCases: TestsCase[] = [
|
||||||
{
|
{
|
||||||
name: 'GitBook Site (Single Variant)',
|
name: 'GitBook Site (Single Variant)',
|
||||||
baseUrl: 'https://gitbook-open-e2e-sites.gitbook.io/gitbook-doc/',
|
contentBaseURL: 'https://gitbook-open-e2e-sites.gitbook.io/gitbook-doc/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Home',
|
name: 'Home',
|
||||||
@@ -84,7 +86,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'GitBook Site (Multi Variants)',
|
name: 'GitBook Site (Multi Variants)',
|
||||||
baseUrl: 'https://gitbook-open-e2e-sites.gitbook.io/multi-variants/',
|
contentBaseURL: 'https://gitbook-open-e2e-sites.gitbook.io/multi-variants/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Variants dropdown',
|
name: 'Variants dropdown',
|
||||||
@@ -135,7 +137,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'GitBook Site (Navigation when switching variant)',
|
name: 'GitBook Site (Navigation when switching variant)',
|
||||||
baseUrl: 'https://gitbook-open-e2e-sites.gitbook.io/',
|
contentBaseURL: 'https://gitbook-open-e2e-sites.gitbook.io/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Keep navigation path/route when switching variant (Public)',
|
name: 'Keep navigation path/route when switching variant (Public)',
|
||||||
@@ -155,8 +157,8 @@ const testCases: TestsCase[] = [
|
|||||||
.click();
|
.click();
|
||||||
|
|
||||||
// It should keep the current page path, i.e "reference/api-reference/pets" when navigating to the new variant
|
// It should keep the current page path, i.e "reference/api-reference/pets" when navigating to the new variant
|
||||||
await page.waitForURL(
|
await page.waitForURL((url) =>
|
||||||
'https://gitbook-open-e2e-sites.gitbook.io/api-multi-versions/2.0/reference/api-reference/pets?fallback=true'
|
url.pathname.includes('api-multi-versions/2.0/reference/api-reference/pets')
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -178,15 +180,17 @@ const testCases: TestsCase[] = [
|
|||||||
.click();
|
.click();
|
||||||
|
|
||||||
// It should keep the current page path, i.e "reference/api-reference/pets" when navigating to the new variant
|
// It should keep the current page path, i.e "reference/api-reference/pets" when navigating to the new variant
|
||||||
await page.waitForURL(
|
await page.waitForURL((url) =>
|
||||||
'https://gitbook-open-e2e-sites.gitbook.io/api-multi-versions-share-links/8tNo6MeXg7CkFMzSSz81/2.0/reference/api-reference/pets?fallback=true'
|
url.pathname.includes(
|
||||||
|
'api-multi-versions-share-links/8tNo6MeXg7CkFMzSSz81/2.0/reference/api-reference/pets'
|
||||||
|
)
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Keep navigation path/route when switching variant (VA)',
|
name: 'Keep navigation path/route when switching variant (VA)',
|
||||||
screenshot: false,
|
screenshot: false,
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = 'c26190fc-74b2-4b54-9fc7-df9941104953';
|
const privateKey = 'c26190fc-74b2-4b54-9fc7-df9941104953';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -198,7 +202,7 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `api-multi-versions-va/reference/api-reference/pets?jwt_token=${token}`;
|
return `api-multi-versions-va/reference/api-reference/pets?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: async (page) => {
|
run: async (page) => {
|
||||||
const spaceDrowpdown = await page
|
const spaceDrowpdown = await page
|
||||||
.locator('[data-testid="space-dropdown-button"]')
|
.locator('[data-testid="space-dropdown-button"]')
|
||||||
@@ -213,8 +217,10 @@ const testCases: TestsCase[] = [
|
|||||||
.click();
|
.click();
|
||||||
|
|
||||||
// It should keep the current page path, i.e "reference/api-reference/pets" when navigating to the new variant
|
// It should keep the current page path, i.e "reference/api-reference/pets" when navigating to the new variant
|
||||||
await page.waitForURL(
|
await page.waitForURL((url) =>
|
||||||
'https://gitbook-open-e2e-sites.gitbook.io/api-multi-versions-va/2.0/reference/api-reference/pets?fallback=true'
|
url.pathname.includes(
|
||||||
|
'api-multi-versions-va/2.0/reference/api-reference/pets'
|
||||||
|
)
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -222,7 +228,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'GitBook Site (Sections and Section Groups)',
|
name: 'GitBook Site (Sections and Section Groups)',
|
||||||
baseUrl: 'https://gitbook-open-e2e-sites.gitbook.io/sections/',
|
contentBaseURL: 'https://gitbook-open-e2e-sites.gitbook.io/sections/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Site with sections and section groups',
|
name: 'Site with sections and section groups',
|
||||||
@@ -244,16 +250,14 @@ const testCases: TestsCase[] = [
|
|||||||
const sectionGroupDropdown = await page.getByText('Test Section Group 1');
|
const sectionGroupDropdown = await page.getByText('Test Section Group 1');
|
||||||
await sectionGroupDropdown.hover();
|
await sectionGroupDropdown.hover();
|
||||||
await page.getByText('Section B').click();
|
await page.getByText('Section B').click();
|
||||||
await page.waitForURL(
|
await page.waitForURL((url) => url.pathname.includes('/sections/sections-4'));
|
||||||
'https://gitbook-open-e2e-sites.gitbook.io/sections/sections-4'
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'GitBook',
|
name: 'GitBook',
|
||||||
baseUrl: 'https://docs.gitbook.com',
|
contentBaseURL: 'https://docs.gitbook.com',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Home',
|
name: 'Home',
|
||||||
@@ -297,7 +301,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Versioning',
|
name: 'Versioning',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
contentBaseURL: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Revision',
|
name: 'Revision',
|
||||||
@@ -308,7 +312,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'PDF',
|
name: 'PDF',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
contentBaseURL: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'PDF',
|
name: 'PDF',
|
||||||
@@ -316,12 +320,56 @@ const testCases: TestsCase[] = [
|
|||||||
screenshot: {
|
screenshot: {
|
||||||
waitForTOCScrolling: false,
|
waitForTOCScrolling: false,
|
||||||
},
|
},
|
||||||
|
run: async (page) => {
|
||||||
|
await expect(page.locator('[data-testid="print-button"]')).toBeVisible();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Space PDF',
|
||||||
|
tests: [
|
||||||
|
{
|
||||||
|
name: 'Main content',
|
||||||
|
url: async () => {
|
||||||
|
const data = await getSiteAPIToken(
|
||||||
|
'https://gitbook.gitbook.io/test-gitbook-open/'
|
||||||
|
);
|
||||||
|
|
||||||
|
const searchParams = new URLSearchParams();
|
||||||
|
searchParams.set('limit', '10');
|
||||||
|
searchParams.set('token', data.apiToken);
|
||||||
|
|
||||||
|
return `~space/${data.space}/~gitbook/pdf?${searchParams.toString()}`;
|
||||||
|
},
|
||||||
|
screenshot: false,
|
||||||
|
run: async (page) => {
|
||||||
|
await expect(page.locator('[data-testid="print-button"]')).toBeVisible();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Change request',
|
||||||
|
url: async () => {
|
||||||
|
const data = await getSiteAPIToken(
|
||||||
|
'https://gitbook.gitbook.io/test-gitbook-open/'
|
||||||
|
);
|
||||||
|
|
||||||
|
const searchParams = new URLSearchParams();
|
||||||
|
searchParams.set('limit', '10');
|
||||||
|
searchParams.set('token', data.apiToken);
|
||||||
|
|
||||||
|
return `~space/${data.space}/~/changes/HrtgUd5MlFusCMv1elA7/~gitbook/pdf?${searchParams.toString()}`;
|
||||||
|
},
|
||||||
|
screenshot: false,
|
||||||
|
run: async (page) => {
|
||||||
|
await expect(page.locator('[data-testid="print-button"]')).toBeVisible();
|
||||||
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Content tests',
|
name: 'Content tests',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
contentBaseURL: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Text',
|
name: 'Text',
|
||||||
@@ -484,7 +532,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Page options',
|
name: 'Page options',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
contentBaseURL: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Hidden',
|
name: 'Hidden',
|
||||||
@@ -518,7 +566,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Customization',
|
name: 'Customization',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
contentBaseURL: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
||||||
tests: allThemeModes.flatMap((themeMode) => [
|
tests: allThemeModes.flatMap((themeMode) => [
|
||||||
{
|
{
|
||||||
name: `Without header - Theme mode ${themeMode}`,
|
name: `Without header - Theme mode ${themeMode}`,
|
||||||
@@ -600,6 +648,23 @@ const testCases: TestsCase[] = [
|
|||||||
run: waitForCookiesDialog,
|
run: waitForCookiesDialog,
|
||||||
})),
|
})),
|
||||||
]),
|
]),
|
||||||
|
...allSearchStyles.flatMap((searchStyle) => ({
|
||||||
|
name: `Theme ${theme} – Search ${searchStyle} – Mode ${themeMode}`,
|
||||||
|
url: getCustomizationURL({
|
||||||
|
styling: {
|
||||||
|
theme,
|
||||||
|
search: searchStyle,
|
||||||
|
},
|
||||||
|
header: {
|
||||||
|
links: headerLinks,
|
||||||
|
},
|
||||||
|
themes: {
|
||||||
|
default: themeMode,
|
||||||
|
toggeable: false,
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
run: waitForCookiesDialog,
|
||||||
|
})),
|
||||||
]),
|
]),
|
||||||
// Deprecated header themes
|
// Deprecated header themes
|
||||||
...allDeprecatedThemePresets.flatMap((preset) => [
|
...allDeprecatedThemePresets.flatMap((preset) => [
|
||||||
@@ -652,7 +717,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Ads',
|
name: 'Ads',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
contentBaseURL: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Without previewed ads',
|
name: 'Without previewed ads',
|
||||||
@@ -663,7 +728,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Shared space navigation (first site)',
|
name: 'Shared space navigation (first site)',
|
||||||
baseUrl: 'https://gitbook-open-e2e-sites.gitbook.io/shared-space-uno/',
|
contentBaseURL: 'https://gitbook-open-e2e-sites.gitbook.io/shared-space-uno/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Navigation to shared space',
|
name: 'Navigation to shared space',
|
||||||
@@ -684,7 +749,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Shared space navigation (second site)',
|
name: 'Shared space navigation (second site)',
|
||||||
baseUrl: 'https://gitbook-open-e2e-sites.gitbook.io/shared-space-dos/',
|
contentBaseURL: 'https://gitbook-open-e2e-sites.gitbook.io/shared-space-dos/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Navigation to shared space',
|
name: 'Navigation to shared space',
|
||||||
@@ -704,7 +769,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Site Redirects',
|
name: 'Site Redirects',
|
||||||
baseUrl: 'https://gitbook-open-e2e-sites.gitbook.io/gitbook-doc/',
|
contentBaseURL: 'https://gitbook-open-e2e-sites.gitbook.io/gitbook-doc/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Redirect to SSO page',
|
name: 'Redirect to SSO page',
|
||||||
@@ -718,7 +783,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Share links',
|
name: 'Share links',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/gbo-tests-share-links/',
|
contentBaseURL: 'https://gitbook.gitbook.io/gbo-tests-share-links/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Valid link',
|
name: 'Valid link',
|
||||||
@@ -738,11 +803,11 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Visitor Auth - Space',
|
name: 'Visitor Auth - Space',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/gbo-va-space/',
|
contentBaseURL: 'https://gitbook.gitbook.io/gbo-va-space/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'First',
|
name: 'First',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = '70b844d0-c519-4532-8586-5970ce48c537';
|
const privateKey = '70b844d0-c519-4532-8586-5970ce48c537';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -754,7 +819,7 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `first?jwt_token=${token}`;
|
return `first?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: async (page) => {
|
run: async (page) => {
|
||||||
await expect(
|
await expect(
|
||||||
page.getByRole('heading', { level: 1, name: 'first' })
|
page.getByRole('heading', { level: 1, name: 'first' })
|
||||||
@@ -764,7 +829,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Second',
|
name: 'Second',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = '70b844d0-c519-4532-8586-5970ce48c537';
|
const privateKey = '70b844d0-c519-4532-8586-5970ce48c537';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -776,7 +841,7 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `second?jwt_token=${token}`;
|
return `second?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: async (page) => {
|
run: async (page) => {
|
||||||
await expect(
|
await expect(
|
||||||
page.getByRole('heading', { level: 1, name: 'second' })
|
page.getByRole('heading', { level: 1, name: 'second' })
|
||||||
@@ -788,11 +853,11 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Visitor Auth - Collection',
|
name: 'Visitor Auth - Collection',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/gbo-va-collection/',
|
contentBaseURL: 'https://gitbook.gitbook.io/gbo-va-collection/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Root',
|
name: 'Root',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = 'af5688dc-f0b6-4146-9b1d-6d834c62c980';
|
const privateKey = 'af5688dc-f0b6-4146-9b1d-6d834c62c980';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -804,12 +869,12 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `?jwt_token=${token}`;
|
return `?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: waitForCookiesDialog,
|
run: waitForCookiesDialog,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Primary (Space A)',
|
name: 'Primary (Space A)',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = 'af5688dc-f0b6-4146-9b1d-6d834c62c980';
|
const privateKey = 'af5688dc-f0b6-4146-9b1d-6d834c62c980';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -820,13 +885,16 @@ const testCases: TestsCase[] = [
|
|||||||
expiresIn: '24h',
|
expiresIn: '24h',
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Test that when accessing the non-canonical URL, we are redirected to the canonical URL
|
||||||
|
// with the jwt token in the query string
|
||||||
return `spacea?jwt_token=${token}`;
|
return `spacea?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: waitForCookiesDialog,
|
run: waitForCookiesDialog,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Space B',
|
name: 'Space B',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = 'af5688dc-f0b6-4146-9b1d-6d834c62c980';
|
const privateKey = 'af5688dc-f0b6-4146-9b1d-6d834c62c980';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -838,12 +906,12 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `spaceb?jwt_token=${token}`;
|
return `spaceb?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: waitForCookiesDialog,
|
run: waitForCookiesDialog,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Space C',
|
name: 'Space C',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = 'af5688dc-f0b6-4146-9b1d-6d834c62c980';
|
const privateKey = 'af5688dc-f0b6-4146-9b1d-6d834c62c980';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -855,18 +923,18 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `spacec?jwt_token=${token}`;
|
return `spacec?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: waitForCookiesDialog,
|
run: waitForCookiesDialog,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Visitor Auth - Space (custom domain)',
|
name: 'Visitor Auth - Space (custom domain)',
|
||||||
baseUrl: 'https://test.gitbook.community/',
|
contentBaseURL: 'https://test.gitbook.community/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Root',
|
name: 'Root',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = '19c8166f-c436-4ed1-a24e-60954b804021';
|
const privateKey = '19c8166f-c436-4ed1-a24e-60954b804021';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -878,12 +946,12 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `?jwt_token=${token}`;
|
return `?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: waitForCookiesDialog,
|
run: waitForCookiesDialog,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'First',
|
name: 'First',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = '19c8166f-c436-4ed1-a24e-60954b804021';
|
const privateKey = '19c8166f-c436-4ed1-a24e-60954b804021';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -895,7 +963,7 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `first?jwt_token=${token}`;
|
return `first?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: async (page) => {
|
run: async (page) => {
|
||||||
await expect(
|
await expect(
|
||||||
page.getByRole('heading', { level: 1, name: 'first' })
|
page.getByRole('heading', { level: 1, name: 'first' })
|
||||||
@@ -905,7 +973,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Custom page',
|
name: 'Custom page',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = '19c8166f-c436-4ed1-a24e-60954b804021';
|
const privateKey = '19c8166f-c436-4ed1-a24e-60954b804021';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -917,12 +985,12 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `custom-page?jwt_token=${token}`;
|
return `custom-page?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: waitForCookiesDialog,
|
run: waitForCookiesDialog,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Inner page',
|
name: 'Inner page',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = '19c8166f-c436-4ed1-a24e-60954b804021';
|
const privateKey = '19c8166f-c436-4ed1-a24e-60954b804021';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -934,14 +1002,14 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `custom-page/inner-page?jwt_token=${token}`;
|
return `custom-page/inner-page?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: waitForCookiesDialog,
|
run: waitForCookiesDialog,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Visitor Auth - Site (redirects to fallback/auth URL)',
|
name: 'Visitor Auth - Site (redirects to fallback/auth URL)',
|
||||||
baseUrl: 'https://gitbook-open-e2e-sites.gitbook.io/va-site-redirects-fallback/',
|
contentBaseURL: 'https://gitbook-open-e2e-sites.gitbook.io/va-site-redirects-fallback/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Redirect to fallback on invalid token pulled from cookie',
|
name: 'Redirect to fallback on invalid token pulled from cookie',
|
||||||
@@ -973,7 +1041,7 @@ const testCases: TestsCase[] = [
|
|||||||
{
|
{
|
||||||
name: 'Show error message when invalid token is passed to url',
|
name: 'Show error message when invalid token is passed to url',
|
||||||
screenshot: false,
|
screenshot: false,
|
||||||
url: (() => {
|
url: () => {
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
name: 'gitbook-open-tests',
|
name: 'gitbook-open-tests',
|
||||||
@@ -984,7 +1052,7 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `?jwt_token=${token}`;
|
return `?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: async (page) => {
|
run: async (page) => {
|
||||||
await expect(page.locator('pre')).toContainText(
|
await expect(page.locator('pre')).toContainText(
|
||||||
'Error while validating the JWT token. Reason: The token signature is invalid.'
|
'Error while validating the JWT token. Reason: The token signature is invalid.'
|
||||||
@@ -995,7 +1063,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Languages',
|
name: 'Languages',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
contentBaseURL: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
||||||
tests: allLocales.map((locale) => ({
|
tests: allLocales.map((locale) => ({
|
||||||
name: locale,
|
name: locale,
|
||||||
url: getCustomizationURL({
|
url: getCustomizationURL({
|
||||||
@@ -1011,7 +1079,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'SEO',
|
name: 'SEO',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
contentBaseURL: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Index by default',
|
name: 'Index by default',
|
||||||
@@ -1062,11 +1130,11 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Adaptive Content - VA',
|
name: 'Adaptive Content - VA',
|
||||||
baseUrl: 'https://gitbook-open-e2e-sites.gitbook.io/adaptive-content-va/',
|
contentBaseURL: 'https://gitbook-open-e2e-sites.gitbook.io/adaptive-content-va/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'isAlphaUser',
|
name: 'isAlphaUser',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = 'afe09cdf-0f43-480a-b54c-8b1f62f174f9';
|
const privateKey = 'afe09cdf-0f43-480a-b54c-8b1f62f174f9';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -1079,7 +1147,7 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `?jwt_token=${token}`;
|
return `?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: async (page) => {
|
run: async (page) => {
|
||||||
const alphaUserPage = page
|
const alphaUserPage = page
|
||||||
.locator('a[class*="group\\/toclink"]')
|
.locator('a[class*="group\\/toclink"]')
|
||||||
@@ -1093,7 +1161,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'isBetaUser',
|
name: 'isBetaUser',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = 'afe09cdf-0f43-480a-b54c-8b1f62f174f9';
|
const privateKey = 'afe09cdf-0f43-480a-b54c-8b1f62f174f9';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -1106,7 +1174,7 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `?jwt_token=${token}`;
|
return `?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: async (page) => {
|
run: async (page) => {
|
||||||
const alphaUserPage = page
|
const alphaUserPage = page
|
||||||
.locator('a[class*="group\\/toclink"]')
|
.locator('a[class*="group\\/toclink"]')
|
||||||
@@ -1120,7 +1188,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'isAlphaUser & isBetaUser',
|
name: 'isAlphaUser & isBetaUser',
|
||||||
url: (() => {
|
url: () => {
|
||||||
const privateKey = 'afe09cdf-0f43-480a-b54c-8b1f62f174f9';
|
const privateKey = 'afe09cdf-0f43-480a-b54c-8b1f62f174f9';
|
||||||
const token = jwt.sign(
|
const token = jwt.sign(
|
||||||
{
|
{
|
||||||
@@ -1134,7 +1202,7 @@ const testCases: TestsCase[] = [
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
return `?jwt_token=${token}`;
|
return `?jwt_token=${token}`;
|
||||||
})(),
|
},
|
||||||
run: async (page) => {
|
run: async (page) => {
|
||||||
const alphaUserPage = page
|
const alphaUserPage = page
|
||||||
.locator('a[class*="group\\/toclink"]')
|
.locator('a[class*="group\\/toclink"]')
|
||||||
@@ -1150,7 +1218,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Adaptive Content - Public',
|
name: 'Adaptive Content - Public',
|
||||||
baseUrl: 'https://gitbook-open-e2e-sites.gitbook.io/adaptive-content-public/',
|
contentBaseURL: 'https://gitbook-open-e2e-sites.gitbook.io/adaptive-content-public/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'No custom cookie',
|
name: 'No custom cookie',
|
||||||
@@ -1293,7 +1361,7 @@ const testCases: TestsCase[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Tables',
|
name: 'Tables',
|
||||||
baseUrl: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
contentBaseURL: 'https://gitbook.gitbook.io/test-gitbook-open/',
|
||||||
tests: [
|
tests: [
|
||||||
{
|
{
|
||||||
name: 'Default table',
|
name: 'Default table',
|
||||||
|
|||||||
@@ -2,12 +2,13 @@ import { argosScreenshot } from '@argos-ci/playwright';
|
|||||||
import {
|
import {
|
||||||
CustomizationBackground,
|
CustomizationBackground,
|
||||||
CustomizationCorners,
|
CustomizationCorners,
|
||||||
CustomizationFont,
|
CustomizationDefaultFont,
|
||||||
type CustomizationHeaderItem,
|
type CustomizationHeaderItem,
|
||||||
CustomizationHeaderPreset,
|
CustomizationHeaderPreset,
|
||||||
CustomizationIconsStyle,
|
CustomizationIconsStyle,
|
||||||
CustomizationLinksStyle,
|
CustomizationLinksStyle,
|
||||||
CustomizationLocale,
|
CustomizationLocale,
|
||||||
|
CustomizationSearchStyle,
|
||||||
CustomizationSidebarBackgroundStyle,
|
CustomizationSidebarBackgroundStyle,
|
||||||
CustomizationSidebarListStyle,
|
CustomizationSidebarListStyle,
|
||||||
CustomizationTheme,
|
CustomizationTheme,
|
||||||
@@ -20,14 +21,14 @@ import deepMerge from 'deepmerge';
|
|||||||
import rison from 'rison';
|
import rison from 'rison';
|
||||||
import type { DeepPartial } from 'ts-essentials';
|
import type { DeepPartial } from 'ts-essentials';
|
||||||
|
|
||||||
import { getContentTestURL } from '../tests/utils';
|
import { getContentTestURL, getTestURL } from '../tests/utils';
|
||||||
|
|
||||||
export interface Test {
|
export interface Test {
|
||||||
name: string;
|
name: string;
|
||||||
/**
|
/**
|
||||||
* URL to visit for testing.
|
* URL to visit for testing.
|
||||||
*/
|
*/
|
||||||
url: string;
|
url: string | (() => string | Promise<string>);
|
||||||
cookies?: Parameters<BrowserContext['addCookies']>[0];
|
cookies?: Parameters<BrowserContext['addCookies']>[0];
|
||||||
/**
|
/**
|
||||||
* Test to run
|
* Test to run
|
||||||
@@ -60,11 +61,11 @@ export interface Test {
|
|||||||
only?: boolean;
|
only?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface TestsCase {
|
export type TestsCase = {
|
||||||
name: string;
|
name: string;
|
||||||
baseUrl: string;
|
|
||||||
tests: Array<Test>;
|
tests: Array<Test>;
|
||||||
}
|
contentBaseURL?: string;
|
||||||
|
};
|
||||||
|
|
||||||
export const allLocales: CustomizationLocale[] = [
|
export const allLocales: CustomizationLocale[] = [
|
||||||
CustomizationLocale.Fr,
|
CustomizationLocale.Fr,
|
||||||
@@ -109,6 +110,11 @@ export const allSidebarBackgroundStyles: CustomizationSidebarBackgroundStyle[] =
|
|||||||
CustomizationSidebarBackgroundStyle.Filled,
|
CustomizationSidebarBackgroundStyle.Filled,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
export const allSearchStyles: CustomizationSearchStyle[] = [
|
||||||
|
CustomizationSearchStyle.Prominent,
|
||||||
|
CustomizationSearchStyle.Subtle,
|
||||||
|
];
|
||||||
|
|
||||||
// Common customization settings
|
// Common customization settings
|
||||||
|
|
||||||
export const headerLinks: CustomizationHeaderItem[] = [
|
export const headerLinks: CustomizationHeaderItem[] = [
|
||||||
@@ -142,9 +148,14 @@ export function runTestCases(testCases: TestsCase[]) {
|
|||||||
test.describe(testCase.name, () => {
|
test.describe(testCase.name, () => {
|
||||||
for (const testEntry of testCase.tests) {
|
for (const testEntry of testCase.tests) {
|
||||||
const testFn = testEntry.only ? test.only : test;
|
const testFn = testEntry.only ? test.only : test;
|
||||||
testFn(testEntry.name, async ({ page, baseURL, context }) => {
|
testFn(testEntry.name, async ({ page, context }) => {
|
||||||
const contentUrl = new URL(testEntry.url, testCase.baseUrl);
|
const testEntryPathname =
|
||||||
const url = getContentTestURL(contentUrl.toString(), baseURL);
|
typeof testEntry.url === 'function' ? await testEntry.url() : testEntry.url;
|
||||||
|
const url = testCase.contentBaseURL
|
||||||
|
? getContentTestURL(
|
||||||
|
new URL(testEntryPathname, testCase.contentBaseURL).toString()
|
||||||
|
)
|
||||||
|
: getTestURL(testEntryPathname);
|
||||||
if (testEntry.cookies) {
|
if (testEntry.cookies) {
|
||||||
await context.addCookies(
|
await context.addCookies(
|
||||||
testEntry.cookies.map((cookie) => ({
|
testEntry.cookies.map((cookie) => ({
|
||||||
@@ -244,7 +255,7 @@ export function getCustomizationURL(partial: DeepPartial<SiteCustomizationSettin
|
|||||||
dangerColor: { light: '#FB2C36', dark: '#FB2C36' },
|
dangerColor: { light: '#FB2C36', dark: '#FB2C36' },
|
||||||
successColor: { light: '#00C950', dark: '#00C950' },
|
successColor: { light: '#00C950', dark: '#00C950' },
|
||||||
corners: CustomizationCorners.Rounded,
|
corners: CustomizationCorners.Rounded,
|
||||||
font: CustomizationFont.Inter,
|
font: CustomizationDefaultFont.Inter,
|
||||||
background: CustomizationBackground.Plain,
|
background: CustomizationBackground.Plain,
|
||||||
icons: CustomizationIconsStyle.Regular,
|
icons: CustomizationIconsStyle.Regular,
|
||||||
links: CustomizationLinksStyle.Default,
|
links: CustomizationLinksStyle.Default,
|
||||||
@@ -252,6 +263,7 @@ export function getCustomizationURL(partial: DeepPartial<SiteCustomizationSettin
|
|||||||
background: CustomizationSidebarBackgroundStyle.Default,
|
background: CustomizationSidebarBackgroundStyle.Default,
|
||||||
list: CustomizationSidebarListStyle.Default,
|
list: CustomizationSidebarListStyle.Default,
|
||||||
},
|
},
|
||||||
|
search: CustomizationSearchStyle.Subtle,
|
||||||
},
|
},
|
||||||
internationalization: {
|
internationalization: {
|
||||||
locale: CustomizationLocale.En,
|
locale: CustomizationLocale.En,
|
||||||
|
|||||||
@@ -1,19 +1,13 @@
|
|||||||
const { withSentryConfig } = require('@sentry/nextjs');
|
module.exports = {
|
||||||
|
|
||||||
module.exports = withSentryConfig(
|
|
||||||
{
|
|
||||||
env: {
|
env: {
|
||||||
BUILD_VERSION: (process.env.GITHUB_SHA ?? '').slice(0, 7),
|
BUILD_VERSION: (process.env.GITHUB_SHA ?? '').slice(0, 7),
|
||||||
SENTRY_RELEASE: process.env.SENTRY_RELEASE ?? '',
|
|
||||||
SENTRY_DSN: process.env.SENTRY_DSN ?? '',
|
|
||||||
SENTRY_ENVIRONMENT: process.env.SENTRY_ENVIRONMENT ?? 'development',
|
|
||||||
GITBOOK_ASSETS_PREFIX: process.env.GITBOOK_ASSETS_PREFIX,
|
GITBOOK_ASSETS_PREFIX: process.env.GITBOOK_ASSETS_PREFIX,
|
||||||
GITBOOK_ICONS_URL: process.env.GITBOOK_ICONS_URL,
|
GITBOOK_ICONS_URL: process.env.GITBOOK_ICONS_URL,
|
||||||
GITBOOK_ICONS_TOKEN: process.env.GITBOOK_ICONS_TOKEN,
|
GITBOOK_ICONS_TOKEN: process.env.GITBOOK_ICONS_TOKEN,
|
||||||
NEXT_SERVER_ACTIONS_ENCRYPTION_KEY: process.env.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY,
|
NEXT_SERVER_ACTIONS_ENCRYPTION_KEY: process.env.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY,
|
||||||
},
|
},
|
||||||
|
|
||||||
webpack(config, { dev, webpack }) {
|
webpack(config) {
|
||||||
config.resolve.fallback = {
|
config.resolve.fallback = {
|
||||||
...config.resolve.fallback,
|
...config.resolve.fallback,
|
||||||
|
|
||||||
@@ -23,21 +17,6 @@ module.exports = withSentryConfig(
|
|||||||
http: false,
|
http: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Tree shake debug code for Sentry
|
|
||||||
// https://docs.sentry.io/platforms/javascript/guides/nextjs/configuration/tree-shaking/#tree-shaking-with-nextjs
|
|
||||||
if (!dev) {
|
|
||||||
config.plugins.push(
|
|
||||||
new webpack.DefinePlugin({
|
|
||||||
__SENTRY_DEBUG__: false,
|
|
||||||
// We always init Sentry with enableTracing: false for now, so this is useless
|
|
||||||
__SENTRY_TRACING__: false,
|
|
||||||
__RRWEB_EXCLUDE_IFRAME__: true,
|
|
||||||
__RRWEB_EXCLUDE_SHADOW_DOM__: true,
|
|
||||||
__SENTRY_EXCLUDE_REPLAY_WORKER__: true,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -67,17 +46,4 @@ module.exports = withSentryConfig(
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
};
|
||||||
{
|
|
||||||
release: process.env.SENTRY_RELEASE,
|
|
||||||
org: process.env.SENTRY_ORG,
|
|
||||||
project: process.env.SENTRY_PROJECT,
|
|
||||||
authToken: process.env.SENTRY_AUTH_TOKEN,
|
|
||||||
|
|
||||||
// Upload a larger set of source maps for prettier stack traces (increases build time)
|
|
||||||
widenClientFileUpload: true,
|
|
||||||
// Routes browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers (increases server load)
|
|
||||||
tunnelRoute: '/~gitbook/monitoring',
|
|
||||||
disableLogger: true,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gitbook",
|
"name": "gitbook",
|
||||||
"version": "0.6.5",
|
"version": "0.8.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "env-cmd --silent -f ../../.env.local next dev",
|
"dev": "env-cmd --silent -f ../../.env.local next dev",
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
"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"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@gitbook/api": "0.96.1",
|
"@gitbook/api": "*",
|
||||||
"@gitbook/cache-do": "workspace:*",
|
"@gitbook/cache-do": "workspace:*",
|
||||||
"@gitbook/cache-tags": "workspace:*",
|
"@gitbook/cache-tags": "workspace:*",
|
||||||
"@gitbook/colors": "workspace:*",
|
"@gitbook/colors": "workspace:*",
|
||||||
@@ -29,7 +29,6 @@
|
|||||||
"@radix-ui/react-checkbox": "^1.0.4",
|
"@radix-ui/react-checkbox": "^1.0.4",
|
||||||
"@radix-ui/react-navigation-menu": "^1.2.3",
|
"@radix-ui/react-navigation-menu": "^1.2.3",
|
||||||
"@radix-ui/react-popover": "^1.0.7",
|
"@radix-ui/react-popover": "^1.0.7",
|
||||||
"@sentry/nextjs": "8.35.0",
|
|
||||||
"@sindresorhus/fnv1a": "^3.1.0",
|
"@sindresorhus/fnv1a": "^3.1.0",
|
||||||
"@tailwindcss/container-queries": "^0.1.1",
|
"@tailwindcss/container-queries": "^0.1.1",
|
||||||
"@tailwindcss/typography": "^0.5.16",
|
"@tailwindcss/typography": "^0.5.16",
|
||||||
@@ -59,12 +58,13 @@
|
|||||||
"react-hotkeys-hook": "^4.4.1",
|
"react-hotkeys-hook": "^4.4.1",
|
||||||
"rison": "^0.1.1",
|
"rison": "^0.1.1",
|
||||||
"server-only": "^0.0.1",
|
"server-only": "^0.0.1",
|
||||||
"shiki": "^1.27.2",
|
"shiki": "^3.2.0",
|
||||||
"tailwind-merge": "^2.2.0",
|
"tailwind-merge": "^2.2.0",
|
||||||
"tailwind-shades": "^1.1.2",
|
"tailwind-shades": "^1.1.2",
|
||||||
"url-join": "^5.0.0",
|
"url-join": "^5.0.0",
|
||||||
"usehooks-ts": "^3.1.0",
|
"usehooks-ts": "^3.1.0",
|
||||||
"ai": "^4.1.46"
|
"ai": "^4.1.46",
|
||||||
|
"jwt-decode": "^4.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@argos-ci/playwright": "^3.10.0",
|
"@argos-ci/playwright": "^3.10.0",
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ export default defineConfig({
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
use: {
|
use: {
|
||||||
baseURL: process.env.BASE_URL || 'http://localhost:3000',
|
|
||||||
trace: 'on-first-retry',
|
trace: 'on-first-retry',
|
||||||
screenshot: 'only-on-failure',
|
screenshot: 'only-on-failure',
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
import * as Sentry from '@sentry/browser';
|
|
||||||
|
|
||||||
const dsn = process.env.SENTRY_DSN;
|
|
||||||
if (dsn) {
|
|
||||||
Sentry.init({
|
|
||||||
dsn,
|
|
||||||
release: process.env.SENTRY_RELEASE,
|
|
||||||
|
|
||||||
// Disable tracing as it creates additional requests in an env where subrequests are limited.
|
|
||||||
tracesSampleRate: 0,
|
|
||||||
|
|
||||||
// Disable transactions as it creates additional requests in an env where subrequests are limited.
|
|
||||||
// https://docs.sentry.io/platforms/node/configuration/filtering/#using--3
|
|
||||||
beforeSendTransaction: () => {
|
|
||||||
return null;
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -1,14 +1,8 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { captureException } from '@sentry/nextjs';
|
|
||||||
import NextError from 'next/error';
|
import NextError from 'next/error';
|
||||||
import { useEffect } from 'react';
|
|
||||||
|
|
||||||
export default function GlobalError({ error }: { error: Error }) {
|
|
||||||
useEffect(() => {
|
|
||||||
captureException(error);
|
|
||||||
}, [error]);
|
|
||||||
|
|
||||||
|
export default function GlobalError() {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@@ -38,10 +38,9 @@ export async function generateMetadata(props: PageProps): Promise<Metadata> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function getSitePageProps(props: PageProps) {
|
async function getSitePageProps(props: PageProps) {
|
||||||
const { params: rawParams, searchParams: rawSearchParams } = props;
|
const { params: rawParams } = props;
|
||||||
|
|
||||||
const params = await rawParams;
|
const params = await rawParams;
|
||||||
const searchParams = await rawSearchParams;
|
|
||||||
|
|
||||||
const pointer = await getSiteContentPointer();
|
const pointer = await getSiteContentPointer();
|
||||||
const context = await fetchV1ContextForSitePointer(pointer);
|
const context = await fetchV1ContextForSitePointer(pointer);
|
||||||
@@ -49,7 +48,5 @@ async function getSitePageProps(props: PageProps) {
|
|||||||
return {
|
return {
|
||||||
context,
|
context,
|
||||||
pageParams: params,
|
pageParams: params,
|
||||||
redirectOnFallback: true,
|
|
||||||
fallback: !!searchParams.fallback,
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { captureException, withScope } from '@sentry/nextjs';
|
|
||||||
import React from 'react';
|
|
||||||
|
|
||||||
import { Button } from '@/components/primitives/Button';
|
import { Button } from '@/components/primitives/Button';
|
||||||
import { t, useLanguage } from '@/intl/client';
|
import { t, useLanguage } from '@/intl/client';
|
||||||
import { tcls } from '@/lib/tailwind';
|
import { tcls } from '@/lib/tailwind';
|
||||||
@@ -11,18 +8,9 @@ export default function ErrorPage(props: {
|
|||||||
error: Error & { digest?: string };
|
error: Error & { digest?: string };
|
||||||
reset: () => void;
|
reset: () => void;
|
||||||
}) {
|
}) {
|
||||||
const { error, reset } = props;
|
const { reset } = props;
|
||||||
const language = useLanguage();
|
const language = useLanguage();
|
||||||
|
|
||||||
React.useEffect(() => {
|
|
||||||
withScope((scope) => {
|
|
||||||
if ('_componentStack' in error && error._componentStack) {
|
|
||||||
scope.setExtra('componentStack', error._componentStack);
|
|
||||||
}
|
|
||||||
captureException(error);
|
|
||||||
});
|
|
||||||
}, [error]);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={tcls(
|
className={tcls(
|
||||||
|
|||||||
@@ -1,24 +1,9 @@
|
|||||||
import { CustomizationRootLayout } from '@/components/RootLayout';
|
import { PDFRootLayout } from '@/components/PDF';
|
||||||
import { defaultCustomizationForSpace } from '@/lib/utils';
|
|
||||||
|
|
||||||
import { getV1ContextForPDF } from './pointer';
|
import { getV1ContextForPDF } from './pointer';
|
||||||
|
|
||||||
/**
|
export default async function RootLayout(props: { children: React.ReactNode }) {
|
||||||
* Layout to be used for the site root. It fetches the customization data for the
|
|
||||||
* site or space and initializes the CustomizationRootLayout with it.
|
|
||||||
*/
|
|
||||||
export default async function PDFRootLayout(props: { children: React.ReactNode }) {
|
|
||||||
const { children } = props;
|
const { children } = props;
|
||||||
|
|
||||||
const context = await getV1ContextForPDF();
|
const context = await getV1ContextForPDF();
|
||||||
|
|
||||||
return (
|
return <PDFRootLayout context={context}>{children}</PDFRootLayout>;
|
||||||
<CustomizationRootLayout
|
|
||||||
customization={
|
|
||||||
'customization' in context ? context.customization : defaultCustomizationForSpace()
|
|
||||||
}
|
|
||||||
>
|
|
||||||
{children}
|
|
||||||
</CustomizationRootLayout>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,361 +1,17 @@
|
|||||||
import {
|
import { PDFPage, generatePDFMetadata } from '@/components/PDF';
|
||||||
type CustomizationSettings,
|
|
||||||
type Revision,
|
|
||||||
type RevisionPageDocument,
|
|
||||||
type RevisionPageGroup,
|
|
||||||
RevisionPageType,
|
|
||||||
type SiteCustomizationSettings,
|
|
||||||
SiteInsightsTrademarkPlacement,
|
|
||||||
type Space,
|
|
||||||
} from '@gitbook/api';
|
|
||||||
import { Icon } from '@gitbook/icons';
|
|
||||||
import type { GitBookSpaceContext } from '@v2/lib/context';
|
|
||||||
import { getPageDocument } from '@v2/lib/data';
|
|
||||||
import type { GitBookSpaceLinker } from '@v2/lib/links';
|
|
||||||
import type { Metadata } from 'next';
|
|
||||||
import { notFound } from 'next/navigation';
|
|
||||||
import * as React from 'react';
|
|
||||||
|
|
||||||
import { DocumentView } from '@/components/DocumentView';
|
|
||||||
import { TrademarkLink } from '@/components/TableOfContents/Trademark';
|
|
||||||
import type { PolymorphicComponentProp } from '@/components/utils/types';
|
|
||||||
import { getSpaceLanguage } from '@/intl/server';
|
|
||||||
import { tString } from '@/intl/translate';
|
|
||||||
import { getAbsoluteHref, getPagePDFContainerId } from '@/lib/links';
|
|
||||||
import { resolvePageId } from '@/lib/pages';
|
|
||||||
import { tcls } from '@/lib/tailwind';
|
|
||||||
import { type PDFSearchParams, getPDFSearchParams } from '@/lib/urls';
|
|
||||||
import { defaultCustomizationForSpace } from '@/lib/utils';
|
|
||||||
|
|
||||||
import { PageControlButtons } from './PageControlButtons';
|
|
||||||
import { PrintButton } from './PrintButton';
|
|
||||||
import './pdf.css';
|
|
||||||
import { getV1ContextForPDF } from './pointer';
|
import { getV1ContextForPDF } from './pointer';
|
||||||
|
|
||||||
const DEFAULT_LIMIT = 100;
|
|
||||||
|
|
||||||
export const runtime = 'edge';
|
export const runtime = 'edge';
|
||||||
export const dynamic = 'force-dynamic';
|
export const dynamic = 'force-dynamic';
|
||||||
|
|
||||||
export async function generateMetadata(): Promise<Metadata> {
|
export async function generateMetadata() {
|
||||||
const context = await getV1ContextForPDF();
|
const context = await getV1ContextForPDF();
|
||||||
|
return generatePDFMetadata(context);
|
||||||
return {
|
|
||||||
title: 'site' in context ? context.site.title : context.space.title,
|
|
||||||
robots: 'noindex, nofollow',
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export default async function Page(props: {
|
||||||
* Render a space as a standalone HTML page that can be printed as a PDF.
|
|
||||||
*/
|
|
||||||
export default async function PDFHTMLOutput(props: {
|
|
||||||
searchParams: Promise<{ [key: string]: string }>;
|
searchParams: Promise<{ [key: string]: string }>;
|
||||||
}) {
|
}) {
|
||||||
const searchParams = new URLSearchParams(await props.searchParams);
|
const context = await getV1ContextForPDF();
|
||||||
const pdfParams = getPDFSearchParams(new URLSearchParams(searchParams));
|
return <PDFPage context={context} searchParams={await props.searchParams} />;
|
||||||
|
|
||||||
// Build current PDF URL and preserve all search params
|
|
||||||
let currentPDFUrl = await getAbsoluteHref('~gitbook/pdf', true);
|
|
||||||
currentPDFUrl += `?${searchParams.toString()}`;
|
|
||||||
|
|
||||||
// Fetch the context
|
|
||||||
const baseContext = await getV1ContextForPDF();
|
|
||||||
|
|
||||||
const customization =
|
|
||||||
'customization' in baseContext ? baseContext.customization : defaultCustomizationForSpace();
|
|
||||||
const language = getSpaceLanguage(customization);
|
|
||||||
|
|
||||||
// Compute the pages to render
|
|
||||||
const { pages, total } = selectPages(baseContext.pages, pdfParams);
|
|
||||||
const pageIds = pages.map(
|
|
||||||
({ page }) => [page.id, getPagePDFContainerId(page)] as [string, string]
|
|
||||||
);
|
|
||||||
|
|
||||||
// Build a linker that create anchor links for the pages rendered in the PDF page.
|
|
||||||
const linker: GitBookSpaceLinker = {
|
|
||||||
...baseContext.linker,
|
|
||||||
toPathForPage(input) {
|
|
||||||
if (pages.some((p) => p.page.id === input.page.id)) {
|
|
||||||
return `#${getPagePDFContainerId(input.page, input.anchor)}`;
|
|
||||||
}
|
|
||||||
if (input.page.type === RevisionPageType.Group) {
|
|
||||||
return '#';
|
|
||||||
}
|
|
||||||
|
|
||||||
// Use an absolute URL to the page
|
|
||||||
return input.page.urls.app;
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
const context: GitBookSpaceContext = {
|
|
||||||
...baseContext,
|
|
||||||
linker,
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="print-mode">
|
|
||||||
{pdfParams.back !== 'false' ? (
|
|
||||||
<div className={tcls('fixed', 'left-12', 'top-12', 'print:hidden', 'z-50')}>
|
|
||||||
<a
|
|
||||||
title={tString(language, 'pdf_goback')}
|
|
||||||
href={pdfParams.back ?? linker.toAbsoluteURL(linker.toPathInContent(''))}
|
|
||||||
className={tcls(
|
|
||||||
'flex',
|
|
||||||
'flex-row',
|
|
||||||
'items-center',
|
|
||||||
'justify-center',
|
|
||||||
'text-sm',
|
|
||||||
'text-tint',
|
|
||||||
'hover:text-primary',
|
|
||||||
'p-4',
|
|
||||||
'rounded-full',
|
|
||||||
'bg-white',
|
|
||||||
'shadow-sm',
|
|
||||||
'hover:shadow-md',
|
|
||||||
'border-slate-300',
|
|
||||||
'border'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<Icon icon="arrow-left" className={tcls('size-6')} />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
) : null}
|
|
||||||
|
|
||||||
<div className={tcls('fixed', 'right-12', 'top-12', 'print:hidden', 'z-50')}>
|
|
||||||
<PrintButton
|
|
||||||
title={tString(language, 'pdf_print')}
|
|
||||||
className={tcls(
|
|
||||||
'flex',
|
|
||||||
'flex-row',
|
|
||||||
'items-center',
|
|
||||||
'justify-center',
|
|
||||||
'text-sm',
|
|
||||||
'text-tint',
|
|
||||||
'hover:text-primary',
|
|
||||||
'p-4',
|
|
||||||
'rounded-full',
|
|
||||||
'bg-white',
|
|
||||||
'shadow-sm',
|
|
||||||
'hover:shadow-md',
|
|
||||||
'border-slate-300',
|
|
||||||
'border'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<Icon icon="print" className={tcls('size-6')} />
|
|
||||||
</PrintButton>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<PageControlButtons
|
|
||||||
pageIds={pageIds}
|
|
||||||
pdfHref={currentPDFUrl}
|
|
||||||
singlePageMode={!!pdfParams.only}
|
|
||||||
total={total}
|
|
||||||
limit={pdfParams.limit ?? DEFAULT_LIMIT}
|
|
||||||
trademark={
|
|
||||||
customization.trademark.enabled ? (
|
|
||||||
<TrademarkLink
|
|
||||||
space={context.space}
|
|
||||||
customization={customization}
|
|
||||||
placement={SiteInsightsTrademarkPlacement.Pdf}
|
|
||||||
/>
|
|
||||||
) : null
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{pdfParams.only ? null : (
|
|
||||||
<PDFSpaceIntro space={context.space} customization={customization} />
|
|
||||||
)}
|
|
||||||
{pages.map(({ page }) =>
|
|
||||||
page.type === 'group' ? (
|
|
||||||
<PDFPageGroup key={page.id} space={context.space} page={page} />
|
|
||||||
) : (
|
|
||||||
<React.Suspense
|
|
||||||
key={page.id}
|
|
||||||
fallback={
|
|
||||||
<PrintPage id={getPagePDFContainerId(page)}>
|
|
||||||
<p>Loading...</p>
|
|
||||||
</PrintPage>
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<PDFPageDocument page={page} context={context} />
|
|
||||||
</React.Suspense>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function PDFSpaceIntro(props: {
|
|
||||||
space: Space;
|
|
||||||
customization: CustomizationSettings | SiteCustomizationSettings;
|
|
||||||
}) {
|
|
||||||
const { space, customization } = props;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<PrintPage isFirst>
|
|
||||||
<div className={tcls('flex', 'items-center', 'justify-center', 'py-12')}>
|
|
||||||
<h1 className={tcls('text-6xl', 'font-bold')}>
|
|
||||||
{customization.title ?? space.title}
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
</PrintPage>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function PDFPageGroup(props: { space: Space; page: RevisionPageGroup }) {
|
|
||||||
const { page } = props;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<PrintPage id={getPagePDFContainerId(page)}>
|
|
||||||
<div
|
|
||||||
className={tcls(
|
|
||||||
'break-before-page',
|
|
||||||
'mt-10',
|
|
||||||
'print:mt-0',
|
|
||||||
'flex',
|
|
||||||
'items-center',
|
|
||||||
'justify-center',
|
|
||||||
'py-12'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<h1 className={tcls('text-5xl', 'font-bold')}>{page.title}</h1>
|
|
||||||
</div>
|
|
||||||
</PrintPage>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function PDFPageDocument(props: {
|
|
||||||
page: RevisionPageDocument;
|
|
||||||
context: GitBookSpaceContext;
|
|
||||||
}) {
|
|
||||||
const { page, context } = props;
|
|
||||||
const { space } = context;
|
|
||||||
const document = await getPageDocument(context.dataFetcher, space, page);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<PrintPage id={getPagePDFContainerId(page)}>
|
|
||||||
<h1 className={tcls('text-4xl', 'font-bold')}>{page.title}</h1>
|
|
||||||
{page.description ? (
|
|
||||||
<p className={tcls('decoration-primary/6', 'mt-2', 'mb-3')}>{page.description}</p>
|
|
||||||
) : null}
|
|
||||||
|
|
||||||
{document ? (
|
|
||||||
<DocumentView
|
|
||||||
document={document}
|
|
||||||
style="mt-6 space-y-6"
|
|
||||||
blockStyle="max-w-full"
|
|
||||||
context={{
|
|
||||||
mode: 'print',
|
|
||||||
contentContext: {
|
|
||||||
...context,
|
|
||||||
page,
|
|
||||||
},
|
|
||||||
getId: (id) => getPagePDFContainerId(page, id),
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
) : null}
|
|
||||||
</PrintPage>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function PrintPage(
|
|
||||||
props: PolymorphicComponentProp<
|
|
||||||
'div',
|
|
||||||
{
|
|
||||||
isFirst?: boolean;
|
|
||||||
}
|
|
||||||
>
|
|
||||||
) {
|
|
||||||
const { children, isFirst, className, ...rest } = props;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
{...rest}
|
|
||||||
className={tcls(
|
|
||||||
className,
|
|
||||||
'my-11',
|
|
||||||
'print:my-0',
|
|
||||||
'mx-auto',
|
|
||||||
'max-w-4xl',
|
|
||||||
'w-full',
|
|
||||||
'p-12',
|
|
||||||
'print:p-0',
|
|
||||||
'shadow-xl',
|
|
||||||
'print:shadow-none',
|
|
||||||
'rounded-sm',
|
|
||||||
'bg-white',
|
|
||||||
'min-h-[29.7cm]',
|
|
||||||
'print:min-h-0',
|
|
||||||
isFirst ? null : 'break-before-page',
|
|
||||||
'break-anywhere'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{children}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
type FlatPageEntry = { page: RevisionPageDocument | RevisionPageGroup; depth: number };
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Compute the ordered flat set of pages to render.
|
|
||||||
*/
|
|
||||||
function selectPages(
|
|
||||||
rootPages: Revision['pages'],
|
|
||||||
params: PDFSearchParams
|
|
||||||
): { pages: FlatPageEntry[]; total: number } {
|
|
||||||
const flattenPage = (
|
|
||||||
page: RevisionPageDocument | RevisionPageGroup,
|
|
||||||
depth: number
|
|
||||||
): FlatPageEntry[] => {
|
|
||||||
return [
|
|
||||||
{ page, depth },
|
|
||||||
...page.pages.flatMap((child) => {
|
|
||||||
if (child.type !== 'document') {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (child.hidden) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
return flattenPage(child, depth + 1);
|
|
||||||
}),
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
const limitTo = (entries: FlatPageEntry[]) => {
|
|
||||||
return {
|
|
||||||
// Apply a soft-limit, the limit can be controlled by the URL to allow testing
|
|
||||||
pages: entries.slice(0, params.limit ?? DEFAULT_LIMIT),
|
|
||||||
total: entries.length,
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
if (params.page) {
|
|
||||||
const found = resolvePageId(rootPages, params.page);
|
|
||||||
if (!found) {
|
|
||||||
notFound();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!params.only) {
|
|
||||||
return limitTo([{ page: found.page, depth: 0 }]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return limitTo(flattenPage(found.page, 0));
|
|
||||||
}
|
|
||||||
|
|
||||||
const allPages = rootPages.flatMap((page) => {
|
|
||||||
if (page.type !== 'document' && page.type !== 'group') {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (page.hidden) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
return flattenPage(page, 0);
|
|
||||||
});
|
|
||||||
return limitTo(allPages);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,23 +4,6 @@ import type { SiteContentPointer, SpaceContentPointer } from '@/lib/api';
|
|||||||
import { getSiteContentPointer, getSpacePointer } from '@/lib/pointer';
|
import { getSiteContentPointer, getSpacePointer } from '@/lib/pointer';
|
||||||
import { fetchV1ContextForSitePointer, fetchV1ContextForSpacePointer } from '@/lib/v1';
|
import { fetchV1ContextForSitePointer, fetchV1ContextForSpacePointer } from '@/lib/v1';
|
||||||
|
|
||||||
/**
|
|
||||||
* PDF generation can be done at the site level (e.g. docs.foo.com/~gitbook/pdf) or
|
|
||||||
* at the space level (e.g. open.gitbook.com/~space/:spaceId/~gitbook/pdf) which is
|
|
||||||
* for PDF export of in-app private spaces.
|
|
||||||
*
|
|
||||||
* This function returns the pointer depending on the context.
|
|
||||||
*/
|
|
||||||
export async function getSiteOrSpacePointerForPDF(): Promise<
|
|
||||||
SiteContentPointer | SpaceContentPointer
|
|
||||||
> {
|
|
||||||
try {
|
|
||||||
return await getSiteContentPointer();
|
|
||||||
} catch (_error) {
|
|
||||||
return getSpacePointer();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the context for the PDF pointer.
|
* Get the context for the PDF pointer.
|
||||||
*/
|
*/
|
||||||
@@ -31,3 +14,18 @@ export async function getV1ContextForPDF(): Promise<GitBookSiteContext | GitBook
|
|||||||
? await fetchV1ContextForSitePointer(pointer)
|
? await fetchV1ContextForSitePointer(pointer)
|
||||||
: await fetchV1ContextForSpacePointer(pointer);
|
: await fetchV1ContextForSpacePointer(pointer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PDF generation can be done at the site level (e.g. docs.foo.com/~gitbook/pdf) or
|
||||||
|
* at the space level (e.g. open.gitbook.com/~space/:spaceId/~gitbook/pdf) which is
|
||||||
|
* for PDF export of in-app private spaces.
|
||||||
|
*
|
||||||
|
* This function returns the pointer depending on the context.
|
||||||
|
*/
|
||||||
|
async function getSiteOrSpacePointerForPDF(): Promise<SiteContentPointer | SpaceContentPointer> {
|
||||||
|
try {
|
||||||
|
return await getSiteContentPointer();
|
||||||
|
} catch (_error) {
|
||||||
|
return getSpacePointer();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import nextOnPagesHandler from '@cloudflare/next-on-pages/fetch-handler';
|
import nextOnPagesHandler from '@cloudflare/next-on-pages/fetch-handler';
|
||||||
|
|
||||||
|
import { withResponseCacheTags } from './lib/cache/response';
|
||||||
import { withMiddlewareHeadersStorage } from './lib/middleware';
|
import { withMiddlewareHeadersStorage } from './lib/middleware';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -9,8 +10,8 @@ import { withMiddlewareHeadersStorage } from './lib/middleware';
|
|||||||
*/
|
*/
|
||||||
export default {
|
export default {
|
||||||
async fetch(request, env, ctx) {
|
async fetch(request, env, ctx) {
|
||||||
const response = await withMiddlewareHeadersStorage(() =>
|
const response = await withResponseCacheTags(() =>
|
||||||
nextOnPagesHandler.fetch(request, env, ctx)
|
withMiddlewareHeadersStorage(() => nextOnPagesHandler.fetch(request, env, ctx))
|
||||||
);
|
);
|
||||||
|
|
||||||
return response;
|
return response;
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { headers } from 'next/headers';
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
import { tcls } from '@/lib/tailwind';
|
import { tcls } from '@/lib/tailwind';
|
||||||
|
import { throwIfDataError } from '@v2/lib/data';
|
||||||
|
|
||||||
import { DateRelative } from '../primitives';
|
import { DateRelative } from '../primitives';
|
||||||
import { RefreshChangeRequestButton } from './RefreshChangeRequestButton';
|
import { RefreshChangeRequestButton } from './RefreshChangeRequestButton';
|
||||||
@@ -47,7 +48,7 @@ function ToolbarLayout(props: { children: React.ReactNode }) {
|
|||||||
*/
|
*/
|
||||||
export async function AdminToolbar(props: AdminToolbarProps) {
|
export async function AdminToolbar(props: AdminToolbarProps) {
|
||||||
const { context } = props;
|
const { context } = props;
|
||||||
const mode = await headers().get('x-gitbook-mode');
|
const mode = (await headers()).get('x-gitbook-mode');
|
||||||
|
|
||||||
if (mode === 'multi-id') {
|
if (mode === 'multi-id') {
|
||||||
// We don't show the admin toolbar in multi-id mode, as it's used for previewing in the dashboard.
|
// We don't show the admin toolbar in multi-id mode, as it's used for previewing in the dashboard.
|
||||||
@@ -107,11 +108,13 @@ async function RevisionToolbar(props: { context: GitBookSiteContext }) {
|
|||||||
const { context } = props;
|
const { context } = props;
|
||||||
const { space, revisionId } = context;
|
const { space, revisionId } = context;
|
||||||
|
|
||||||
const revision = await context.dataFetcher.getRevision({
|
const revision = await throwIfDataError(
|
||||||
|
context.dataFetcher.getRevision({
|
||||||
spaceId: space.id,
|
spaceId: space.id,
|
||||||
revisionId,
|
revisionId,
|
||||||
metadata: true,
|
metadata: true,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ToolbarLayout>
|
<ToolbarLayout>
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ import { IntegrationBlock } from './Integration';
|
|||||||
import { List } from './List';
|
import { List } from './List';
|
||||||
import { ListItem } from './ListItem';
|
import { ListItem } from './ListItem';
|
||||||
import { BlockMath } from './Math';
|
import { BlockMath } from './Math';
|
||||||
import { OpenAPI } from './OpenAPI';
|
import { OpenAPIOperation, OpenAPISchemas } from './OpenAPI';
|
||||||
import { Paragraph } from './Paragraph';
|
import { Paragraph } from './Paragraph';
|
||||||
import { Quote } from './Quote';
|
import { Quote } from './Quote';
|
||||||
import { ReusableContent } from './ReusableContent';
|
import { ReusableContent } from './ReusableContent';
|
||||||
@@ -82,7 +82,9 @@ export function Block<T extends DocumentBlock>(props: BlockProps<T>) {
|
|||||||
return <Table {...props} block={block} />;
|
return <Table {...props} block={block} />;
|
||||||
case 'swagger':
|
case 'swagger':
|
||||||
case 'openapi-operation':
|
case 'openapi-operation':
|
||||||
return <OpenAPI {...props} block={block} />;
|
return <OpenAPIOperation {...props} block={block} />;
|
||||||
|
case 'openapi-schemas':
|
||||||
|
return <OpenAPISchemas {...props} block={block} />;
|
||||||
case 'embed':
|
case 'embed':
|
||||||
return <Embed {...props} block={block} />;
|
return <Embed {...props} block={block} />;
|
||||||
case 'blockquote':
|
case 'blockquote':
|
||||||
@@ -156,6 +158,7 @@ export function BlockSkeleton(props: { block: DocumentBlock; style: ClassValue }
|
|||||||
case 'table':
|
case 'table':
|
||||||
case 'swagger':
|
case 'swagger':
|
||||||
case 'openapi-operation':
|
case 'openapi-operation':
|
||||||
|
case 'openapi-schemas':
|
||||||
case 'math':
|
case 'math':
|
||||||
case 'divider':
|
case 'divider':
|
||||||
case 'content-ref':
|
case 'content-ref':
|
||||||
|
|||||||
@@ -42,19 +42,19 @@ type UnwrappedBlocksProps<TBlock extends DocumentBlock> = DocumentContextProps &
|
|||||||
|
|
||||||
/** Style passed to all blocks */
|
/** Style passed to all blocks */
|
||||||
blockStyle?: ClassValue;
|
blockStyle?: ClassValue;
|
||||||
|
|
||||||
|
/** True if all blocks should be considered offscreen */
|
||||||
|
isOffscreen?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Renders a list of blocks without a wrapper element.
|
* Renders a list of blocks without a wrapper element.
|
||||||
*/
|
*/
|
||||||
export function UnwrappedBlocks<TBlock extends DocumentBlock>(props: UnwrappedBlocksProps<TBlock>) {
|
export function UnwrappedBlocks<TBlock extends DocumentBlock>(props: UnwrappedBlocksProps<TBlock>) {
|
||||||
const { nodes, blockStyle, ...contextProps } = props;
|
const { nodes, blockStyle, isOffscreen: defaultIsOffscreen = false, ...contextProps } = props;
|
||||||
|
|
||||||
let isOffscreen = false;
|
let isOffscreen = defaultIsOffscreen;
|
||||||
|
return nodes.map((node) => {
|
||||||
return (
|
|
||||||
<>
|
|
||||||
{nodes.map((node) => {
|
|
||||||
isOffscreen =
|
isOffscreen =
|
||||||
isOffscreen ||
|
isOffscreen ||
|
||||||
isBlockOffscreen({
|
isBlockOffscreen({
|
||||||
@@ -78,7 +78,5 @@ export function UnwrappedBlocks<TBlock extends DocumentBlock>(props: UnwrappedBl
|
|||||||
{...contextProps}
|
{...contextProps}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
})}
|
});
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import type { DocumentBlockCode } from '@gitbook/api';
|
import type { DocumentBlockCode } from '@gitbook/api';
|
||||||
import { useEffect, useRef, useState } from 'react';
|
import { useEffect, useMemo, useRef, useState } from 'react';
|
||||||
|
|
||||||
import { useInViewportListener } from '@/components/hooks/useInViewportListener';
|
import { useInViewportListener } from '@/components/hooks/useInViewportListener';
|
||||||
import { useScrollListener } from '@/components/hooks/useScrollListener';
|
import { useScrollListener } from '@/components/hooks/useScrollListener';
|
||||||
import { useDebounceCallback, useEventCallback } from 'usehooks-ts';
|
import { useDebounceCallback } from 'usehooks-ts';
|
||||||
import type { BlockProps } from '../Block';
|
import type { BlockProps } from '../Block';
|
||||||
import { CodeBlockRenderer } from './CodeBlockRenderer';
|
import { CodeBlockRenderer } from './CodeBlockRenderer';
|
||||||
import type { HighlightLine, RenderedInline } from './highlight';
|
import type { HighlightLine, RenderedInline } from './highlight';
|
||||||
@@ -22,53 +22,82 @@ type ClientBlockProps = Pick<BlockProps<DocumentBlockCode>, 'block' | 'style'> &
|
|||||||
export function ClientCodeBlock(props: ClientBlockProps) {
|
export function ClientCodeBlock(props: ClientBlockProps) {
|
||||||
const { block, style, inlines } = props;
|
const { block, style, inlines } = props;
|
||||||
const blockRef = useRef<HTMLDivElement>(null);
|
const blockRef = useRef<HTMLDivElement>(null);
|
||||||
const processedRef = useRef(false);
|
const isInViewportRef = useRef(false);
|
||||||
const isInViewportRef = useRef<boolean | null>(null);
|
const [isInViewport, setIsInViewport] = useState(false);
|
||||||
const [lines, setLines] = useState<HighlightLine[]>(() => plainHighlight(block, []));
|
const plainLines = useMemo(() => plainHighlight(block, []), [block]);
|
||||||
|
const [lines, setLines] = useState<null | HighlightLine[]>(null);
|
||||||
|
|
||||||
// Preload the highlighter when the block is mounted.
|
// Preload the highlighter when the block is mounted.
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
import('./highlight').then(({ preloadHighlight }) => preloadHighlight(block));
|
import('./highlight').then(({ preloadHighlight }) => preloadHighlight(block));
|
||||||
}, [block]);
|
}, [block]);
|
||||||
|
|
||||||
const runHighlight = useEventCallback(() => {
|
// When user scrolls, we need to wait for the scroll to finish before running the highlight
|
||||||
if (processedRef.current) {
|
const isScrollingRef = useRef(false);
|
||||||
return;
|
const onFinishScrolling = useDebounceCallback(() => {
|
||||||
}
|
isScrollingRef.current = false;
|
||||||
if (typeof window !== 'undefined') {
|
|
||||||
import('./highlight').then(({ highlight }) => {
|
|
||||||
highlight(block, inlines).then((lines) => {
|
|
||||||
setLines(lines);
|
|
||||||
processedRef.current = true;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
const debouncedRunHighlight = useDebounceCallback(runHighlight, 1000);
|
|
||||||
|
|
||||||
|
// If the block is in the viewport after the scroll, we need to run the highlight
|
||||||
|
if (isInViewportRef.current) {
|
||||||
|
setIsInViewport(true);
|
||||||
|
}
|
||||||
|
}, 100);
|
||||||
|
useScrollListener(
|
||||||
|
() => {
|
||||||
|
isScrollingRef.current = true;
|
||||||
|
onFinishScrolling();
|
||||||
|
},
|
||||||
|
useRef(typeof window !== 'undefined' ? window : null)
|
||||||
|
);
|
||||||
|
|
||||||
|
// Detect when the block is in viewport
|
||||||
useInViewportListener(
|
useInViewportListener(
|
||||||
blockRef,
|
blockRef,
|
||||||
(isInViewport, disconnect) => {
|
(isInViewport, disconnect) => {
|
||||||
// Disconnect once in viewport
|
|
||||||
if (isInViewport) {
|
|
||||||
disconnect();
|
|
||||||
// If it's initially in viewport, we need to run the highlight
|
|
||||||
if (isInViewportRef.current === null) {
|
|
||||||
runHighlight();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
isInViewportRef.current = isInViewport;
|
isInViewportRef.current = isInViewport;
|
||||||
|
if (isScrollingRef.current) {
|
||||||
|
// If the user is scrolling, we don't want to run the highlight
|
||||||
|
// because it will be run when the scroll is finished
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isInViewport) {
|
||||||
|
// Disconnect once in viewport
|
||||||
|
disconnect();
|
||||||
|
setIsInViewport(true);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{ rootMargin: '200px' }
|
{ rootMargin: '200px' }
|
||||||
);
|
);
|
||||||
|
|
||||||
const handleScroll = useDebounceCallback(() => {
|
// When the block is visible or updated, we need to re-run the highlight
|
||||||
if (isInViewportRef.current) {
|
useEffect(() => {
|
||||||
debouncedRunHighlight();
|
if (isInViewport) {
|
||||||
}
|
// If the block is in viewport, we need to run the highlight
|
||||||
}, 80);
|
let cancelled = false;
|
||||||
|
|
||||||
useScrollListener(handleScroll, useRef(typeof window !== 'undefined' ? window : null));
|
if (typeof window !== 'undefined') {
|
||||||
|
import('./highlight').then(({ highlight }) => {
|
||||||
return <CodeBlockRenderer ref={blockRef} block={block} style={style} lines={lines} />;
|
highlight(block, inlines).then((lines) => {
|
||||||
|
if (cancelled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setLines(lines);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
cancelled = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Otherwise if the block is not in viewport, we reset to the plain lines
|
||||||
|
setLines(null);
|
||||||
|
}, [isInViewport, block, inlines]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<CodeBlockRenderer ref={blockRef} block={block} style={style} lines={lines ?? plainLines} />
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +1,19 @@
|
|||||||
import type { DocumentBlockCode } from '@gitbook/api';
|
import type { DocumentBlockCode } from '@gitbook/api';
|
||||||
|
|
||||||
import { getNodeFragmentByType } from '@/lib/document';
|
import { getNodeFragmentByType } from '@/lib/document';
|
||||||
|
import { isV2 } from '@/lib/v2';
|
||||||
|
|
||||||
import type { BlockProps } from '../Block';
|
import type { BlockProps } from '../Block';
|
||||||
import { Blocks } from '../Blocks';
|
import { Blocks } from '../Blocks';
|
||||||
import { ClientCodeBlock } from './ClientCodeBlock';
|
import { ClientCodeBlock } from './ClientCodeBlock';
|
||||||
import { type RenderedInline, getInlines } from './highlight';
|
import { CodeBlockRenderer } from './CodeBlockRenderer';
|
||||||
|
import { type RenderedInline, getInlines, highlight } from './highlight';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Render a code block, can be client-side or server-side.
|
* Render a code block, can be client-side or server-side.
|
||||||
*/
|
*/
|
||||||
export function CodeBlock(props: BlockProps<DocumentBlockCode>) {
|
export async function CodeBlock(props: BlockProps<DocumentBlockCode>) {
|
||||||
const { block, document, style, context } = props;
|
const { block, document, style, isEstimatedOffscreen, context } = props;
|
||||||
const inlines = getInlines(block);
|
const inlines = getInlines(block);
|
||||||
const richInlines: RenderedInline[] = inlines.map((inline, index) => {
|
const richInlines: RenderedInline[] = inlines.map((inline, index) => {
|
||||||
const body = (() => {
|
const body = (() => {
|
||||||
@@ -34,5 +36,11 @@ export function CodeBlock(props: BlockProps<DocumentBlockCode>) {
|
|||||||
return { inline, body };
|
return { inline, body };
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (isV2() && !isEstimatedOffscreen) {
|
||||||
|
// In v2, we render the code block server-side
|
||||||
|
const lines = await highlight(block, richInlines);
|
||||||
|
return <CodeBlockRenderer block={block} style={style} lines={lines} />;
|
||||||
|
}
|
||||||
|
|
||||||
return <ClientCodeBlock block={block} style={style} inlines={richInlines} />;
|
return <ClientCodeBlock block={block} style={style} inlines={richInlines} />;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ it('should parse plain code', async () => {
|
|||||||
|
|
||||||
it('should parse different code in parallel', async () => {
|
it('should parse different code in parallel', async () => {
|
||||||
await Promise.all(
|
await Promise.all(
|
||||||
['shell', 'scss', 'markdown', 'less', 'scss', 'css', 'scss', 'yaml'].map(async (syntax) =>
|
['shell', 'scss', 'scss', 'css', 'scss', 'yaml'].map(async (syntax) =>
|
||||||
highlight(
|
highlight(
|
||||||
{
|
{
|
||||||
object: 'block',
|
object: 'block',
|
||||||
|
|||||||
@@ -35,14 +35,11 @@ export type RenderedInline = {
|
|||||||
|
|
||||||
const theme = createCssVariablesTheme();
|
const theme = createCssVariablesTheme();
|
||||||
|
|
||||||
const highlighter = createSingletonShorthands(
|
const { getSingletonHighlighter } = createSingletonShorthands(
|
||||||
createdBundledHighlighter<any, any>({
|
createdBundledHighlighter<any, any>({
|
||||||
langs: bundledLanguages,
|
langs: bundledLanguages,
|
||||||
themes: {},
|
themes: {},
|
||||||
engine: () =>
|
engine: () => createJavaScriptRegexEngine({ forgiving: true, target: 'ES2018' }),
|
||||||
createJavaScriptRegexEngine({
|
|
||||||
forgiving: true,
|
|
||||||
}),
|
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -52,7 +49,7 @@ const highlighter = createSingletonShorthands(
|
|||||||
export async function preloadHighlight(block: DocumentBlockCode) {
|
export async function preloadHighlight(block: DocumentBlockCode) {
|
||||||
const langName = getBlockLang(block);
|
const langName = getBlockLang(block);
|
||||||
if (langName) {
|
if (langName) {
|
||||||
await highlighter.getSingletonHighlighter({
|
await getSingletonHighlighter({
|
||||||
langs: [langName],
|
langs: [langName],
|
||||||
themes: [theme],
|
themes: [theme],
|
||||||
});
|
});
|
||||||
@@ -74,7 +71,12 @@ export async function highlight(
|
|||||||
|
|
||||||
const code = getPlainCodeBlock(block);
|
const code = getPlainCodeBlock(block);
|
||||||
|
|
||||||
const lines = await highlighter.codeToTokensBase(code, {
|
const highlighter = await getSingletonHighlighter({
|
||||||
|
langs: [langName],
|
||||||
|
themes: [theme],
|
||||||
|
});
|
||||||
|
|
||||||
|
const lines = highlighter.codeToTokensBase(code, {
|
||||||
lang: langName,
|
lang: langName,
|
||||||
theme,
|
theme,
|
||||||
tokenizeMaxLineLength: 400,
|
tokenizeMaxLineLength: 400,
|
||||||
@@ -132,12 +134,6 @@ function getLanguageForSyntax(syntax: string): BundledLanguage | null {
|
|||||||
// Normalize the syntax to lowercase.
|
// Normalize the syntax to lowercase.
|
||||||
syntax = syntax.toLowerCase();
|
syntax = syntax.toLowerCase();
|
||||||
|
|
||||||
// Temporary disable highlighting for C/C++ code blocks
|
|
||||||
// @see https://github.com/shikijs/shiki/issues/893
|
|
||||||
if (syntax === 'cpp' || syntax === 'c') {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if the syntax is a bundled language.
|
// Check if the syntax is a bundled language.
|
||||||
if (checkIsBundledLanguage(syntax)) {
|
if (checkIsBundledLanguage(syntax)) {
|
||||||
return syntax;
|
return syntax;
|
||||||
|
|||||||
@@ -46,9 +46,12 @@ export function DocumentView(
|
|||||||
|
|
||||||
/** Style passed to all blocks */
|
/** Style passed to all blocks */
|
||||||
blockStyle?: ClassValue;
|
blockStyle?: ClassValue;
|
||||||
|
|
||||||
|
/** True if the document should be considered offscreen */
|
||||||
|
isOffscreen?: boolean;
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
const { document, style, blockStyle = [], context } = props;
|
const { document, style, blockStyle = [], context, isOffscreen = false } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Blocks
|
<Blocks
|
||||||
@@ -62,6 +65,7 @@ export function DocumentView(
|
|||||||
'whitespace-pre-wrap',
|
'whitespace-pre-wrap',
|
||||||
]}
|
]}
|
||||||
context={context}
|
context={context}
|
||||||
|
isOffscreen={isOffscreen}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import ReactDOM from 'react-dom';
|
|||||||
import { Card } from '@/components/primitives';
|
import { Card } from '@/components/primitives';
|
||||||
import { tcls } from '@/lib/tailwind';
|
import { tcls } from '@/lib/tailwind';
|
||||||
|
|
||||||
|
import { getDataOrNull } from '@v2/lib/data';
|
||||||
import type { BlockProps } from './Block';
|
import type { BlockProps } from './Block';
|
||||||
import { Caption } from './Caption';
|
import { Caption } from './Caption';
|
||||||
import { IntegrationBlock } from './Integration';
|
import { IntegrationBlock } from './Integration';
|
||||||
@@ -18,10 +19,16 @@ export async function Embed(props: BlockProps<gitbookAPI.DocumentBlockEmbed>) {
|
|||||||
|
|
||||||
ReactDOM.preload('https://cdn.iframe.ly/embed.js', { as: 'script' });
|
ReactDOM.preload('https://cdn.iframe.ly/embed.js', { as: 'script' });
|
||||||
|
|
||||||
const embed = await context.contentContext.dataFetcher.getEmbedByUrl({
|
const embed = await getDataOrNull(
|
||||||
|
context.contentContext.dataFetcher.getEmbedByUrl({
|
||||||
url: block.data.url,
|
url: block.data.url,
|
||||||
spaceId: context.contentContext.space?.id,
|
spaceId: context.contentContext.space?.id,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!embed) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Caption {...props} withBorder>
|
<Caption {...props} withBorder>
|
||||||
|
|||||||
@@ -37,22 +37,21 @@ export function Hint(props: BlockProps<DocumentBlockHint>) {
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className={tcls(
|
className={tcls(
|
||||||
'py-3',
|
'py-4',
|
||||||
'pl-3',
|
'pl-4',
|
||||||
'-mt-px', // Bump icon up 1px for optical alignment with heading
|
|
||||||
hasHeading ? hintStyle.header : null,
|
hasHeading ? hintStyle.header : null,
|
||||||
hintStyle.iconColor
|
hintStyle.iconColor
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<Icon
|
<Icon
|
||||||
icon={hintStyle.icon}
|
icon={hintStyle.icon}
|
||||||
className={tcls('size-[1.2em]', 'mt-0.5', firstLine.lineHeight)}
|
className={tcls('size-[1.2em]', 'mt-px', firstLine.lineHeight)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{hasHeading ? (
|
{hasHeading ? (
|
||||||
<Block
|
<Block
|
||||||
style={tcls(
|
style={tcls(
|
||||||
'flip-heading-hash p-3 text-[1em] *:mt-0',
|
'flip-heading-hash p-4 pl-3 text-[1em] *:mt-0',
|
||||||
hasHeading ? hintStyle.header : null
|
hasHeading ? hintStyle.header : null
|
||||||
)}
|
)}
|
||||||
ancestorBlocks={[...ancestorBlocks, block]}
|
ancestorBlocks={[...ancestorBlocks, block]}
|
||||||
@@ -70,11 +69,12 @@ export function Hint(props: BlockProps<DocumentBlockHint>) {
|
|||||||
'flip-heading-hash'
|
'flip-heading-hash'
|
||||||
)}
|
)}
|
||||||
style={[
|
style={[
|
||||||
'p-3',
|
'p-4',
|
||||||
|
'pl-3',
|
||||||
'empty:p-0',
|
'empty:p-0',
|
||||||
'-row-end-1',
|
'-row-end-1',
|
||||||
'-col-end-1',
|
'-col-end-1',
|
||||||
'space-y-4',
|
'space-y-3',
|
||||||
'[&_.hint]:border',
|
'[&_.hint]:border',
|
||||||
'[&_pre]:border',
|
'[&_pre]:border',
|
||||||
'[&_pre]:border-neutral',
|
'[&_pre]:border-neutral',
|
||||||
@@ -104,8 +104,8 @@ const HINT_STYLES: {
|
|||||||
'[&_.can-override-text]:text-neutral-strong',
|
'[&_.can-override-text]:text-neutral-strong',
|
||||||
],
|
],
|
||||||
container:
|
container:
|
||||||
'bg-neutral theme-muted:bg-neutral-base theme-bold-tint:bg-neutral-base theme-gradient:bg-neutral-12/1 border-neutral',
|
'bg-info border-info theme-muted-tint:bg-info-solid/2 theme-bold-tint:bg-info-solid/2',
|
||||||
containerWithHeader: 'border-info-solid bg-neutral-subtle theme-gradient:bg-neutral-12/1',
|
containerWithHeader: 'border-info-solid bg-info-subtle',
|
||||||
},
|
},
|
||||||
warning: {
|
warning: {
|
||||||
icon: 'circle-exclamation',
|
icon: 'circle-exclamation',
|
||||||
@@ -113,11 +113,13 @@ const HINT_STYLES: {
|
|||||||
header: 'bg-warning-active',
|
header: 'bg-warning-active',
|
||||||
body: [
|
body: [
|
||||||
'text-neutral-strong',
|
'text-neutral-strong',
|
||||||
'[&_a]:text-warning',
|
'links-default:[&_a]:text-warning',
|
||||||
'[&_a:hover]:text-warning-strong',
|
'links-default:[&_a:hover]:text-warning-strong',
|
||||||
|
'links-default:[&_a]:decoration-warning/6',
|
||||||
|
'links-accent:[&_a]:decoration-warning',
|
||||||
|
'decoration-warning/6',
|
||||||
'[&_.can-override-bg]:bg-warning-active',
|
'[&_.can-override-bg]:bg-warning-active',
|
||||||
'[&_.can-override-text]:text-warning-strong',
|
'[&_.can-override-text]:text-warning-strong',
|
||||||
'decoration-warning/6',
|
|
||||||
],
|
],
|
||||||
container: 'bg-warning border-warning',
|
container: 'bg-warning border-warning',
|
||||||
containerWithHeader: 'border-warning-solid bg-warning-subtle',
|
containerWithHeader: 'border-warning-solid bg-warning-subtle',
|
||||||
@@ -128,11 +130,13 @@ const HINT_STYLES: {
|
|||||||
header: 'bg-danger-active',
|
header: 'bg-danger-active',
|
||||||
body: [
|
body: [
|
||||||
'text-neutral-strong',
|
'text-neutral-strong',
|
||||||
'[&_a]:text-danger',
|
'links-default:[&_a]:text-danger',
|
||||||
'[&_a:hover]:text-danger-strong',
|
'links-default:[&_a:hover]:text-danger-strong',
|
||||||
|
'links-default:[&_a]:decoration-danger/6',
|
||||||
|
'links-accent:[&_a]:decoration-danger',
|
||||||
|
'decoration-danger/6',
|
||||||
'[&_.can-override-bg]:bg-danger-active',
|
'[&_.can-override-bg]:bg-danger-active',
|
||||||
'[&_.can-override-text]:text-danger-strong',
|
'[&_.can-override-text]:text-danger-strong',
|
||||||
'decoration-danger/6',
|
|
||||||
],
|
],
|
||||||
container: 'bg-danger border-danger',
|
container: 'bg-danger border-danger',
|
||||||
containerWithHeader: 'border-danger-solid bg-danger-subtle',
|
containerWithHeader: 'border-danger-solid bg-danger-subtle',
|
||||||
@@ -143,11 +147,13 @@ const HINT_STYLES: {
|
|||||||
header: 'bg-success-active',
|
header: 'bg-success-active',
|
||||||
body: [
|
body: [
|
||||||
'text-neutral-strong',
|
'text-neutral-strong',
|
||||||
'[&_a]:text-success',
|
'links-default:[&_a]:text-success',
|
||||||
'[&_a:hover]:text-success-strong',
|
'links-default:[&_a:hover]:text-success-strong',
|
||||||
|
'links-default:[&_a]:decoration-success/6',
|
||||||
|
'links-accent:[&_a]:decoration-success',
|
||||||
|
'decoration-success/6',
|
||||||
'[&_.can-override-bg]:bg-success-active',
|
'[&_.can-override-bg]:bg-success-active',
|
||||||
'[&_.can-override-text]:text-success-strong',
|
'[&_.can-override-text]:text-success-strong',
|
||||||
'decoration-success/6',
|
|
||||||
],
|
],
|
||||||
container: 'bg-success border-success',
|
container: 'bg-success border-success',
|
||||||
containerWithHeader: 'border-success-solid bg-success-subtle',
|
containerWithHeader: 'border-success-solid bg-success-subtle',
|
||||||
|
|||||||
@@ -24,9 +24,7 @@ export function Inlines<T extends DocumentInline | DocumentText>(
|
|||||||
) {
|
) {
|
||||||
const { nodes, document, ancestorInlines, ...contextProps } = props;
|
const { nodes, document, ancestorInlines, ...contextProps } = props;
|
||||||
|
|
||||||
return (
|
return nodes.map((node) => {
|
||||||
<>
|
|
||||||
{nodes.map((node) => {
|
|
||||||
if (node.object === 'text') {
|
if (node.object === 'text') {
|
||||||
return <Text key={node.key} text={node} />;
|
return <Text key={node.key} text={node} />;
|
||||||
}
|
}
|
||||||
@@ -40,7 +38,5 @@ export function Inlines<T extends DocumentInline | DocumentText>(
|
|||||||
{...contextProps}
|
{...contextProps}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
})}
|
});
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import {
|
|||||||
type ContentKitServerContext,
|
type ContentKitServerContext,
|
||||||
} from '@gitbook/react-contentkit';
|
} from '@gitbook/react-contentkit';
|
||||||
|
|
||||||
import { ignoreAPIError, renderIntegrationUi } from '@/lib/api';
|
import { renderIntegrationUi } from '@/lib/api';
|
||||||
import { parseMarkdown } from '@/lib/markdown';
|
import { parseMarkdown } from '@/lib/markdown';
|
||||||
import { tcls } from '@/lib/tailwind';
|
import { tcls } from '@/lib/tailwind';
|
||||||
import { GITBOOK_INTEGRATIONS_HOST } from '@v2/lib/env';
|
import { GITBOOK_INTEGRATIONS_HOST } from '@v2/lib/env';
|
||||||
@@ -14,6 +14,7 @@ import { GITBOOK_INTEGRATIONS_HOST } from '@v2/lib/env';
|
|||||||
import type { BlockProps } from '../Block';
|
import type { BlockProps } from '../Block';
|
||||||
import { PlainCodeBlock } from '../CodeBlock';
|
import { PlainCodeBlock } from '../CodeBlock';
|
||||||
import './contentkit.css';
|
import './contentkit.css';
|
||||||
|
import { ignoreAllThrownError } from '@v2/lib/data';
|
||||||
|
|
||||||
const outputContext: ContentKitServerContext = {
|
const outputContext: ContentKitServerContext = {
|
||||||
icons: {
|
icons: {
|
||||||
@@ -63,9 +64,8 @@ export async function IntegrationBlock(props: BlockProps<DocumentBlockIntegratio
|
|||||||
context: contentKitContext,
|
context: contentKitContext,
|
||||||
};
|
};
|
||||||
|
|
||||||
const initialOutput = await ignoreAPIError(
|
const initialOutput = await ignoreAllThrownError(
|
||||||
renderIntegrationUi(block.data.integration, initialInput),
|
renderIntegrationUi(block.data.integration, initialInput)
|
||||||
true
|
|
||||||
);
|
);
|
||||||
if (!initialOutput || initialOutput.type === 'complete') {
|
if (!initialOutput || initialOutput.type === 'complete') {
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ export function List(
|
|||||||
tag={getListTag(block.type)}
|
tag={getListTag(block.type)}
|
||||||
nodes={block.nodes}
|
nodes={block.nodes}
|
||||||
ancestorBlocks={[...ancestorBlocks, block]}
|
ancestorBlocks={[...ancestorBlocks, block]}
|
||||||
style={['space-y-2', style]}
|
style={['min-w-0 space-y-2', style]}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ export function ListItem(props: BlockProps<DocumentBlockListItem>) {
|
|||||||
// Override the "mx-auto" class from UnwrappedBlocks
|
// Override the "mx-auto" class from UnwrappedBlocks
|
||||||
'mx-0'
|
'mx-0'
|
||||||
)}
|
)}
|
||||||
style="flex flex-1 flex-col space-y-2"
|
style="flex min-w-0 flex-1 flex-col space-y-2"
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
+8
-7
@@ -1,8 +1,8 @@
|
|||||||
import type { JSONDocument } from '@gitbook/api';
|
import type { JSONDocument } from '@gitbook/api';
|
||||||
import { Icon } from '@gitbook/icons';
|
import { Icon } from '@gitbook/icons';
|
||||||
import { OpenAPIOperation } from '@gitbook/react-openapi';
|
import { OpenAPIOperation as BaseOpenAPIOperation } from '@gitbook/react-openapi';
|
||||||
|
|
||||||
import { type AnyOpenAPIOperationBlock, resolveOpenAPIBlock } from '@/lib/openapi/fetch';
|
import { resolveOpenAPIOperationBlock } from '@/lib/openapi/resolveOpenAPIOperationBlock';
|
||||||
import { tcls } from '@/lib/tailwind';
|
import { tcls } from '@/lib/tailwind';
|
||||||
|
|
||||||
import type { BlockProps } from '../Block';
|
import type { BlockProps } from '../Block';
|
||||||
@@ -12,27 +12,28 @@ import { Heading } from '../Heading';
|
|||||||
|
|
||||||
import './scalar.css';
|
import './scalar.css';
|
||||||
import './style.css';
|
import './style.css';
|
||||||
|
import type { AnyOpenAPIOperationsBlock } from '@/lib/openapi/types';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Render an openapi block or an openapi-operation block.
|
* Render an openapi block or an openapi-operation block.
|
||||||
*/
|
*/
|
||||||
export async function OpenAPI(props: BlockProps<AnyOpenAPIOperationBlock>) {
|
export async function OpenAPIOperation(props: BlockProps<AnyOpenAPIOperationsBlock>) {
|
||||||
const { style } = props;
|
const { style } = props;
|
||||||
return (
|
return (
|
||||||
<div className={tcls('flex w-full', style, 'max-w-full')}>
|
<div className={tcls('flex w-full', style, 'max-w-full')}>
|
||||||
<OpenAPIBody {...props} />
|
<OpenAPIOperationBody {...props} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function OpenAPIBody(props: BlockProps<AnyOpenAPIOperationBlock>) {
|
async function OpenAPIOperationBody(props: BlockProps<AnyOpenAPIOperationsBlock>) {
|
||||||
const { block, context } = props;
|
const { block, context } = props;
|
||||||
|
|
||||||
if (!context.contentContext) {
|
if (!context.contentContext) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { data, specUrl, error } = await resolveOpenAPIBlock({
|
const { data, specUrl, error } = await resolveOpenAPIOperationBlock({
|
||||||
block,
|
block,
|
||||||
context: context.contentContext,
|
context: context.contentContext,
|
||||||
});
|
});
|
||||||
@@ -52,7 +53,7 @@ async function OpenAPIBody(props: BlockProps<AnyOpenAPIOperationBlock>) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<OpenAPIOperation
|
<BaseOpenAPIOperation
|
||||||
data={data}
|
data={data}
|
||||||
context={{
|
context={{
|
||||||
specUrl,
|
specUrl,
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
import { resolveOpenAPISchemasBlock } from '@/lib/openapi/resolveOpenAPISchemasBlock';
|
||||||
|
import { tcls } from '@/lib/tailwind';
|
||||||
|
import { Icon } from '@gitbook/icons';
|
||||||
|
import { OpenAPISchemas as BaseOpenAPISchemas } from '@gitbook/react-openapi';
|
||||||
|
|
||||||
|
import type { BlockProps } from '../Block';
|
||||||
|
|
||||||
|
import './scalar.css';
|
||||||
|
import './style.css';
|
||||||
|
import type { OpenAPISchemasBlock } from '@/lib/openapi/types';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Render an openapi-schemas block.
|
||||||
|
*/
|
||||||
|
export async function OpenAPISchemas(props: BlockProps<OpenAPISchemasBlock>) {
|
||||||
|
const { style } = props;
|
||||||
|
return (
|
||||||
|
<div className={tcls('flex w-full', style, 'max-w-full')}>
|
||||||
|
<OpenAPISchemasBody {...props} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function OpenAPISchemasBody(props: BlockProps<OpenAPISchemasBlock>) {
|
||||||
|
const { block, context } = props;
|
||||||
|
|
||||||
|
if (!context.contentContext) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { data, specUrl, error } = await resolveOpenAPISchemasBlock({
|
||||||
|
block,
|
||||||
|
context: context.contentContext,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
return (
|
||||||
|
<div className="hidden">
|
||||||
|
<p>
|
||||||
|
Error with {specUrl}: {error.message}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!data || !specUrl) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<BaseOpenAPISchemas
|
||||||
|
data={data}
|
||||||
|
context={{
|
||||||
|
specUrl,
|
||||||
|
icons: {
|
||||||
|
chevronDown: <Icon icon="chevron-down" />,
|
||||||
|
chevronRight: <Icon icon="chevron-right" />,
|
||||||
|
plus: <Icon icon="plus" />,
|
||||||
|
},
|
||||||
|
defaultInteractiveOpened: context.mode === 'print',
|
||||||
|
id: block.meta?.id,
|
||||||
|
blockKey: block.key,
|
||||||
|
}}
|
||||||
|
className="openapi-block"
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1 +1,2 @@
|
|||||||
export * from './OpenAPI';
|
export * from './OpenAPIOperation';
|
||||||
|
export * from './OpenAPISchemas';
|
||||||
|
|||||||
@@ -264,14 +264,18 @@
|
|||||||
gap: 6px;
|
gap: 6px;
|
||||||
}
|
}
|
||||||
.scalar-activate-button {
|
.scalar-activate-button {
|
||||||
@apply flex gap-1.5 items-center;
|
@apply flex gap-2 items-center;
|
||||||
@apply bg-primary-solid text-contrast-primary-solid hover:bg-primary-solid-hover hover:text-contrast-primary-solid-hover contrast-more:ring-1 rounded-md straight-corners:rounded-none place-self-start;
|
@apply bg-primary-solid text-contrast-primary-solid hover:bg-primary-solid-hover hover:text-contrast-primary-solid-hover contrast-more:ring-1 rounded-md straight-corners:rounded-none place-self-start;
|
||||||
@apply ring-1 ring-tint hover:ring-tint-hover;
|
@apply ring-1 ring-tint hover:ring-tint-hover;
|
||||||
@apply shadow-sm shadow-tint dark:shadow-tint-1 hover:shadow-md active:shadow-none;
|
@apply shadow-sm shadow-tint dark:shadow-tint-1 hover:shadow-md active:shadow-none;
|
||||||
@apply contrast-more:ring-tint-12 contrast-more:hover:ring-2 contrast-more:hover:ring-tint-12;
|
@apply contrast-more:ring-tint-12 contrast-more:hover:ring-2 contrast-more:hover:ring-tint-12;
|
||||||
@apply hover:scale-105 active:scale-100 transition-all;
|
@apply hover:scale-105 active:scale-100 transition-all;
|
||||||
@apply grow-0 shrink-0 truncate;
|
@apply grow-0 shrink-0 truncate;
|
||||||
@apply text-sm px-2.5 py-1;
|
@apply text-[13px] px-2 py-0.5 font-mono font-medium [word-spacing:-2px];
|
||||||
|
}
|
||||||
|
|
||||||
|
.scalar-activate-button svg {
|
||||||
|
@apply size-2.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scalar-app-loading {
|
.scalar-app-loading {
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
/* Layout Components */
|
/* Layout Components */
|
||||||
.openapi-operation {
|
.openapi-operation {
|
||||||
@apply flex-1 flex flex-col gap-4 mb-14;
|
@apply flex-1 flex flex-col gap-8 mb-14;
|
||||||
|
}
|
||||||
|
|
||||||
|
.openapi-schemas {
|
||||||
|
@apply flex flex-col mb-14 flex-1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-columns {
|
.openapi-columns {
|
||||||
@@ -13,7 +17,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.openapi-summary {
|
.openapi-summary {
|
||||||
@apply flex flex-col items-start justify-start gap-2;
|
@apply flex flex-col items-start justify-start gap-3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-deprecated {
|
.openapi-deprecated {
|
||||||
@@ -118,7 +122,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.openapi-column-preview-body {
|
.openapi-column-preview-body {
|
||||||
@apply flex flex-col gap-4 sticky top-4 site-header:top-20 site-header-sections:top-32 page-api-block:xl:max-2xl:top-32 print-mode:static;
|
@apply flex flex-col gap-4 sticky top-4 site-header:top-20 site-header-sections:page-has-toc:top-32 page-api-block:xl:max-2xl:top-32 print-mode:static;
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-column-preview pre {
|
.openapi-column-preview pre {
|
||||||
@@ -134,7 +138,7 @@
|
|||||||
@apply flex flex-col;
|
@apply flex flex-col;
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-schema-body {
|
.openapi-schema {
|
||||||
@apply py-2.5 flex flex-col gap-2;
|
@apply py-2.5 flex flex-col gap-2;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -142,18 +146,15 @@
|
|||||||
@apply divide-y divide-tint-subtle;
|
@apply divide-y divide-tint-subtle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-disclosure-group-panel
|
.openapi-disclosure-group-panel > .openapi-schema-properties > *:first-child > .openapi-schema {
|
||||||
> .openapi-schema-properties
|
|
||||||
> *:first-child
|
|
||||||
> .openapi-schema-body {
|
|
||||||
@apply pt-0;
|
@apply pt-0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-responsebody > .openapi-schema-properties > *:last-child > .openapi-schema-body {
|
.openapi-responsebody > .openapi-schema-properties > .openapi-schema:last-child {
|
||||||
@apply pb-0;
|
@apply pb-0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-responsebody > .openapi-schema-properties > *:only-child > .openapi-schema-body {
|
.openapi-responsebody > .openapi-schema-properties > .openapi-schema:only-child {
|
||||||
@apply py-0;
|
@apply py-0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -197,7 +198,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.openapi-schema-required {
|
.openapi-schema-required {
|
||||||
@apply text-amber-600 text-[0.813rem];
|
@apply text-warning-subtle text-[0.813rem];
|
||||||
|
}
|
||||||
|
|
||||||
|
.openapi-schema-readonly {
|
||||||
|
@apply text-primary-subtle/9 text-[0.813rem];
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-schema-type {
|
.openapi-schema-type {
|
||||||
@@ -386,17 +391,30 @@
|
|||||||
@apply flex flex-row items-center h-fit;
|
@apply flex flex-row items-center h-fit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.openapi-codesample-footer {
|
||||||
|
@apply flex w-full justify-end;
|
||||||
|
}
|
||||||
|
|
||||||
/* Path */
|
/* Path */
|
||||||
.openapi-path {
|
.openapi-path {
|
||||||
@apply flex items-center bg-tint-base text-sm gap-2 p-2 border rounded-md border-tint-subtle;
|
@apply flex items-center text-sm gap-2 h-fit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.openapi-path-variable {
|
||||||
|
@apply p-px min-w-[1.625rem] text-tint-strong font-normal w-fit justify-center items-center ring-1 ring-inset ring-tint bg-tint rounded text-sm leading-none before:!content-none after:!content-none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.openapi-path-server {
|
||||||
|
@apply text-tint hidden md:inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-path .openapi-method {
|
.openapi-path .openapi-method {
|
||||||
@apply text-[0.813rem] m-0 px-1;
|
@apply text-[0.813rem] m-0 h-full items-center flex px-2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-path-title {
|
.openapi-path-title {
|
||||||
@apply flex-1 relative font-normal whitespace-nowrap overflow-x-auto font-mono text-tint-strong;
|
@apply flex-1 relative font-normal whitespace-nowrap overflow-x-auto font-mono text-tint-strong/10;
|
||||||
|
@apply py-0.5 px-1 rounded hover:bg-tint cursor-pointer transition-colors;
|
||||||
scrollbar-width: none;
|
scrollbar-width: none;
|
||||||
-ms-overflow-style: none;
|
-ms-overflow-style: none;
|
||||||
}
|
}
|
||||||
@@ -515,6 +533,10 @@
|
|||||||
@apply px-3 py-2 pt-2.5 border-t border-tint-subtle text-[0.813rem] text-tint;
|
@apply px-3 py-2 pt-2.5 border-t border-tint-subtle text-[0.813rem] text-tint;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.openapi-tabs-footer .openapi-markdown {
|
||||||
|
@apply text-[0.813rem] text-tint;
|
||||||
|
}
|
||||||
|
|
||||||
/* Disclosure group */
|
/* Disclosure group */
|
||||||
.openapi-disclosure-group {
|
.openapi-disclosure-group {
|
||||||
@apply border-b border-tint-subtle relative;
|
@apply border-b border-tint-subtle relative;
|
||||||
@@ -602,7 +624,7 @@
|
|||||||
@apply border-b border-x border-tint-subtle rounded-b-lg;
|
@apply border-b border-x border-tint-subtle rounded-b-lg;
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-disclosure-panel .openapi-schema-body {
|
.openapi-disclosure-panel .openapi-schema {
|
||||||
@apply p-2.5;
|
@apply p-2.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -615,6 +637,48 @@
|
|||||||
@apply pt-0 mt-0;
|
@apply pt-0 mt-0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.openapi-section-body.openapi-schema.openapi-schema-root-body {
|
.openapi-section-body.openapi-schema.openapi-schema-root {
|
||||||
@apply space-y-2.5;
|
@apply space-y-2.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.openapi-section-schemas {
|
||||||
|
@apply border border-tint-subtle rounded-lg;
|
||||||
|
}
|
||||||
|
|
||||||
|
.openapi-section-schemas > .openapi-section-body > .openapi-schema-properties > .openapi-schema {
|
||||||
|
@apply p-2.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.openapi-tooltip {
|
||||||
|
@apply flex items-center gap-1 bg-tint-base border border-tint-subtle text-tint-strong rounded-md font-medium px-1.5 py-0.5 shadow-sm text-[13px];
|
||||||
|
}
|
||||||
|
|
||||||
|
.openapi-tooltip svg {
|
||||||
|
@apply size-3 text-tint-strong;
|
||||||
|
}
|
||||||
|
|
||||||
|
.openapi-tooltip[data-entering] {
|
||||||
|
animation: tooltip-enter 0.2s ease-in-out forwards;
|
||||||
|
}
|
||||||
|
|
||||||
|
.openapi-tooltip[data-exiting] {
|
||||||
|
animation: tooltip-leave 0.2s ease-in-out forwards;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes tooltip-enter {
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes tooltip-leave {
|
||||||
|
0% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import type { DocumentBlockReusableContent } from '@gitbook/api';
|
|||||||
|
|
||||||
import { resolveContentRef } from '@/lib/references';
|
import { resolveContentRef } from '@/lib/references';
|
||||||
|
|
||||||
|
import { getDataOrNull } from '@v2/lib/data';
|
||||||
import type { BlockProps } from './Block';
|
import type { BlockProps } from './Block';
|
||||||
import { UnwrappedBlocks } from './Blocks';
|
import { UnwrappedBlocks } from './Blocks';
|
||||||
|
|
||||||
@@ -17,10 +18,12 @@ export async function ReusableContent(props: BlockProps<DocumentBlockReusableCon
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const document = await context.contentContext.dataFetcher.getDocument({
|
const document = await getDataOrNull(
|
||||||
|
context.contentContext.dataFetcher.getDocument({
|
||||||
spaceId: context.contentContext.space.id,
|
spaceId: context.contentContext.space.id,
|
||||||
documentId: resolved.reusableContent.document,
|
documentId: resolved.reusableContent.document,
|
||||||
});
|
})
|
||||||
|
);
|
||||||
|
|
||||||
if (!document) {
|
if (!document) {
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
@@ -16,16 +16,9 @@ export function Footer(props: { context: GitBookSiteContext }) {
|
|||||||
const { customization } = context;
|
const { customization } = context;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
|
||||||
<hr className="border-tint-subtle border-t" />
|
|
||||||
<div className="scroll-nojump">
|
|
||||||
<footer
|
<footer
|
||||||
className={tcls(
|
className={tcls(
|
||||||
CONTAINER_STYLE,
|
'border-tint-subtle border-t',
|
||||||
'px-4',
|
|
||||||
'mx-auto',
|
|
||||||
'flex',
|
|
||||||
'gap-12',
|
|
||||||
// If the footer only contains a mode toggle, we only show it on smaller screens
|
// If the footer only contains a mode toggle, we only show it on smaller screens
|
||||||
customization.themes.toggeable &&
|
customization.themes.toggeable &&
|
||||||
!customization.footer.copyright &&
|
!customization.footer.copyright &&
|
||||||
@@ -35,6 +28,8 @@ export function Footer(props: { context: GitBookSiteContext }) {
|
|||||||
: null
|
: null
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
<div className="scroll-nojump">
|
||||||
|
<div className={tcls(CONTAINER_STYLE, 'px-4', 'mx-auto', 'flex', 'gap-12')}>
|
||||||
<div className="hidden page-no-toc:hidden basis-72 lg:block" />
|
<div className="hidden page-no-toc:hidden basis-72 lg:block" />
|
||||||
<div
|
<div
|
||||||
className={tcls(
|
className={tcls(
|
||||||
@@ -137,8 +132,8 @@ export function Footer(props: { context: GitBookSiteContext }) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="hidden page-no-toc:hidden lg:block xl:basis-56" />
|
<div className="hidden page-no-toc:hidden lg:block xl:basis-56" />
|
||||||
</footer>
|
|
||||||
</div>
|
</div>
|
||||||
</>
|
</div>
|
||||||
|
</footer>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,7 +44,6 @@ export function Dropdown<E extends HTMLElement>(props: {
|
|||||||
'absolute',
|
'absolute',
|
||||||
'top-full',
|
'top-full',
|
||||||
'left-0',
|
'left-0',
|
||||||
'z-20',
|
|
||||||
'origin-top-left',
|
'origin-top-left',
|
||||||
'invisible',
|
'invisible',
|
||||||
'transition-opacity',
|
'transition-opacity',
|
||||||
@@ -54,6 +53,7 @@ export function Dropdown<E extends HTMLElement>(props: {
|
|||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
<div className="fixed z-50 w-52">
|
||||||
<div
|
<div
|
||||||
className={tcls(
|
className={tcls(
|
||||||
'mt-2',
|
'mt-2',
|
||||||
@@ -73,6 +73,7 @@ export function Dropdown<E extends HTMLElement>(props: {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,6 @@ import { SpacesDropdown } from './SpacesDropdown';
|
|||||||
export function Header(props: { context: GitBookSiteContext; withTopHeader?: boolean }) {
|
export function Header(props: { context: GitBookSiteContext; withTopHeader?: boolean }) {
|
||||||
const { context, withTopHeader } = props;
|
const { context, withTopHeader } = props;
|
||||||
const { siteSpace, siteSpaces, sections, customization } = context;
|
const { siteSpace, siteSpaces, sections, customization } = context;
|
||||||
const isMultiVariants = siteSpaces.length > 1;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<header
|
<header
|
||||||
@@ -31,7 +30,7 @@ export function Header(props: { context: GitBookSiteContext; withTopHeader?: boo
|
|||||||
`h-[${HEADER_HEIGHT_DESKTOP}px]`,
|
`h-[${HEADER_HEIGHT_DESKTOP}px]`,
|
||||||
'sticky',
|
'sticky',
|
||||||
'top-0',
|
'top-0',
|
||||||
'z-10',
|
'z-30',
|
||||||
'w-full',
|
'w-full',
|
||||||
'flex-none',
|
'flex-none',
|
||||||
'shadow-[0px_1px_0px]',
|
'shadow-[0px_1px_0px]',
|
||||||
@@ -56,11 +55,11 @@ export function Header(props: { context: GitBookSiteContext; withTopHeader?: boo
|
|||||||
'theme-bold:shadow-tint-12/2'
|
'theme-bold:shadow-tint-12/2'
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div className={tcls('scroll-nojump')}>
|
<div className="scroll-nojump">
|
||||||
<div
|
<div
|
||||||
className={tcls(
|
className={tcls(
|
||||||
'gap-4',
|
'gap-4',
|
||||||
'lg:gap-8',
|
'lg:gap-6',
|
||||||
'flex',
|
'flex',
|
||||||
'items-center',
|
'items-center',
|
||||||
'justify-between',
|
'justify-between',
|
||||||
@@ -68,14 +67,12 @@ export function Header(props: { context: GitBookSiteContext; withTopHeader?: boo
|
|||||||
'py-3',
|
'py-3',
|
||||||
'min-h-16',
|
'min-h-16',
|
||||||
'sm:h-16',
|
'sm:h-16',
|
||||||
isMultiVariants && 'page-no-toc:max-[400px]:flex-wrap',
|
|
||||||
CONTAINER_STYLE
|
CONTAINER_STYLE
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className={tcls(
|
className={tcls(
|
||||||
'flex max-w-full',
|
'flex max-w-full lg:basis-72',
|
||||||
isMultiVariants && 'page-no-toc:max-[400px]:w-full',
|
|
||||||
'min-w-0 shrink items-center justify-start gap-2 lg:gap-4'
|
'min-w-0 shrink items-center justify-start gap-2 lg:gap-4'
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -86,44 +83,35 @@ export function Header(props: { context: GitBookSiteContext; withTopHeader?: boo
|
|||||||
'text-tint-strong',
|
'text-tint-strong',
|
||||||
'theme-bold:text-header-link',
|
'theme-bold:text-header-link',
|
||||||
'hover:bg-tint-hover',
|
'hover:bg-tint-hover',
|
||||||
'theme-bold:hover:bg-header-link/3'
|
'theme-bold:hover:bg-header-link/3',
|
||||||
|
'page-no-toc:hidden'
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
<HeaderLogo context={context} />
|
<HeaderLogo context={context} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{isMultiVariants && (
|
|
||||||
<div className="mr-auto page-no-toc:flex hidden">
|
|
||||||
<SpacesDropdown
|
|
||||||
context={context}
|
|
||||||
siteSpace={siteSpace}
|
|
||||||
siteSpaces={siteSpaces}
|
|
||||||
className={
|
|
||||||
'theme-bold:bg-header-link/2 theme-bold:text-header-link theme-bold:ring-header-link/4 theme-bold:group-focus-within/dropdown:bg-header-link/3 theme-bold:group-focus-within/dropdown:text-header-link theme-bold:group-focus-within/dropdown:ring-header-link/6 theme-bold:group-hover/dropdown:bg-header-link/3 theme-bold:group-hover/dropdown:text-header-link theme-bold:group-hover/dropdown:ring-header-link/6 theme-bold:contrast-more:bg-header-background theme-bold:contrast-more:text-header-link theme-bold:contrast-more:ring-header-link theme-bold:contrast-more:group-hover/dropdown:text-header-link theme-bold:contrast-more:group-hover/dropdown:ring-header-link theme-bold:contrast-more:group-focus-within/dropdown:text-header-link theme-bold:contrast-more:group-focus-within/dropdown:ring-header-link theme-bold:dark:bg-header-link/2 theme-bold:dark:text-header-link theme-bold:dark:ring-header-link/4 theme-bold:dark:group-hover/dropdown:bg-header-link/3 theme-bold:dark:group-hover/dropdown:text-header-link theme-bold:dark:group-hover/dropdown:ring-header-link/6 theme-bold:contrast-more:dark:group-hover/dropdown:text-header-link theme-bold:contrast-more:dark:group-hover/dropdown:ring-header-link theme-bold:dark:group-focus-within/dropdown:bg-header-link/3 theme-bold:dark:group-focus-within/dropdown:text-header-link theme-bold:dark:group-focus-within/dropdown:ring-header-link/6 theme-bold:contrast-more:dark:group-focus-within/dropdown:text-header-link theme-bold:contrast-more:dark:group-focus-within/dropdown:ring-header-link'
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{customization.header.links.length > 0 && (
|
|
||||||
<HeaderLinks>
|
|
||||||
{customization.header.links.map((link, index) => {
|
|
||||||
return <HeaderLink key={index} link={link} context={context} />;
|
|
||||||
})}
|
|
||||||
<HeaderLinkMore
|
|
||||||
label={t(getSpaceLanguage(customization), 'more')}
|
|
||||||
links={customization.header.links}
|
|
||||||
context={context}
|
|
||||||
/>
|
|
||||||
</HeaderLinks>
|
|
||||||
)}
|
|
||||||
<div
|
<div
|
||||||
className={tcls(
|
className={tcls(
|
||||||
'flex',
|
'flex',
|
||||||
'md:min-w-56',
|
|
||||||
'grow-0',
|
'grow-0',
|
||||||
'shrink-0',
|
'shrink-0',
|
||||||
'justify-self-end'
|
'md:basis-56',
|
||||||
|
'justify-self-end',
|
||||||
|
'search' in customization.styling &&
|
||||||
|
customization.styling.search === 'prominent'
|
||||||
|
? [
|
||||||
|
'md:grow-[0.8]',
|
||||||
|
'lg:basis-40',
|
||||||
|
'max-w-lg',
|
||||||
|
'lg:ml-[max(calc((100%-18rem-48rem-3rem)/2),1.5rem)]', // container (100%) - sidebar (18rem) - content (48rem) - margin (3rem)
|
||||||
|
'xl:ml-[max(calc((100%-18rem-48rem-14rem-3rem)/2),1.5rem)]', // container (100%) - sidebar (18rem) - content (48rem) - outline (14rem) - margin (3rem)
|
||||||
|
'page-no-toc:lg:ml-[max(calc((100%-18rem-48rem-18rem-3rem)/2),0rem)]',
|
||||||
|
'page-full-width:lg:ml-6',
|
||||||
|
'lg:mr-auto',
|
||||||
|
'order-last',
|
||||||
|
'md:order-[unset]',
|
||||||
|
]
|
||||||
|
: ['order-last']
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<Suspense fallback={null}>
|
<Suspense fallback={null}>
|
||||||
@@ -152,6 +140,7 @@ export function Header(props: { context: GitBookSiteContext; withTopHeader?: boo
|
|||||||
|
|
||||||
'theme-bold:shadow-none',
|
'theme-bold:shadow-none',
|
||||||
'theme-bold:hover:shadow-none',
|
'theme-bold:hover:shadow-none',
|
||||||
|
'whitespace-nowrap',
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
<span className={tcls('flex-1')}>
|
<span className={tcls('flex-1')}>
|
||||||
@@ -166,11 +155,70 @@ export function Header(props: { context: GitBookSiteContext; withTopHeader?: boo
|
|||||||
</SearchButton>
|
</SearchButton>
|
||||||
</Suspense>
|
</Suspense>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{customization.header.links.length > 0 && (
|
||||||
|
<HeaderLinks>
|
||||||
|
{customization.header.links.map((link) => {
|
||||||
|
return (
|
||||||
|
<HeaderLink
|
||||||
|
key={link.title}
|
||||||
|
link={link}
|
||||||
|
context={context}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
<HeaderLinkMore
|
||||||
|
label={t(getSpaceLanguage(customization), 'more')}
|
||||||
|
links={customization.header.links}
|
||||||
|
context={context}
|
||||||
|
/>
|
||||||
|
</HeaderLinks>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{sections ? (
|
|
||||||
<SiteSectionTabs sections={encodeClientSiteSections(context, sections)} />
|
{sections || siteSpaces.length > 1 ? (
|
||||||
|
<div
|
||||||
|
className={tcls(
|
||||||
|
'w-full',
|
||||||
|
'overflow-x-scroll',
|
||||||
|
'overflow-y-hidden',
|
||||||
|
'hide-scroll',
|
||||||
|
'-mb-4 pb-4', // Positive padding / negative margin allows the navigation menu indicator to show in a scroll viewƒ
|
||||||
|
!sections ? ['hidden', 'page-no-toc:flex'] : 'flex'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
className={tcls(
|
||||||
|
CONTAINER_STYLE,
|
||||||
|
'page-default-width:max-w-[unset]',
|
||||||
|
'grow',
|
||||||
|
'flex',
|
||||||
|
'items-end',
|
||||||
|
'page-default-width:2xl:px-[calc((100%-1536px+4rem)/2)]'
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
{siteSpaces.length > 1 && (
|
||||||
|
<div
|
||||||
|
id="variants"
|
||||||
|
className="my-2 mr-5 page-no-toc:flex hidden grow border-tint border-r pr-5 *:grow only:mr-0 only:border-none only:pr-0 sm:max-w-64"
|
||||||
|
>
|
||||||
|
<SpacesDropdown
|
||||||
|
context={context}
|
||||||
|
siteSpace={siteSpace}
|
||||||
|
siteSpaces={siteSpaces}
|
||||||
|
className="w-full grow py-1"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{sections && (
|
||||||
|
<SiteSectionTabs
|
||||||
|
sections={encodeClientSiteSections(context, sections)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
) : null}
|
) : null}
|
||||||
</header>
|
</header>
|
||||||
);
|
);
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user