InitAppearance.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. namespace App\Admin\Actions\Grid;
  3. use App\Admin\Forms\InquiryAssignment as InquiryAssignmentForm;
  4. use App\Admin\Repositories\DistAdminDistributor;
  5. use App\Admin\Repositories\DistAppearance;
  6. use App\Admin\Repositories\DistAppearanceBak;
  7. use Dcat\Admin\Grid\BatchAction;
  8. use Dcat\Admin\Widgets\Modal;
  9. use Illuminate\Http\Request;
  10. class InitAppearance extends BatchAction
  11. {
  12. /**
  13. * @return string
  14. */
  15. protected $title = '';
  16. public function __construct()
  17. {
  18. $this->title = admin_trans_label('init_appearance');
  19. }
  20. /**
  21. * 确认弹窗,如果不需要则返回空即可
  22. *
  23. * @return array|string|void
  24. */
  25. public function confirm()
  26. {
  27. // 只显示标题
  28. // return '您确定要发送新的提醒消息吗?';
  29. // 显示标题和内容
  30. return ['The data will be restored to its original version. Do you want to continue?', ''];
  31. }
  32. /**
  33. * 处理请求
  34. * 如果你的类中包含了此方法,则点击按钮后会自动向后端发起ajax请求,并且会通过此方法处理请求逻辑
  35. *
  36. * @param Request $request
  37. */
  38. public function handle(Request $request)
  39. {
  40. $keys = $request->input('_key');
  41. if (is_array($keys) && count($keys) > 0) {
  42. if (count($keys) > 1) {
  43. return $this->response()->error('Only one row at a time')->refresh();
  44. }
  45. $baseDistId = config('dictionary.base_dist_id');
  46. if ($baseDistId == $keys[0]) {
  47. return $this->response()->error('The base distribution cannot be initialized')->refresh();
  48. }
  49. //初始化
  50. $row = DistAdminDistributor::getOneById($keys[0]);
  51. if ($row) {
  52. //备份数据
  53. DistAppearanceBak::backupData($row->appearance_id, $row->id);
  54. //初始化主题
  55. DistAppearance::initTheme($row->appearance_id, $row->id);
  56. return $this->response()->success('Success')->refresh();
  57. }
  58. return $this->response()->error('Data does not exist')->refresh();
  59. } else {
  60. return $this->response()->error('No data selected!')->refresh();
  61. }
  62. }
  63. /**
  64. * 设置动作发起请求前的回调函数,返回false可以中断请求.
  65. *
  66. * @return string
  67. */
  68. public function getModalScript(){
  69. $warning = __('No data selected!');
  70. return <<<JS
  71. var key = {$this->getSelectedKeysScript()}
  72. $('#inquiryIds').val(key);
  73. JS;
  74. }
  75. public function getSelectedKeysScript()
  76. {
  77. return "Dcat.grid.selected('{$this->parent->getName()}')";
  78. }
  79. }