ampless 1.0.0-alpha.42 → 1.0.0-alpha.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +10 -0
- package/docs/plugin-author-guide.ja.md +87 -16
- package/docs/plugin-author-guide.md +118 -18
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -862,6 +862,16 @@ interface PluginPackageManifest {
|
|
|
862
862
|
description?: LocalizedString;
|
|
863
863
|
/** Optional docs / repo URL. */
|
|
864
864
|
homepage?: string;
|
|
865
|
+
/**
|
|
866
|
+
* Subpath (relative to the plugin's package.json) of the editor
|
|
867
|
+
* module to auto-wire. `update-ampless` reads this to regenerate
|
|
868
|
+
* `app/(admin)/admin/_editor-bootstrap.tsx`. Absent = no editor
|
|
869
|
+
* extension (= plugin doesn't ship a tiptap Node).
|
|
870
|
+
*
|
|
871
|
+
* The referenced module must export `editorExtension` as a named
|
|
872
|
+
* symbol of type tiptap Extension.
|
|
873
|
+
*/
|
|
874
|
+
editorExports?: string;
|
|
865
875
|
}
|
|
866
876
|
/**
|
|
867
877
|
* Secret field types for `settings.secret`. Restricted to `text` /
|
|
@@ -777,25 +777,67 @@ runtime は `src` のホスト allowlist を強制しない。CSP はサイト
|
|
|
777
777
|
|
|
778
778
|
## 6d. Admin エディタ拡張の配線 (Phase 7)
|
|
779
779
|
|
|
780
|
-
admin エディタに tiptap Node 拡張を提供するプラグインは、別途 `./editor` subpath の client-side
|
|
780
|
+
admin エディタに tiptap Node 拡張を提供するプラグインは、別途 `./editor` subpath の client-side エントリを出荷する。
|
|
781
|
+
`app/(admin)/admin/_editor-bootstrap.tsx` は `npm run update-ampless` によって**自動生成**される — 手動で編集してはならない。
|
|
782
|
+
|
|
783
|
+
### プラグイン著者向け
|
|
784
|
+
|
|
785
|
+
`package.json#amplessPlugin` に `editorExports` を宣言する:
|
|
786
|
+
|
|
787
|
+
```jsonc
|
|
788
|
+
// packages/plugin-youtube/package.json
|
|
789
|
+
"amplessPlugin": {
|
|
790
|
+
"apiVersion": 1,
|
|
791
|
+
"name": "youtube",
|
|
792
|
+
"trustLevel": "trusted",
|
|
793
|
+
"capabilities": ["contentFields"],
|
|
794
|
+
"editorExports": "./editor" // ← editor module のある subpath
|
|
795
|
+
}
|
|
796
|
+
```
|
|
797
|
+
|
|
798
|
+
その subpath から `editorExtension` を named export する:
|
|
799
|
+
|
|
800
|
+
```ts
|
|
801
|
+
// packages/plugin-youtube/src/editor.tsx
|
|
802
|
+
export const editorExtension = AmplessYoutubeNode // tiptap Node または Extension
|
|
803
|
+
```
|
|
804
|
+
|
|
805
|
+
`package.json#exports` にも同 subpath を宣言すること(codegen がこれを検証する — 未宣言の場合は warning を出してそのプラグインをスキップする):
|
|
806
|
+
|
|
807
|
+
```jsonc
|
|
808
|
+
"exports": {
|
|
809
|
+
".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" },
|
|
810
|
+
"./editor": { "import": "./dist/editor.js", "types": "./dist/editor.d.ts" }
|
|
811
|
+
}
|
|
812
|
+
```
|
|
813
|
+
|
|
814
|
+
### プラグインユーザー(サイトエンジニア)向け
|
|
815
|
+
|
|
816
|
+
1. `npm i @ampless/plugin-youtube@alpha` — plugin を dependency として追加する。
|
|
817
|
+
2. `cms.config.ts` に登録してサーバーサイド renderer を有効化する。
|
|
818
|
+
3. `npm run update-ampless` — インストール済み plugin の manifest から `_editor-bootstrap.tsx` を自動再生成する。
|
|
819
|
+
|
|
820
|
+
生成されたファイルはリポジトリにコミットされ、以下のような内容になる:
|
|
781
821
|
|
|
782
822
|
```tsx
|
|
783
|
-
//
|
|
823
|
+
// app/(admin)/admin/_editor-bootstrap.tsx (AUTO-GENERATED — 編集不可)
|
|
784
824
|
'use client'
|
|
825
|
+
// AUTO-GENERATED by `npm run update-ampless`. Do not edit — your changes
|
|
826
|
+
// will be overwritten on the next run.
|
|
785
827
|
import { installAdminEditorExtensions } from '@ampless/admin/editor'
|
|
786
|
-
import {
|
|
787
|
-
import {
|
|
828
|
+
import { editorExtension as __ampless_plugin_x_embed_editor } from '@ampless/plugin-x-embed/editor'
|
|
829
|
+
import { editorExtension as __ampless_plugin_youtube_editor } from '@ampless/plugin-youtube/editor'
|
|
788
830
|
|
|
789
831
|
export function EditorBootstrap({ children }: { children: React.ReactNode }) {
|
|
790
832
|
installAdminEditorExtensions([
|
|
791
|
-
|
|
792
|
-
|
|
833
|
+
__ampless_plugin_x_embed_editor,
|
|
834
|
+
__ampless_plugin_youtube_editor,
|
|
793
835
|
])
|
|
794
836
|
return <>{children}</>
|
|
795
837
|
}
|
|
796
838
|
```
|
|
797
839
|
|
|
798
|
-
|
|
840
|
+
このファイルは admin layout に渡される(テンプレートに既に組み込まれているので追加の作業は不要):
|
|
799
841
|
|
|
800
842
|
```tsx
|
|
801
843
|
// templates/_shared/app/(admin)/admin/layout.tsx
|
|
@@ -806,18 +848,33 @@ export default createAdminLayout(admin, { editorBootstrap: EditorBootstrap })
|
|
|
806
848
|
|
|
807
849
|
`installAdminEditorExtensions` は idempotent で、render 時に client component 内で呼ばれる。admin の `<TiptapEditor>` は毎回 render 時に登録済みリストを built-in extensions の末尾に spread する。
|
|
808
850
|
|
|
851
|
+
### active source と完全無効化
|
|
852
|
+
|
|
853
|
+
**エディタ配線の active source は `package.json#dependencies`**(= `node_modules`)であり、`cms.config.ts` ではない。
|
|
854
|
+
|
|
855
|
+
- plugin を `cms.config.ts` から外しても `package.json` に dep が残っていれば、editor の paste rule は**有効のまま**になる。editor は tiptap document にそのノード型を挿入できるが、公開 renderer はレンダリングしない(不整合状態 — 避けること)。
|
|
856
|
+
- 完全に無効化するには: `cms.config.ts` から削除 **かつ** `npm uninstall @ampless/plugin-...` を実行し、`npm run update-ampless` で bootstrap ファイルを再生成する。
|
|
857
|
+
|
|
809
858
|
### エディタプレビューのパイプライン
|
|
810
859
|
|
|
811
|
-
admin の edit / new post フォームは preview ペインを `<iframe sandbox="allow-scripts">` で表示する。`srcDoc` はテンプレート側
|
|
860
|
+
admin の edit / new post フォームは preview ペインを `<iframe sandbox="allow-scripts">` で表示する。`srcDoc` はテンプレート側 preview Route Handler が返す HTML。テンプレート scaffold は handler を `app/(admin)/admin/preview/route.tsx` に同梱する:
|
|
812
861
|
|
|
813
862
|
```tsx
|
|
814
|
-
// templates/_shared/app/(admin)/admin/
|
|
815
|
-
'use server'
|
|
816
|
-
import { renderToStaticMarkup } from 'react-dom/server'
|
|
863
|
+
// templates/_shared/app/(admin)/admin/preview/route.tsx
|
|
817
864
|
import type { Post } from 'ampless'
|
|
818
865
|
import { admin } from '@/lib/admin'
|
|
819
866
|
|
|
820
|
-
export async function
|
|
867
|
+
export async function POST(req: Request): Promise<Response> {
|
|
868
|
+
const session = await admin.getServerSession()
|
|
869
|
+
if (!admin.isEditor(session)) {
|
|
870
|
+
return new Response('Forbidden', { status: 403 })
|
|
871
|
+
}
|
|
872
|
+
let draft: Post
|
|
873
|
+
try {
|
|
874
|
+
draft = (await req.json()) as Post
|
|
875
|
+
} catch {
|
|
876
|
+
return new Response('Bad Request', { status: 400 })
|
|
877
|
+
}
|
|
821
878
|
const ampless = await admin.getAmpless()
|
|
822
879
|
const node = (
|
|
823
880
|
<>
|
|
@@ -825,21 +882,35 @@ export async function renderPreviewHtml(draft: Post): Promise<string> {
|
|
|
825
882
|
{await ampless.publicPostScriptsForPage([draft])}
|
|
826
883
|
</>
|
|
827
884
|
)
|
|
828
|
-
|
|
885
|
+
// dynamic import: 下の「Server Action ではなく Route Handler を採用した理由」参照。
|
|
886
|
+
const { renderToStaticMarkup } = await import('react-dom/server')
|
|
887
|
+
return new Response(renderToStaticMarkup(node), {
|
|
888
|
+
headers: {
|
|
889
|
+
'Content-Type': 'text/html; charset=utf-8',
|
|
890
|
+
'Cache-Control': 'no-store',
|
|
891
|
+
},
|
|
892
|
+
})
|
|
829
893
|
}
|
|
830
894
|
```
|
|
831
895
|
|
|
832
|
-
|
|
896
|
+
`<PostForm>` / `<PostHistoryPanel>` は素のままで `/admin/preview` に draft を POST する — call site で追加の wiring は不要:
|
|
833
897
|
|
|
834
898
|
```tsx
|
|
835
899
|
// templates/_shared/app/(admin)/admin/posts/[postId]/page.tsx
|
|
836
900
|
import { admin } from '@/lib/admin'
|
|
837
901
|
import { createEditPostPage } from '@ampless/admin/pages'
|
|
838
|
-
import { renderPreviewHtml } from '../../_actions/render-preview'
|
|
839
902
|
|
|
840
|
-
export default createEditPostPage(admin
|
|
903
|
+
export default createEditPostPage(admin)
|
|
841
904
|
```
|
|
842
905
|
|
|
906
|
+
admin が非デフォルトパス(Next.js `basePath` やカスタム prefix)にマウントされている場合は、page factory の `previewEndpoint` option で endpoint を上書きできる:
|
|
907
|
+
|
|
908
|
+
```tsx
|
|
909
|
+
export default createEditPostPage(admin, { previewEndpoint: '/cms/admin/preview' })
|
|
910
|
+
```
|
|
911
|
+
|
|
912
|
+
Server Action ではなく Route Handler を採用した理由: `'use server'` モジュール内部で `react-dom/server` 由来の rendering を行うと、Next.js 15+ が edit-post page の compile に失敗する。build 時に Client Component から Server Action モジュール経由で import graph を辿るため、その経路上で `react-dom/server` に到達した時点で「You're importing a component that imports react-dom/server」チェックが発火する。Route Handler に切り出すことで rendering を import graph から完全に切り離せる — `<PostForm>` は plain な HTTP endpoint を fetch するだけで、bundler は form から handler 側へ踏み込まない。さらに handler 自身が `admin.isEditor()` を明示的にチェックすることで、将来 `(admin)` route-group gate が誤設定された場合の安全側のフェールセーフになる。`react-dom/server` の import 自体を dynamic にしているのは Next.js 16 の Turbopack が、Route Handler を含む app router build 経路で reach できる top-level の `react-dom/server` static import を一律で flag するため。request 時に解決することで build-time import-graph walker から外しつつ、runtime では同じ Node.js subpath からロードする。
|
|
913
|
+
|
|
843
914
|
iframe の `sandbox="allow-scripts"` は `allow-same-origin` を含まないので、preview の中身は opaque origin で動作する → widget script は admin の DOM に触れない。トレードオフ: widget が自身の origin の storage にアクセスできない場合に正しく動かない可能性がある。Phase 7 時点の dogfood では YouTube iframe / x.com widgets.js とも opaque origin で動作することを確認済み。将来 non-opaque origin が必要な widget が出てきた場合、escape hatch は別 subdomain の preview route + 適切な CSP — sandbox flag を緩めるのは取らない。
|
|
844
915
|
|
|
845
916
|
---
|
|
@@ -1026,26 +1026,72 @@ middleware. This is documented in each plugin's README.
|
|
|
1026
1026
|
## 6d. Admin editor extension wiring (Phase 7)
|
|
1027
1027
|
|
|
1028
1028
|
Plugins that contribute tiptap Node extensions to the admin editor
|
|
1029
|
-
ship a separate client-side entry under the `./editor` subpath.
|
|
1030
|
-
|
|
1029
|
+
ship a separate client-side entry under the `./editor` subpath.
|
|
1030
|
+
`app/(admin)/admin/_editor-bootstrap.tsx` is **auto-generated** by
|
|
1031
|
+
`npm run update-ampless` — you should not edit it by hand.
|
|
1032
|
+
|
|
1033
|
+
### For plugin authors
|
|
1034
|
+
|
|
1035
|
+
Declare `editorExports` in `package.json#amplessPlugin`:
|
|
1036
|
+
|
|
1037
|
+
```jsonc
|
|
1038
|
+
// packages/plugin-youtube/package.json
|
|
1039
|
+
"amplessPlugin": {
|
|
1040
|
+
"apiVersion": 1,
|
|
1041
|
+
"name": "youtube",
|
|
1042
|
+
"trustLevel": "trusted",
|
|
1043
|
+
"capabilities": ["contentFields"],
|
|
1044
|
+
"editorExports": "./editor" // ← subpath where the editor module lives
|
|
1045
|
+
}
|
|
1046
|
+
```
|
|
1047
|
+
|
|
1048
|
+
Export `editorExtension` as a named symbol from that subpath:
|
|
1049
|
+
|
|
1050
|
+
```ts
|
|
1051
|
+
// packages/plugin-youtube/src/editor.tsx
|
|
1052
|
+
export const editorExtension = AmplessYoutubeNode // tiptap Node or Extension
|
|
1053
|
+
```
|
|
1054
|
+
|
|
1055
|
+
The subpath must be declared in `package.json#exports` as well (the
|
|
1056
|
+
codegen validates this — a missing `exports` entry triggers a warning
|
|
1057
|
+
and the plugin is skipped):
|
|
1058
|
+
|
|
1059
|
+
```jsonc
|
|
1060
|
+
"exports": {
|
|
1061
|
+
".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" },
|
|
1062
|
+
"./editor": { "import": "./dist/editor.js", "types": "./dist/editor.d.ts" }
|
|
1063
|
+
}
|
|
1064
|
+
```
|
|
1065
|
+
|
|
1066
|
+
### For plugin users (site engineers)
|
|
1067
|
+
|
|
1068
|
+
1. `npm i @ampless/plugin-youtube@alpha` — add the plugin as a dependency.
|
|
1069
|
+
2. Register it in `cms.config.ts` for the server-side renderer.
|
|
1070
|
+
3. `npm run update-ampless` — regenerates `_editor-bootstrap.tsx`
|
|
1071
|
+
automatically from the installed plugin manifests.
|
|
1072
|
+
|
|
1073
|
+
The generated file is committed to your repo and looks like:
|
|
1031
1074
|
|
|
1032
1075
|
```tsx
|
|
1033
|
-
//
|
|
1076
|
+
// app/(admin)/admin/_editor-bootstrap.tsx (AUTO-GENERATED — do not edit)
|
|
1034
1077
|
'use client'
|
|
1078
|
+
// AUTO-GENERATED by `npm run update-ampless`. Do not edit — your changes
|
|
1079
|
+
// will be overwritten on the next run.
|
|
1035
1080
|
import { installAdminEditorExtensions } from '@ampless/admin/editor'
|
|
1036
|
-
import {
|
|
1037
|
-
import {
|
|
1081
|
+
import { editorExtension as __ampless_plugin_x_embed_editor } from '@ampless/plugin-x-embed/editor'
|
|
1082
|
+
import { editorExtension as __ampless_plugin_youtube_editor } from '@ampless/plugin-youtube/editor'
|
|
1038
1083
|
|
|
1039
1084
|
export function EditorBootstrap({ children }: { children: React.ReactNode }) {
|
|
1040
1085
|
installAdminEditorExtensions([
|
|
1041
|
-
|
|
1042
|
-
|
|
1086
|
+
__ampless_plugin_x_embed_editor,
|
|
1087
|
+
__ampless_plugin_youtube_editor,
|
|
1043
1088
|
])
|
|
1044
1089
|
return <>{children}</>
|
|
1045
1090
|
}
|
|
1046
1091
|
```
|
|
1047
1092
|
|
|
1048
|
-
|
|
1093
|
+
The file is then wired into the admin layout (already in the template — no
|
|
1094
|
+
extra work required):
|
|
1049
1095
|
|
|
1050
1096
|
```tsx
|
|
1051
1097
|
// templates/_shared/app/(admin)/admin/layout.tsx
|
|
@@ -1058,20 +1104,42 @@ export default createAdminLayout(admin, { editorBootstrap: EditorBootstrap })
|
|
|
1058
1104
|
inside a client component. The admin's `<TiptapEditor>` spreads the
|
|
1059
1105
|
registered list onto its built-in extensions on every render.
|
|
1060
1106
|
|
|
1107
|
+
### Active source and full disable
|
|
1108
|
+
|
|
1109
|
+
**The active source for editor wiring is `package.json#dependencies`**
|
|
1110
|
+
(= `node_modules`), not `cms.config.ts`. This means:
|
|
1111
|
+
|
|
1112
|
+
- Removing a plugin from `cms.config.ts` but keeping it in
|
|
1113
|
+
`package.json` leaves the editor paste rule active. The editor can
|
|
1114
|
+
still insert the node type into the tiptap document, but the public
|
|
1115
|
+
renderer won't render it (inconsistent state — avoid).
|
|
1116
|
+
- To fully disable a plugin's editor extension: remove it from
|
|
1117
|
+
`cms.config.ts` **and** run `npm uninstall @ampless/plugin-...`,
|
|
1118
|
+
then `npm run update-ampless` to regenerate the bootstrap file.
|
|
1119
|
+
|
|
1061
1120
|
### Editor preview pipeline
|
|
1062
1121
|
|
|
1063
1122
|
The admin's edit / new post forms render the preview pane in an
|
|
1064
1123
|
`<iframe sandbox="allow-scripts">` whose `srcDoc` is the HTML returned
|
|
1065
|
-
by the template's
|
|
1124
|
+
by the template's preview Route Handler. The template scaffold ships
|
|
1125
|
+
the handler at `app/(admin)/admin/preview/route.tsx`:
|
|
1066
1126
|
|
|
1067
1127
|
```tsx
|
|
1068
|
-
// templates/_shared/app/(admin)/admin/
|
|
1069
|
-
'use server'
|
|
1070
|
-
import { renderToStaticMarkup } from 'react-dom/server'
|
|
1128
|
+
// templates/_shared/app/(admin)/admin/preview/route.tsx
|
|
1071
1129
|
import type { Post } from 'ampless'
|
|
1072
1130
|
import { admin } from '@/lib/admin'
|
|
1073
1131
|
|
|
1074
|
-
export async function
|
|
1132
|
+
export async function POST(req: Request): Promise<Response> {
|
|
1133
|
+
const session = await admin.getServerSession()
|
|
1134
|
+
if (!admin.isEditor(session)) {
|
|
1135
|
+
return new Response('Forbidden', { status: 403 })
|
|
1136
|
+
}
|
|
1137
|
+
let draft: Post
|
|
1138
|
+
try {
|
|
1139
|
+
draft = (await req.json()) as Post
|
|
1140
|
+
} catch {
|
|
1141
|
+
return new Response('Bad Request', { status: 400 })
|
|
1142
|
+
}
|
|
1075
1143
|
const ampless = await admin.getAmpless()
|
|
1076
1144
|
const node = (
|
|
1077
1145
|
<>
|
|
@@ -1079,22 +1147,54 @@ export async function renderPreviewHtml(draft: Post): Promise<string> {
|
|
|
1079
1147
|
{await ampless.publicPostScriptsForPage([draft])}
|
|
1080
1148
|
</>
|
|
1081
1149
|
)
|
|
1082
|
-
|
|
1150
|
+
// Dynamic import: see "Why a Route Handler" below.
|
|
1151
|
+
const { renderToStaticMarkup } = await import('react-dom/server')
|
|
1152
|
+
return new Response(renderToStaticMarkup(node), {
|
|
1153
|
+
headers: {
|
|
1154
|
+
'Content-Type': 'text/html; charset=utf-8',
|
|
1155
|
+
'Cache-Control': 'no-store',
|
|
1156
|
+
},
|
|
1157
|
+
})
|
|
1083
1158
|
}
|
|
1084
1159
|
```
|
|
1085
1160
|
|
|
1086
|
-
|
|
1087
|
-
|
|
1161
|
+
`<PostForm>` / `<PostHistoryPanel>` POST the draft to `/admin/preview`
|
|
1162
|
+
out of the box — no extra wiring at the call site:
|
|
1088
1163
|
|
|
1089
1164
|
```tsx
|
|
1090
1165
|
// templates/_shared/app/(admin)/admin/posts/[postId]/page.tsx
|
|
1091
1166
|
import { admin } from '@/lib/admin'
|
|
1092
1167
|
import { createEditPostPage } from '@ampless/admin/pages'
|
|
1093
|
-
import { renderPreviewHtml } from '../../_actions/render-preview'
|
|
1094
1168
|
|
|
1095
|
-
export default createEditPostPage(admin
|
|
1169
|
+
export default createEditPostPage(admin)
|
|
1170
|
+
```
|
|
1171
|
+
|
|
1172
|
+
If the admin is mounted at a non-default path (Next.js `basePath` or
|
|
1173
|
+
a custom prefix), override the endpoint via the page factory's
|
|
1174
|
+
`previewEndpoint` option:
|
|
1175
|
+
|
|
1176
|
+
```tsx
|
|
1177
|
+
export default createEditPostPage(admin, { previewEndpoint: '/cms/admin/preview' })
|
|
1096
1178
|
```
|
|
1097
1179
|
|
|
1180
|
+
Why a Route Handler rather than a Server Action: putting
|
|
1181
|
+
`react-dom/server`-driven rendering inside a `'use server'` module
|
|
1182
|
+
makes Next.js 15+ refuse to compile the edit-post page, because the
|
|
1183
|
+
build traces the import graph from Client Components through Server
|
|
1184
|
+
Action modules and any reach to `react-dom/server` along that path
|
|
1185
|
+
trips the "You're importing a component that imports
|
|
1186
|
+
react-dom/server" check. A Route Handler decouples the rendering
|
|
1187
|
+
from that graph entirely — `<PostForm>` fetches a plain HTTP
|
|
1188
|
+
endpoint and the bundler never walks from the form into here. The
|
|
1189
|
+
handler's explicit `admin.isEditor()` check also defends against
|
|
1190
|
+
accidental exposure if the `(admin)` route-group gate is ever
|
|
1191
|
+
misconfigured. The `react-dom/server` import itself is dynamic
|
|
1192
|
+
because Next.js 16's Turbopack flags any top-level static import of
|
|
1193
|
+
`react-dom/server` reached from the app router build, Route Handlers
|
|
1194
|
+
included; deferring it to request time keeps the module outside the
|
|
1195
|
+
build-time import-graph walker while still loading it from the same
|
|
1196
|
+
Node.js subpath at runtime.
|
|
1197
|
+
|
|
1098
1198
|
The iframe's `sandbox="allow-scripts"` (without `allow-same-origin`)
|
|
1099
1199
|
keeps preview content in an opaque origin so widget scripts cannot
|
|
1100
1200
|
reach the admin's DOM. The trade-off is that some widgets may misbehave
|