소스 검색

图片上传后,把长与宽设为空 要运行composer install

moshaorui 3 주 전
부모
커밋
87b7b3c96e
2개의 변경된 파일164개의 추가작업 그리고 1개의 파일을 삭제
  1. 162 0
      app/repair/dcat-plus/laravel-admin/src/Form/Field/Editor.php
  2. 2 1
      composer.json

+ 162 - 0
app/repair/dcat-plus/laravel-admin/src/Form/Field/Editor.php

@@ -0,0 +1,162 @@
+<?php
+
+namespace Dcat\Admin\Form\Field;
+
+use Dcat\Admin\Form\Field;
+use Dcat\Admin\Support\Helper;
+
+/**
+ * TinyMCE editor.
+ *
+ * @see https://www.tiny.cloud/docs
+ * @see http://tinymce.ax-z.cn/
+ */
+class Editor extends Field
+{
+    protected $options = [
+        'plugins' => [
+            'advlist',
+            'autolink',
+            'link',
+            'image',
+            'media',
+            'lists',
+            'preview',
+            'code',
+            'help',
+            'fullscreen',
+            'table',
+            'autoresize',
+            'codesample',
+        ],
+        'toolbar' => [
+            'undo redo | preview fullscreen | styleselect | fontsizeselect bold italic underline strikethrough forecolor backcolor | link image media blockquote removeformat codesample',
+            'alignleft aligncenter alignright  alignjustify| indent outdent bullist numlist table subscript superscript | code',
+        ],
+        'min_height' => 400,
+        'save_enablewhendirty' => true,
+        'convert_urls' => false,
+
+        // 图片上传后,把长与宽设为空
+        'image_dimensions' =>  false,
+        'image_prepend_dimensions' => false,
+        'object_resizing' => false,
+    ];
+
+    protected $disk;
+
+    protected $imageUploadDirectory = 'tinymce/images';
+
+    /**
+     * 设置文件上传存储配置.
+     *
+     * @param  string  $disk
+     * @return $this
+     */
+    public function disk(string $disk)
+    {
+        $this->disk = $disk;
+
+        return $this;
+    }
+
+    /**
+     * 设置图片上传文件夹.
+     *
+     * @param  string  $dir
+     * @return $this
+     */
+    public function imageDirectory(string $dir)
+    {
+        $this->imageUploadDirectory = $dir;
+
+        return $this;
+    }
+
+    /**
+     * 自定义图片上传接口.
+     *
+     * @param  string  $url
+     * @return $this
+     */
+    public function imageUrl(string $url)
+    {
+        return $this->mergeOptions(['images_upload_url' => $this->formatUrl(admin_url($url))]);
+    }
+
+    /**
+     * 设置语言包url.
+     *
+     * @param  string  $url
+     * @return $this
+     */
+    public function languageUrl(string $url)
+    {
+        return $this->mergeOptions(['language_url' => $url]);
+    }
+
+    /**
+     * 设置编辑器高度.
+     *
+     * @param  int  $height
+     * @return $this
+     */
+    public function height(int $height)
+    {
+        return $this->mergeOptions(['min_height' => $height]);
+    }
+
+    /**
+     * @return array
+     */
+    protected function formatOptions()
+    {
+        $this->options['language'] = config('app.locale');
+        $this->options['readonly'] = ! empty($this->attributes['readonly']) || ! empty($this->attributes['disabled']);
+
+        if (empty($this->options['images_upload_url'])) {
+            $this->options['images_upload_url'] = $this->defaultImageUploadUrl();
+        }
+
+        $this->options['image_dimensions'] = true;
+
+
+        return $this->options;
+    }
+
+    /**
+     * @return string
+     */
+    protected function defaultImageUploadUrl()
+    {
+        return $this->formatUrl(route(admin_api_route_name('tinymce.upload')));
+    }
+
+    /**
+     * @param  string  $url
+     * @return string
+     */
+    protected function formatUrl(string $url)
+    {
+        return Helper::urlWithQuery(
+            $url,
+            [
+                '_token' => csrf_token(),
+                'disk'   => $this->disk,
+                'dir'    => $this->imageUploadDirectory,
+            ]
+        );
+    }
+
+    /**
+     * @return string
+     */
+    public function render()
+    {
+        $this->addVariables([
+            'options' => $this->formatOptions(),
+        ]);
+
+        return parent::render();
+    }
+}

+ 2 - 1
composer.json

@@ -28,7 +28,8 @@
             "App\\": "app/",
             "Database\\Factories\\": "database/factories/",
             "Database\\Seeders\\": "database/seeders/",
-            "Dcat\\Admin\\Http\\Middleware\\": "app/repair/dcat-plus/laravel-admin/src/Http/Middleware/"
+            "Dcat\\Admin\\Http\\Middleware\\": "app/repair/dcat-plus/laravel-admin/src/Http/Middleware/",
+            "Dcat\\Admin\\Form\\Field\\": "app/repair/dcat-plus/laravel-admin/src/Form/Field/"
         }
     },
     "autoload-dev": {