Jump to content

General question with drag-upload images vs Matrix, dreaming of extension-based repeater matrix creation


joe_g
 Share

Recommended Posts

Hi there,

In almost every project I find myself wanting to use the images field for being able to drag many images at once to one field. It's super convenient. However then I loose the ability to be able to mix other filetypes in the same collection. Usually, after a while clients come back and want to have a video in there somewhere or perhaps even an embed. Then I have to rethink how that works and by using repeater matrix the interface becomes clunkier (new 'image' -> upload -> new 'video' -> upload, etc).

I'm dreaming now but it would be amazing with drag and drop support for repeater matrix, repeater items are automatically created from the file-type (jpg and mp4 mostly). Not sure where I'm going with this, mostly I wanted if I missed something or if this idea could work. I know there are some media library extensions around but I could never befriend them 100%. 

best J

Link to comment
Share on other sites

Pagegrid looks like a great visual page builder, that's not what I'm after.

I'm after dragging multiple files and have them organize themselves after filetype, so I can have the simplicity of the images field but with the flexibility of the repeater matrix

Link to comment
Share on other sites

@joe_g PAGEGRID would still work for this usecase check this post. You can setup the field, so the client can only sort the items and add new ones. I am happy to provide examples here if you want to try it.

An alternative to PAGEGRID is adding custom fields to your images/files field. This is a core feature, so no need for additional modules. This way you can let the client select a video/embed as an alternative for the image.

  • Like 2
Link to comment
Share on other sites

Thank you both

@jploch using the custom field is clever. Then the mp4 automatically have an image to be used as poster. If it's only a series of mp4's and images this could work really well!

@gmclelland I didn't know about this one! Could potentially be interesting if there is a lot of extra fields per image. If I understand correctly it create a repeater item for each image, but since it's a regular repeater it's not possible to insert a non-image in betwee, or similar. Still interesting within it's use-case.

 

  • Like 1
Link to comment
Share on other sites

@joe_g, you could use a similar approach to that used by the Repeater Images module. Demo...

Repeater Matrix field config:

image.thumb.png.8aa0799a7b6ba191a41747ab66a98474.png

Hook in /site/ready.php:

$wire->addHookBefore('Pages::saveReady', function(HookEvent $event) {
	/** @var Page $page */
	$page = $event->arguments(0);
	if($page->template == 'demo_matrix_upload') {
		// File extension to Repeater Matrix type and subfield mapping
		$matrix_types = [
			'jpg' => [
				'type' => 'jpg',
				'subfield' => 'image',
			],
			'mp4' => [
				'type' => 'mp4',
				'subfield' => 'file',
			],
		];
		// For each file in the "Upload files to Matrix" field
		foreach($page->upload_files_to_matrix as $pagefile) {
			// Skip file if it does not have an allowed file extension
			// It also makes sense to configure the upload field to only allow
			// the extensions you have matrix types for
			if(!isset($matrix_types[$pagefile->ext])) continue;
			// Add a Repeater Matrix item of the matching type for the file
			$item = $page->matrix_files->getNewItem();
			$item->setMatrixType($matrix_types[$pagefile->ext]['type']);
			// Save the item so it is ready to accept files
			$item->save();
			// Add the file
			$item->{$matrix_types[$pagefile->ext]['subfield']}->add($pagefile->filename);
			// Save the item again
			$item->save();
		}
		// Remove all the uploaded files from the upload field
		$page->upload_files_to_matrix->removeAll();
	}
});

Result:

image.gif.c1ba91ba330c36e53ef6d5db4ebab503.gif

  • Like 4
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...