MultipleCutImage.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace App\Exceptions\Form;
  3. use Dcat\Admin\Support\Helper;
  4. use Dcat\Admin\Form\Field\Image;
  5. use PhpParser\Node\Expr\Cast\Double;
  6. class MultipleCutImage extends Image
  7. {
  8. protected $view = 'admin.form_custom.cut-image';
  9. /**
  10. * Allow to sort files.
  11. *
  12. * @param bool $value
  13. * @return $this
  14. */
  15. public function sortable(bool $value = true)
  16. {
  17. $this->options['sortable'] = $value;
  18. return $this;
  19. }
  20. /*
  21. * 裁剪比例 格式:1/1
  22. */
  23. public function aspectRatio(float $value = 1)
  24. {
  25. $this->options['aspectRatio'] = $value;
  26. return $this;
  27. }
  28. /**
  29. * Set a limit of files.
  30. *
  31. * @param int $limit
  32. * @return $this
  33. */
  34. public function limit(int $limit)
  35. {
  36. if ($limit < 2) {
  37. return $this;
  38. }
  39. $this->options['fileNumLimit'] = $limit;
  40. return $this;
  41. }
  42. /**
  43. * Prepare for saving.
  44. *
  45. * @param string|array $file
  46. * @return array
  47. */
  48. protected function prepareInputValue($file)
  49. {
  50. if ($path = request(static::FILE_DELETE_FLAG)) {
  51. $this->deleteFile($path);
  52. return array_values(array_diff($this->original, [$path]));
  53. }
  54. $file = Helper::array($file, true);
  55. $this->destroyIfChanged($file);
  56. return $file;
  57. }
  58. protected function forceOptions()
  59. {
  60. }
  61. }