NewsResource.php 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. <?php
  2. namespace App\Filament\Resources;
  3. use App\Filament\Resources\NewsResource\Pages;
  4. use App\Models\News;
  5. use App\Models\NewsCategory;
  6. use Filament\Forms\Components\Actions\Action;
  7. use Filament\Forms\Components\Group;
  8. use Filament\Forms\Components\Hidden;
  9. use Filament\Forms\Components\Repeater;
  10. use Filament\Forms\Components\RichEditor;
  11. use Filament\Forms\Components\Tabs;
  12. use Filament\Forms\Components\Tabs\Tab;
  13. use Filament\Forms\Components\TextInput;
  14. use Filament\Forms\Components\Textarea;
  15. use Filament\Forms\Components\Select;
  16. use Filament\Forms\Components\Radio;
  17. use Filament\Forms\Components\Section;
  18. use Filament\Forms\Components\Toggle;
  19. use Filament\Forms\Components\DatePicker;
  20. use Filament\Forms\Components\DateTimePicker;
  21. use Filament\Forms\Components\FileUpload;
  22. use Filament\Forms\Get;
  23. use Filament\Forms\Form;
  24. use Filament\Forms\Set;
  25. use Filament\Resources\Resource;
  26. use Filament\Tables;
  27. use Filament\Tables\Columns\IconColumn;
  28. use Filament\Tables\Columns\ImageColumn;
  29. use Filament\Tables\Columns\TextColumn;
  30. use Filament\Tables\Filters\SelectFilter;
  31. use Filament\Tables\Table;
  32. use Illuminate\Database\Eloquent\Builder;
  33. use Illuminate\Support\Facades\DB;
  34. use Illuminate\Support\Str;
  35. use Malzariey\FilamentLexicalEditor\Enums\ToolbarItem;
  36. use Malzariey\FilamentLexicalEditor\FilamentLexicalEditor;
  37. use SolutionForest\FilamentTranslateField\Forms\Component\Translate;
  38. use RalphJSmit\Filament\SEO\SEO;
  39. use Illuminate\Support\HtmlString;
  40. class NewsResource extends Resource
  41. {
  42. protected static ?string $model = News::class;
  43. protected static ?string $modelLabel = "文章管理";
  44. protected static ?string $navigationIcon = 'heroicon-o-newspaper';
  45. protected static ?string $navigationGroup = '上稿內容管理';
  46. protected static ?string $navigationLabel = "文章管理";
  47. public static function form(Form $form): Form
  48. {
  49. return $form
  50. ->schema([
  51. //
  52. Section::make("新增 文章")->schema([
  53. Group::make()->schema([
  54. Select::make("news_category_id")
  55. ->options(NewsCategory::get()->pluck("name","id"))
  56. ->label("文章分類")
  57. ->columnSpan(1)
  58. ->native(false)
  59. ->afterStateHydrated(function ($component, $state) {
  60. // ✅ 如果沒有值,設定為第一項
  61. if (empty($state)) {
  62. $firstCategoryId = NewsCategory::first()?->id;
  63. if ($firstCategoryId) {
  64. $component->state($firstCategoryId);
  65. }
  66. }
  67. })
  68. ->required(),
  69. ])->columnSpanFull()->columns(2),
  70. Group::make()->schema([
  71. DatePicker::make('post_date')
  72. ->label("文章日期")
  73. ->closeOnDateSelection()->required(),
  74. DateTimePicker::make('start_date')
  75. ->label("預約發布時間")
  76. ->closeOnDateSelection(),
  77. DateTimePicker::make('end_date')
  78. ->label("預約下架時間")
  79. ->closeOnDateSelection(),
  80. ])->columnSpanFull()->columns(3),
  81. FileUpload::make('news_img_pc')->label("列表圖(desktop)")
  82. ->disk("public")
  83. ->helperText('檔案大小限制為1MB以下')
  84. // ->helperText('建議寬高限制為:1280*720px,檔案大小限制為1M以下')->maxSize('1024')
  85. ->directory("news"),
  86. FileUpload::make('news_img_mobile')->label("列表圖(mobile)")
  87. ->disk("public")
  88. ->helperText('檔案大小限制為1MB以下')
  89. // ->helperText('建議寬高限制為:600*896px,檔案大小限制為1M以下')->maxSize('1024')
  90. ->directory("news"),
  91. Translate::make()->schema(fn (string $locale) => [
  92. TextInput::make('title')
  93. ->label("標題")
  94. ->reactive()
  95. ->helperText(function (callable $get) {
  96. $activeLocale = $locale ?? 'zh_TW';
  97. $value = $get('title');
  98. $text = is_array($value)
  99. ? (string) ($value[$activeLocale] ?? '')
  100. : (string) ($value ?? '');
  101. $length = mb_strlen($text);
  102. $max = 24;
  103. $divClass = 'text-limit-amount';
  104. return new HtmlString("
  105. <div class='{$divClass} text-sm'>
  106. 目前字數:{$length} / {$max}
  107. </div>
  108. ");
  109. })
  110. ->columnSpan(1),
  111. TextInput::make('written_by')
  112. ->label("發佈者")->columnSpan(1),
  113. Textarea::make("description")
  114. ->rows(5)
  115. ->columnSpanFull()
  116. ->label("短文")
  117. ->reactive()
  118. ->helperText(function (callable $get) {
  119. $activeLocale = $locale ?? 'zh_TW';
  120. $value = $get('description');
  121. $text = is_array($value)
  122. ? (string) ($value[$activeLocale] ?? '')
  123. : (string) ($value ?? '');
  124. $length = mb_strlen($text);
  125. $max = 84;
  126. $divClass = 'text-limit-amount';
  127. return new HtmlString("
  128. <div class='{$divClass} text-sm'>
  129. 目前字數:{$length} / {$max}
  130. </div>
  131. ");
  132. })
  133. ])->locales(["zh_TW", "en"])
  134. ->id("main")
  135. ->columnSpanFull()->columns(3),
  136. TextInput::make('order')->label("排序")->integer()->default(0),
  137. ])->columns(3),
  138. Section::make("SEO")->schema([
  139. // SEO::make(),
  140. Translate::make()->schema(fn (string $locale) => [
  141. TextInput::make('meta_title')->label("SEO 標題")->columnSpan(1),
  142. Textarea::make("meta_keyword")->rows(5)->columnSpanFull()->label("SEO 關鍵字"),
  143. Textarea::make("meta_description")->rows(5)->columnSpanFull()->label("SEO 短文"),
  144. ])
  145. ->locales(["zh_TW", "en"])
  146. ->id("seo"),
  147. FileUpload::make('meta_img')->label("放大預覽圖")->disk("public")
  148. ->helperText('檔案大小限制為1MB以下')
  149. // ->helperText('建議寬高限制為:1200*630px,檔案大小限制為1M以下')->maxSize('1024')
  150. ->directory("seo/news"),
  151. ])->columnSpanFull(),
  152. Section::make("文章內容")->schema([
  153. Repeater::make("paragraphs")->schema([
  154. TextInput::make('item_key')
  155. ->default(fn () => Str::random())
  156. ->hidden()
  157. ->afterStateHydrated(function (TextInput $component, $state) {
  158. if (empty($state)) {
  159. $component->state(Str::random());
  160. }
  161. }),
  162. Radio::make("paragraph_type")->options([
  163. 1 => "圖片",
  164. 2 => "文字",
  165. 3 => "影音",
  166. ])->label("")->default(1)->Live(),
  167. Group::make()->schema([
  168. Section::make('')->schema([
  169. Repeater::make("multiple_images")->schema([
  170. TextInput::make('para_img_item_key')
  171. ->default(fn () => Str::random())
  172. ->hidden()
  173. ->afterStateHydrated(function (TextInput $component, $state) {
  174. if (empty($state)) {
  175. $component->state(Str::random());
  176. }
  177. }),
  178. Translate::make()->schema(fn (string $locale) => [
  179. TextInput::make('image_alt')->label("圖片註文"),
  180. ])->locales(["zh_TW", "en"])
  181. ->id(fn ($get) => "para_img_mul_" . $get('para_img_item_key')),
  182. FileUpload::make('image_url')->label("")->disk("public")
  183. ->helperText('檔案大小限制為1MB以下')
  184. // ->helperText('建議寬高限制為:1080*675px,檔案大小限制為1M以下')->maxSize('1024')
  185. ->directory("news/extraPhoto")
  186. ->maxFiles(10),
  187. ])
  188. ->relationship("photos")
  189. ->label("")
  190. ->orderColumn('order')
  191. ])
  192. ])->visible(fn (Get $get):bool => $get("paragraph_type") == 1),
  193. Group::make()->schema([
  194. FilamentLexicalEditor::make('text_content_tw')
  195. // ->label('繁體中文內容')
  196. ->label(new \Illuminate\Support\HtmlString('繁體中文內容 <p href="#" style="cursor:pointer;color:blue;" onclick="var img = this.closest(\'div\').querySelector(\'img\');img.style.display = (img.style.display === \'none\') ? \'block\' : \'none\';"> 工具列說明</p><img src="' . asset('images/tool-bar.png') . '" style="display:none;">'))
  197. ->id(fn ($get) => "text_content_tw_" . $get('item_key') . "_" . uniqid())
  198. ->enabledToolbars([
  199. ToolbarItem::UNDO, ToolbarItem::REDO, ToolbarItem::NORMAL,
  200. ToolbarItem::H2, ToolbarItem::H3, ToolbarItem::H4, ToolbarItem::H5,
  201. ToolbarItem::BULLET, ToolbarItem::NUMBERED, ToolbarItem::FONT_SIZE,
  202. ToolbarItem::BOLD, ToolbarItem::ITALIC, ToolbarItem::UNDERLINE,
  203. ToolbarItem::LINK, ToolbarItem::TEXT_COLOR, ToolbarItem::BACKGROUND_COLOR,
  204. ToolbarItem::SUBSCRIPT, ToolbarItem::LOWERCASE, ToolbarItem::DIVIDER,
  205. ToolbarItem::UPPERCASE, ToolbarItem::CLEAR, ToolbarItem::HR, ToolbarItem::FONT_FAMILY
  206. ])
  207. ->live(onBlur: true)
  208. ->columnSpanFull(),
  209. FilamentLexicalEditor::make('text_content_en')
  210. ->label('English Content')
  211. ->id(fn ($get) => "text_content_en_" . $get('item_key') . "_" . uniqid())
  212. ->enabledToolbars([
  213. ToolbarItem::UNDO, ToolbarItem::REDO, ToolbarItem::NORMAL,
  214. ToolbarItem::H2, ToolbarItem::H3, ToolbarItem::H4, ToolbarItem::H5,
  215. ToolbarItem::BULLET, ToolbarItem::NUMBERED, ToolbarItem::FONT_SIZE,
  216. ToolbarItem::BOLD, ToolbarItem::ITALIC, ToolbarItem::UNDERLINE,
  217. ToolbarItem::LINK, ToolbarItem::TEXT_COLOR, ToolbarItem::BACKGROUND_COLOR,
  218. ToolbarItem::SUBSCRIPT, ToolbarItem::LOWERCASE, ToolbarItem::DIVIDER,
  219. ToolbarItem::UPPERCASE, ToolbarItem::CLEAR, ToolbarItem::HR, ToolbarItem::FONT_FAMILY
  220. ])
  221. ->columnSpanFull(),
  222. ])->visible(fn (Get $get):bool => $get("paragraph_type") == 2),
  223. Group::make()->schema([
  224. Section::make("")->schema([
  225. FileUpload::make('video_img')->label("影片底圖")
  226. ->disk("public")
  227. ->helperText('檔案大小限制為1MB以下')
  228. ->directory("news/paragraph/video"),
  229. // ->helperText('建議寬高限制為:2000*720px,出血寬度720px,主要圖像範圍為:1280*720px,檔案大小限制為1M以下')->maxSize('1024'),
  230. Translate::make()->schema(fn (string $locale) => [
  231. TextInput::make('video_img_alt')->label("圖片註文")->columnSpan(1),
  232. ])->locales(["zh_TW", "en"])
  233. ->id(fn ($get) => "para_video_img_alt_" . $get('item_key')),
  234. Radio::make("video_type")->label("")->options([
  235. 1 => "網址",
  236. 2 => "檔案"
  237. ])->columnSpanFull()->default(1)->Live(),
  238. Group::make()->schema([
  239. TextInput::make('link')->label("網址")->nullable(),
  240. ])->visible(fn (Get $get):bool => $get("video_type") == 1)->columnSpanFull(),
  241. Group::make()->schema([
  242. FileUpload::make('video_url')->label("")->disk("public")->directory("news/paragraph/video")
  243. ->helperText('檔案大小限制為100MB以下')
  244. // ->helperText('建議影片寬高限制為:1920*1080px,出血寬度720px,大小限制為:100M以下')
  245. // ->maxSize(102400)
  246. ->nullable(),
  247. ])->visible(fn (Get $get):bool => $get("video_type") == 2)->columnSpanFull(),
  248. ]),
  249. ])->visible(fn (Get $get):bool => $get("paragraph_type") == 3),
  250. ])
  251. ->relationship("paragraphs")
  252. ->label("段落")
  253. ->collapsible()
  254. ->reorderableWithButtons()
  255. ->orderColumn('order')
  256. ->cloneable()
  257. ->mutateRelationshipDataBeforeFillUsing(function (array $data): array {
  258. if ($data['paragraph_type'] == 2 && !empty($data['text_content'])) {
  259. $content = is_string($data['text_content'])
  260. ? json_decode($data['text_content'], true)
  261. : $data['text_content'];
  262. if (is_array($content)) {
  263. $data['text_content_tw'] = $content['zh_TW'] ?? '';
  264. $data['text_content_en'] = $content['en'] ?? '';
  265. }
  266. }
  267. return $data;
  268. })
  269. ->mutateRelationshipDataBeforeSaveUsing(function (array $data): array{
  270. if ($data['paragraph_type'] == 2) {
  271. $data["text_content"] = ["zh_TW" => $data["text_content_tw"], "en" => $data["text_content_en"]];
  272. // 移除臨時的分離欄位,只保留合併的 JSON 欄位
  273. unset($data['text_content_tw']);
  274. unset($data['text_content_en']);
  275. }
  276. return $data;
  277. })
  278. ]),
  279. ]);
  280. }
  281. public static function table(Table $table): Table
  282. {
  283. $url = env('APP_URL')=="https://webdev.yico.tw:8088/" ? "https://demo.blockstudio.tw/yichiu/zh/news/" : "https://www.yico.tw/" ;
  284. return $table
  285. ->columns([
  286. //
  287. TextColumn::make("newsCategory.name")->label("分類")->alignCenter(),
  288. TextColumn::make("title")->label("標題")->alignCenter(),
  289. TextColumn::make("written_by")->label("發佈者")->alignCenter(),
  290. TextColumn::make("post_date")->label("文章時間")->dateTime('Y/m/d')->alignCenter(),
  291. ImageColumn::make("news_img_pc_url")->label("列表圖")->alignCenter(),
  292. TextColumn::make("list_audit_state")->label("狀態")->badge()
  293. ->color(fn (string $state): string => match ($state) {
  294. '暫存' => 'warning',
  295. '已發佈' => 'success',
  296. }),
  297. IconColumn::make("on_top")->label("置頂")
  298. ->color(fn (string $state): string => match ($state) {
  299. 1 => 'success',
  300. default => ''
  301. })
  302. ->icon(fn (string $state): string => match ($state) {
  303. 1 => 'heroicon-o-check-circle',
  304. default => ''
  305. })
  306. ->action(function ($record): void {
  307. $record->on_top = !$record->on_top;
  308. $record->save();
  309. }),
  310. TextColumn::make("start_date")->label("預計發佈時間")->dateTime('Y/m/d H:i:s')->alignCenter(),
  311. TextColumn::make("end_date")->label("預計下架時間")->dateTime('Y/m/d H:i:s')->alignCenter(),
  312. TextColumn::make("created_at")->label("建立時間")->dateTime('Y/m/d H:i:s')->alignCenter(),
  313. TextColumn::make("updated_at")->label("更新時間")->dateTime()->alignCenter(),
  314. ])
  315. ->filters([
  316. SelectFilter::make('news_category_id')->label("分類")
  317. ->options(NewsCategory::orderBy("order")->pluck("name", "id"))
  318. ->attribute('news_category_id'),
  319. SelectFilter::make('post_date')->label("年份")
  320. ->options(News::select(DB::raw("DATE_FORMAT(post_date, '%Y') as year"))->whereNotNull("post_date")->distinct()->pluck("year","year")->toArray())
  321. ->query(
  322. fn (array $data, Builder $query): Builder =>
  323. $query->when(
  324. $data['value'],
  325. fn (Builder $query, $value): Builder => $query->where('post_date', 'like', $data['value']. "%")
  326. )
  327. ),
  328. SelectFilter::make('visible')->label("狀態")
  329. ->options([
  330. 0 => "暫存",
  331. 1 => "已發佈",
  332. ])
  333. ->query(
  334. fn (array $data, Builder $query): Builder =>
  335. $query->when(
  336. $data['value'],
  337. fn (Builder $query, $value): Builder => $query->where('visible', $data['value'])
  338. )
  339. ),
  340. ])
  341. ->actions([
  342. Tables\Actions\EditAction::make(),
  343. Tables\Actions\DeleteAction::make(),
  344. \Filament\Tables\Actions\Action::make("audit")
  345. ->label(fn ($record) => match ($record->visible) {
  346. 0 => '發佈',
  347. 1 => '下架',
  348. })
  349. ->color(fn ($record) => match ($record->visible) {
  350. 0 => 'warning',
  351. 1 => 'gray',
  352. })
  353. ->icon(fn ($record) => match ($record->visible) {
  354. 0 => 'heroicon-m-chevron-double-up',
  355. 1 => 'heroicon-m-chevron-double-down',
  356. })
  357. ->action(function ($record): void {
  358. $record->visible = !$record->visible;
  359. $record->save();
  360. })
  361. ->outlined()
  362. ->requiresConfirmation(),
  363. Tables\Actions\Action::make('preview')
  364. ->label('前台預覽')
  365. ->icon('heroicon-m-arrow-top-right-on-square')
  366. ->color('info')
  367. ->url(fn ($record) => $url.$record->id."?preview=true")
  368. ->openUrlInNewTab()
  369. ->outlined(),
  370. ])
  371. ->bulkActions([
  372. Tables\Actions\BulkActionGroup::make([
  373. Tables\Actions\DeleteBulkAction::make(),
  374. ]),
  375. ])
  376. ->defaultSort('order', 'desc')
  377. ->defaultSort('created_at', 'desc');
  378. }
  379. public static function getRelations(): array
  380. {
  381. return [
  382. //
  383. ];
  384. }
  385. public static function getPages(): array
  386. {
  387. return [
  388. 'index' => Pages\ListNews::route('/'),
  389. 'create' => Pages\CreateNews::route('/create'),
  390. 'edit' => Pages\EditNews::route('/{record}/edit'),
  391. 'view' => Pages\ViewNews::route('/{record}/view'),
  392. ];
  393. }
  394. }