123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- <?php
- namespace Dcat\Admin\Form\Field;
- use Dcat\Admin\Contracts\UploadField as UploadFieldInterface;
- use Dcat\Admin\Form\Field;
- use Dcat\Admin\Form\NestedForm;
- use Dcat\Admin\Support\Helper;
- use Dcat\Admin\Support\JavaScript;
- use Illuminate\Support\Arr;
- use Illuminate\Support\Facades\Validator;
- use Illuminate\Support\Str;
- class File extends Field implements UploadFieldInterface
- {
- use WebUploader, UploadField;
- protected static $css = [
- '@webuploader',
- ];
- protected static $js = [
- '@webuploader',
- ];
- protected $containerId;
- /**
- * @param string $column
- * @param array $arguments
- */
- public function __construct($column, $arguments = [])
- {
- parent::__construct($column, $arguments);
- $this->setupDefaultOptions();
- $this->containerId = $this->generateId();
- }
- public function setElementName($name)
- {
- $this->mergeOptions(['elementName' => $name]);
- return parent::setElementName($name);
- }
- /**
- * @return mixed
- */
- public function defaultDirectory()
- {
- return config('admin.upload.directory.file');
- }
- /**
- * {@inheritdoc}
- */
- public function getValidator(array $input)
- {
- if (request()->has(static::FILE_DELETE_FLAG)) {
- return false;
- }
- if ($this->validator) {
- return $this->validator->call($this, $input);
- }
- if (! Arr::has($input, $this->column)) {
- return false;
- }
- $value = Arr::get($input, $this->column);
- $value = array_filter(is_array($value) ? $value : explode(',', $value));
- $fileLimit = $this->options['fileNumLimit'] ?? 1;
- if ($fileLimit < count($value)) {
- $this->form->responseValidationMessages(
- $this->column,
- trans('admin.uploader.max_file_limit', ['attribute' => $this->label, 'max' => $fileLimit])
- );
- return false;
- }
- $rules = $attributes = [];
- $requiredIf = null;
- if (! $this->hasRule('required') && ! $requiredIf = $this->getRule('required_if*')) {
- return false;
- }
- $rules[$this->column] = $requiredIf ?: 'required';
- $attributes[$this->column] = $this->label;
- return Validator::make($input, $rules, $this->getValidationMessages(), $attributes);
- }
- /**
- * @param string $file
- *
- * @return mixed|string
- */
- protected function prepareInputValue($file)
- {
- if (request()->has(static::FILE_DELETE_FLAG)) {
- return $this->destroy();
- }
- $this->destroyIfChanged($file);
- return $file;
- }
- /**
- * @param string|null $relationName
- * @param string $relationPrimaryKey
- *
- * @return $this
- */
- public function setNestedFormRelation(?string $relationName, $relationPrimaryKey)
- {
- $this->options['formData']['_relation'] = [$relationName, $relationPrimaryKey];
- $this->containerId .= NestedForm::DEFAULT_KEY_NAME;
- $this->id .= NestedForm::DEFAULT_KEY_NAME;
- return $this;
- }
- /**
- * Set field as disabled.
- *
- * @return $this
- */
- public function disable()
- {
- $this->options['disabled'] = true;
- return $this;
- }
- protected function formatFieldData($data)
- {
- return Helper::array(Arr::get($data, $this->normalizeColumn()));
- }
- /**
- * @return array
- */
- protected function initialPreviewConfig()
- {
- $previews = [];
- foreach (Helper::array($this->value()) as $value) {
- $previews[] = [
- 'id' => $value,
- 'path' => basename($value),
- 'url' => $this->objectUrl($value),
- ];
- }
- return $previews;
- }
- protected function forceOptions()
- {
- $this->options['fileNumLimit'] = 1;
- }
- /**
- * @return string
- */
- public function render()
- {
- $this->setDefaultServer();
- if (! empty($this->value())) {
- $this->setupPreviewOptions();
- }
- $this->forceOptions();
- $this->formatValue();
- $this->addScript();
- $this->addVariables([
- 'fileType' => $this->options['isImage'] ? '' : 'file',
- 'containerId' => $this->containerId,
- 'showUploadBtn' => ($this->options['autoUpload'] ?? false) ? false : true,
- ]);
- return parent::render();
- }
- protected function addScript()
- {
- $newButton = trans('admin.uploader.add_new_media');
- $options = JavaScript::format($this->options);
- $this->script = <<<JS
- (function () {
- var uploader,
- newPage,
- cID = replaceNestedFormIndex('#{$this->containerId}'),
- ID = replaceNestedFormIndex('#{$this->id}'),
- options = {$options};
- init();
- function init() {
- var opts = $.extend({
- selector: cID,
- addFileButton: cID+' .add-file-button',
- inputSelector: ID,
- }, options);
- opts.upload = $.extend({
- pick: {
- id: cID+' .file-picker',
- name: '_file_',
- label: '<i class="feather icon-folder"></i> {$newButton}'
- },
- dnd: cID+' .dnd-area',
- paste: cID+' .web-uploader'
- }, opts);
- uploader = Dcat.Uploader(opts);
- uploader.build();
- uploader.preview();
- function resize() {
- setTimeout(function () {
- if (! uploader) return;
- uploader.refreshButton();
- resize();
- if (! newPage) {
- newPage = 1;
- $(document).one('pjax:complete', function () {
- uploader = null;
- });
- }
- }, 250);
- }
- resize();
- }
- })();
- JS;
- }
- /**
- * @return void
- */
- protected function formatValue()
- {
- if ($this->value !== null) {
- $this->value = implode(',', $this->value);
- } elseif (is_array($this->default)) {
- $this->default = implode(',', $this->default);
- }
- }
- /**
- * @return string
- */
- protected function generateId()
- {
- return 'file-'.Str::random(8);
- }
- }
|