Browse Source

细节优化

moshaorui 2 months ago
parent
commit
5b3d849f5b

+ 88 - 20
app/Admin/Controllers/SiteAlbumController.php

@@ -19,19 +19,29 @@ use function Symfony\Component\Translation\t;
 class SiteAlbumController extends AdminController
 {
     use HasUploadedFile;
+
+    public function title()
+    {
+        return admin_trans( 'admin.album');
+    }
+
     /**
      * page index
      */
     public function index(Content $content)
     {
+        //记录folder_id
+        $folderId = isset($_GET['folder_id']) ? intval($_GET['folder_id']) : 0;
+        //保存临时变量
+        setTempValue('folderId', $folderId);
+
         $html =  $content
             ->header(admin_trans( 'admin.album'))
             ->body($this->indexForm());
         $html = $html->render();
-
-
+        //把post请求改为get请求
         $html = preg_replace('/<form(.*?)method="post"(.*?)>/s', '<form$1method="get"$2>', $html, 1);
-
+        //删除第一个formID对应的JS代码
         preg_match('/<form[^>]*id="([^"]*)"[^>]*>/', $html, $matches);
         if (isset($matches[1])) {
             $formId = $matches[1]; // 获取 id 的值
@@ -41,6 +51,8 @@ class SiteAlbumController extends AdminController
             $html = preg_replace($pattern, '', $html);
         }
 
+
+
         return $html;
     }
 
@@ -68,6 +80,31 @@ class SiteAlbumController extends AdminController
             $form->block(10, function (Form\BlockForm $form)  {
                 $form->html($this->grid())->width(12);
             });
+            //加入JS
+            Admin::script(
+<<<JS
+        setTimeout(() => {
+            // 获取所有具有 class="jstree-anchor" 的 <a> 元素
+            const anchors = document.querySelectorAll('a.jstree-anchor');
+            anchors.forEach(anchor => {
+                // 提取 id 中的数字部分
+                const id = anchor.id.split('_')[0];
+                // 动态生成跳转链接
+                const href = `/prime-control/site-album?folder_id=`+id;
+                // 绑定点击事件
+                anchor.addEventListener('click', function(event) {
+                    event.preventDefault(); // 阻止默认的链接跳转行为
+                    window.location.href = href; // 跳转到目标页面
+                });
+            });
+        }, 200);
+const firstCheckbox = document.querySelector('.vs-checkbox-primary');
+// 如果找到元素,则隐藏它
+if (firstCheckbox) {
+    firstCheckbox.style.display = 'none';
+}
+JS
+                );
         });
     }
 
@@ -77,30 +114,39 @@ class SiteAlbumController extends AdminController
             //默认分页条数
             $grid->paginate(config('admin.per_page'));
             $grid->column('id')->sortable();
-            $grid->column('title');
+            $grid->column('cover')->display(function ($images) {
+                $images = json_decode($images);
+                // 限制最多显示2个缩略图
+                $dataImages = array_slice($images, 0, 1);
+                return CommonHelper::displayImage($dataImages,80);
+            });
             $grid->column('model');
-            $grid->column('order')->sortable();
-            $grid->column('enabled')->switch();
-            $grid->column('created_at')->sortable();
-
-           // $grid->quickSearch(['title','model']);
-
+            $grid->column('enabled')->using(admin_trans_array(config('dictionary.enabled'))) ->label([
+                0 => 'danger',
+                1 => 'success',
+            ]);
+            $grid->column('missing_content')->display(function ($missing_content) {
+                $missing_content = [];
+                if ($this->cover == '[]') {$missing_content[] = '主图';}
+                if ($this->en_detail == '[]') {$missing_content[] = '英文详情';}
+                if ($this->cn_detail == '[]') {$missing_content[] = '中文详情';}
+                if ($this->video == '[]') {$missing_content[] = '视频';}
+                if ($this->poster == '[]') {$missing_content[] = '海报';}
+                if ($this->cert == '[]') {$missing_content[] = '证书';}
+                if ($this->pdf == '[]') {$missing_content[] = 'PDF';}
+                return implode(' / ', $missing_content);
+            });
             // 筛选
             $grid->filter(function (Grid\Filter $filter) {
                 $filter->panel();
                 $filter->expand();
-                $filter->like('title')->width(2);
+                $filter->like('model')->width(2);
                 $filter->equal('folder_id',admin_trans_label('folder'))->select(SiteAlbumFolderModel::selectOptions())->width(3);
             });
-
             $grid->disableViewButton();
-            //$grid->showQuickEditButton();
             $grid->disablePerPages();
             $grid->disableRefreshButton();
-
             $grid->model()->orderBy('order', 'asc')->orderBy('id', 'desc');
-
-
             //弹窗大小
             $grid->setDialogFormDimensions('830px','670px');
         });
@@ -110,7 +156,6 @@ class SiteAlbumController extends AdminController
     {
         $thisObj = $this;
         return Form::make(new SiteAlbum(), function (Form $form) use ($thisObj) {
-
             $form->width(9, 1);
             $form->disableViewButton();
             $form->disableViewCheck();
@@ -139,9 +184,10 @@ class SiteAlbumController extends AdminController
                 $form->input('pdf', $pdfs);
             });
             $form->tab(admin_trans_label('basic_info'), function (Form $form) {
-                $form->select('folder_id')->options(SiteAlbumFolder::selectOptions())->required();
-                $form->text('title')->required();
-                $form->text('model');
+                $folderId = getTempValue('folderId');
+                $form->select('folder_id')->options(SiteAlbumFolder::selectOptions())->default($folderId)->required();
+                $form->text('model')->required();
+                $form->switch('enabled')->default(1);
             })->tab(admin_trans_label('cover'), function (Form $form) {
                 $form->multipleImage('cover')
                     ->retainable()//禁止删OSS图
@@ -280,7 +326,29 @@ class SiteAlbumController extends AdminController
                          return json_encode($data);
                      });
             });
+
+            $folderId = getTempValue('folderId');
+            if ($folderId >0) {
+                Admin::script(
+<<<JS
+const featherIcon = document.querySelector('i.feather.icon-list');
+
+if (featherIcon) {
+    // 找到 <i> 的上级 <a> 元素
+    const parentLink = featherIcon.closest('a');
+
+    if (parentLink && parentLink.href) {
+        // 在 href 后追加 ?folder_id=3
+        parentLink.href = parentLink.href + '?folder_id={$folderId}';
+    }
+}
+JS
+                );
+            }
+
         });
+
+
     }
 
     /*

+ 4 - 0
config/dictionary.php

@@ -31,6 +31,10 @@ return [
         '1' => 'other',//其他
     ],
 
+    //临时变量
+    'temp_value' => [
+        'folderId' => 0, //用于用于相册文件夹的临时变量
+    ],
 
 
 

+ 2 - 0
lang/en/global.php

@@ -109,6 +109,7 @@ return [
         'pdf_title'             => 'PDF Title',
         'pdf_src'               => 'PDF Src',
         'video_src'             => 'Video Src',
+        'missing_content'       => 'Missing Content',
     ],
     'labels' => [
         'list'                  => 'List',
@@ -219,6 +220,7 @@ return [
         'basic_info'            => 'Basic Info',
         'image_preview'         => 'Image Preview',
         'video_cover'           => 'Video Cover',
+        'folder'                => 'Folder',
     ],
     'options' => [
         //

+ 2 - 0
lang/zh_CN/global.php

@@ -115,6 +115,7 @@ return [
         'pdf_title'             => 'PDF标题',
         'pdf_src'               => 'PDF文件',
         'video_src'             => '视频文件',
+        'missing_content'       => '缺少内容',
 
     ],
     'labels' => [
@@ -226,6 +227,7 @@ return [
         'basic_info'            => '基本信息',
         'image_preview'         => '图片预览',
         'video_cover'           => '视频封面',
+        'folder'                => '文件夹名称',
     ],
     'options' => [
         //

BIN
public/static/images/no-image.jpg