/
githubmirror
/
pocketbase
Обзор
Документация
Войти
/
githubmirror
/
pocketbase
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ui/src/apiPreview/docsVerification.js
234 строки
8 KB
Gani Georgiev
merge newui branch
18 апр 2026, 16:50
18 апр 2026, 16:50
4c44044
Код
Авторство
О чём код?
export function docsVerification(collection) { const baseURL = app.utils.getApiExampleURL(); const actionTabs = [ { title: "Request verification", content: request }, { title: "Confirm verification", content: confirm }, ]; const data = store({ activeActionIndex: 0, }); return t.div( { pbEvent: "apiPreviewVerification", className: "content", }, // description t.p(null, `Sends ${collection.name} account verification request.`), app.components.codeBlockTabs({ className: "sdk-examples m-t-sm", historyKey: "pbLastSDK", tabs: [ { title: "JS SDK", language: "js", value: ` import PocketBase from 'pocketbase'; const pb = new PocketBase('${baseURL}'); ... await pb.collection('${collection.name}').requestVerification('test@example.com'); // --- // (optional) in your custom confirmation page: // --- await pb.collection('${collection.name}').confirmVerification('VERIFICATION_TOKEN'); `, footnote: t.div( { className: "txt-right" }, t.a({ href: import.meta.env.PB_JS_SDK_URL, target: "_blank", rel: "noopener noreferrer", textContent: "JS SDK docs", }), ), }, { title: "Dart SDK", language: "dart", value: ` import 'package:pocketbase/pocketbase.dart'; final pb = PocketBase('${baseURL}'); ... await pb.collection('${collection.name}').requestVerification('test@example.com'); // --- // (optional) in your custom confirmation page: // --- await pb.collection('${collection.name}').confirmVerification('VERIFICATION_TOKEN'); `, footnote: t.div( { className: "txt-right" }, t.a({ href: import.meta.env.PB_DART_SDK_URL, target: "_blank", rel: "noopener noreferrer", textContent: "Dart SDK docs", }), ), }, { title: "curl", language: "bash", value: ` # Request verification curl -X POST \\ -H 'Content-Type:application/json' \\ -d '{ "email":"..." }' \\ '${baseURL}/api/collections/${collection.name}/request-verification' # Confirm verification curl -X POST \\ -H 'Content-Type:application/json' \\ -d '{ "token":"..." }' \\ '${baseURL}/api/collections/${collection.name}/confirm-verification' `, }, ], }), t.nav( { className: "btns m-t-base m-b-sm" }, () => { return actionTabs.map((tab, i) => { return t.button({ type: "button", className: () => `btn sm expanded ${data.activeActionIndex == i ? "active" : "secondary"}`, textContent: () => tab.title, onclick: () => data.activeActionIndex = i, }); }); }, ), () => actionTabs[data.activeActionIndex]?.content?.(collection), ); } function request(collection) { const responses = [ { title: 204, value: "null", }, { title: 400, value: ` { "status": 400, "message": "An error occurred while validating the submitted data.", "data": { "email": { "code": "validation_required", "message": "Missing required value." } } } `, }, ]; return [ // api t.div({ className: "block" }, t.strong(null, "API details")), t.div( { className: "alert success api-preview-alert" }, t.span({ className: "label method" }, "POST"), t.span({ className: "path" }, `/api/collections/${collection.name}/request-verification`), ), t.table( { className: "api-preview-table body-params" }, t.thead( null, t.tr( null, t.th({ className: "min-width txt-primary" }, "Body params"), t.th({ className: "min-width" }, "Type"), t.th(null, "Description"), ), ), t.tbody( null, t.tr( null, t.td({ className: "min-width" }, "email ", t.em(null, "(required)")), t.td({ className: "min-width" }, t.span({ className: "label" }, "String")), t.td(null, "The auth record email address to send the verification request (if exists)."), ), ), ), // responses t.div({ className: "block m-t-base m-b-sm" }, t.strong(null, "Example responses")), app.components.codeBlockTabs({ tabs: responses, }), ]; } function confirm(collection) { const responses = [ { title: 204, value: "null", }, { title: 400, value: ` { "status": 400, "message": "An error occurred while validating the submitted data.", "data": { "token": { "code": "validation_required", "message": "Missing required value." } } } `, }, ]; return [ // api t.div({ className: "block" }, t.strong(null, "API details")), t.div( { className: "alert success api-preview-alert" }, t.span({ className: "label method" }, "POST"), t.span({ className: "path" }, `/api/collections/${collection.name}/confirm-verification`), ), t.table( { className: "api-preview-table body-params" }, t.thead( null, t.tr( null, t.th({ className: "min-width txt-primary" }, "Body params"), t.th({ className: "min-width" }, "Type"), t.th(null, "Description"), ), ), t.tbody( null, t.tr( null, t.td({ className: "min-width" }, "token ", t.em(null, "(required)")), t.td({ className: "min-width" }, t.span({ className: "label" }, "String")), t.td(null, "The token from the verification request email."), ), ), ), // responses t.div({ className: "block m-t-base m-b-sm" }, t.strong(null, "Example responses")), app.components.codeBlockTabs({ tabs: responses, }), ]; }