From 68bde0d0ce76c475281a17c5a796334377f3e1f9 Mon Sep 17 00:00:00 2001 From: chenlong Date: Mon, 6 May 2024 12:16:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=87=E6=8D=A2=E7=BC=96=E8=BE=91=E5=99=A8?= =?UTF-8?q?=E5=88=B0tiny?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- View/Admin/Notebook/lists.blade.php | 1 + View/Admin/Notebook/share.sc.php | 50 ++++++++++++++--------------- 2 files changed, 25 insertions(+), 26 deletions(-) diff --git a/View/Admin/Notebook/lists.blade.php b/View/Admin/Notebook/lists.blade.php index 8d7e4a7..7acdcc7 100644 --- a/View/Admin/Notebook/lists.blade.php +++ b/View/Admin/Notebook/lists.blade.php @@ -542,6 +542,7 @@ this.noteBookVersion = 0; this.noteBookUpVersion = 0; tinymce.get('tiny').setContent(this.currentNotebook.content); + tinymce.get('tiny').options.set('readonly', this.currentNotebook.user_mode === 'read'); this.getLatest(); } diff --git a/View/Admin/Notebook/share.sc.php b/View/Admin/Notebook/share.sc.php index 5845b91..817b804 100644 --- a/View/Admin/Notebook/share.sc.php +++ b/View/Admin/Notebook/share.sc.php @@ -3,6 +3,8 @@ use Plugins\Notebook\Model\Notebook; use Sc\Util\HtmlElement\El; use Sc\Util\HtmlStructure\Html\Html; +use Sc\Util\HtmlStructure\Html\Js\JsCode; +use Sc\Util\HtmlStructure\Html\Js\JsFunc; /** * @var Notebook $notebook @@ -13,32 +15,28 @@ if (!$notebook) { Html::loadThemeResource('ElementUI'); } -Html::css()->addCss(<<load('/tiny/skins/content/writer/content.min.css'); +Html::js()->load('/tiny/tinymce.min.js'); + +Html::js()->vue->set('initEditor', [ + 'selector' => '#tinymce-body', + 'inline' => true, + 'readonly' => true, + "plugins" => "quickbars fullscreen lists advlist table preview quickbars image codesample code link media", + "toolbar" => "undo redo bold italic underline forecolor backcolor strikethrough align lineheight styleselect formatselect fontselect fontsizeselect bullist numlist outdent indent blocks blockquote removeformat image link codesample subscript superscript code hr fullscreen", + 'setup' => JsFunc::arrow(['editor'])->code( + << { + editor.setContent(VueApp.content) + }); + JS + ) +]); +Html::js()->vue->set('content', $notebook?->content); +Html::js()->vue->event('mounted', JsCode::make( + JsCode::create(' tinymce.init(this.initEditor);'), +)); return $notebook?->content - ? El::double('div')->addClass('fr-element fr-view')->append($notebook->content) + ? El::double('div')->setId('tinymce-body')->addClass('fr-element fr-view') : ' ';