{"id":944,"date":"2024-01-14T12:37:42","date_gmt":"2024-01-14T03:37:42","guid":{"rendered":"http:\/\/systemdev.comsys-blog.com\/?p=944"},"modified":"2024-01-14T12:37:42","modified_gmt":"2024-01-14T03:37:42","slug":"tinymce%e3%82%92%e4%bd%bf%e3%81%86","status":"publish","type":"post","link":"https:\/\/tamura.jp\/?p=944","title":{"rendered":"tinyMCE\u3092\u4f7f\u3046"},"content":{"rendered":"<pre style=\"line-height:130%;font-size:1.1em\">\n  tinymce.init({\n    selector: '#\u8cea\u554f\u5185\u5bb9',\n    language: 'ja' ,\n    language_url: 'tinymce_6.8.2\/tinymce\/js\/tinymce\/langs\/ja.js',\n    autoresize_min_height: 200,\n    autoresize_max_height: 10000,\n    promotion: false,\n    statusbar: false,\n    plugins: 'autoresize anchor autolink charmap codesample emoticons image link lists media searchreplace table visualblocks wordcount ',\n    toolbar: 'undo redo | blocks fontfamily fontsize | bold italic underline strikethrough | link image media table mergetags | align lineheight | tinycomments | checklist numlist bullist indent outdent | emoticons charmap | removeformat',\n    tinycomments_mode: 'embedded',\n    mergetags_list: [\n      { value: 'First.Name', title: 'First Name' },\n      { value: 'Email', title: 'Email' },\n    ],\n    init_instance_callback: editor =&gt; {\n        editor.on('drop', event =&gt; {\n          const file = event.dataTransfer.files[0];\n          editor.on('Change', () =&gt; {\n            if (file != undefined &amp;&amp; file != null &amp;&amp; file.name != '') {\n              const doc = editor.getDoc();\n              const imgs = Array.from(doc.images);\n              \/\/ const len = imgs.length;\n              imgs.forEach(img =&gt; {\n                if (img.src.match(\/^blob\/) || img.currentSrc.match(\/^blob\/)) {\n                  fetch(img.src)\n                    .then(response =&gt; {\n                      return response.blob();\n                    })\n                    .then(blob =&gt; {\n                      const fData = new FormData();\n                      fData.append('image', blob, file.name);\n                      fData.append('action_cmd', 'upload');\n                      fetch(\n                        \"\u8cea\u554fDetail.do\",\n                        {\n                          method: 'POST',\n                          body: fData\n                        }\n                      )\n                        .then(response =&gt; {\n                          return response.json();\n                        })\n                        .then(json =&gt; {\n                          img.src = json.result; \/\/ \u3053\u306e\u300cimg\u300d\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u633f\u5165\u3055\u308c\u308b<img>\u30bf\u30b0\u306a\u306e\u3067\u3001\u300cclass\u300d\u306a\u308a\u300cdata-caption\u300d\u306a\u308a\u597d\u304d\u306b\u8ffd\u52a0\u3067\u304d\u308b\n                        });\n                    });\n                }\n              });\n            }\n          });\n        });\n      }\n  });\n\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>tinymce.init({ selector: &#8216;#\u8cea\u554f\u5185\u5bb9&#8217;, language: &#8216;ja&#8217; , language_url: &#8216;tinymce_6.8.2\/tinymce\/js\/tinymce\/langs\/ja.js [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[26],"tags":[],"class_list":["post-944","post","type-post","status-publish","format-standard","hentry","category-php"],"_links":{"self":[{"href":"https:\/\/tamura.jp\/index.php?rest_route=\/wp\/v2\/posts\/944","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tamura.jp\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tamura.jp\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tamura.jp\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tamura.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=944"}],"version-history":[{"count":0,"href":"https:\/\/tamura.jp\/index.php?rest_route=\/wp\/v2\/posts\/944\/revisions"}],"wp:attachment":[{"href":"https:\/\/tamura.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=944"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tamura.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=944"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tamura.jp\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=944"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}