[JAVA] Image preview function

Introduction

When posting an image, I felt that it was difficult to understand because only the name of the image file was displayed, so I implemented a preview function.

** Before implementing preview function **

1. Preparation

** 1. Create a js file to implement the preview function. Create preview.js in app/javascript/packs ** → app / javascript / packs / preview.js

** 2. Edit application.js so that preview.js can be loaded. ** **

app/javascript/packs/application.js


require("@rails/ujs").start()
require("@rails/activestorage").start()
require("channels")
require('./preview') #Append

** 3. Specify where the image will be displayed in the view file. ** **

html:views/ideas/new.html.erb


<div class="img-upload">
  <div class="left-img-upload">
    <div class="weight-bold-text">
Related images(Please attach any related images)
    </div>
    <div class="click-upload">
      <p>Click to upload file</p>
      <%= f.file_field :image, id:"idea-image" %>
    </div>
  </div>
  <div class="right-img-upload">
    <div id="image"></div>  <!--Append-->
  </div>
</div>

2. Implementation of preview function

** Write the preview function code in preview.js created in 1. ** **

app/javascript/packs/preview.js


if (document.URL.match( /new/ ) || document.URL.match( /edit/ )) {
  document.addEventListener('DOMContentLoaded', function(){
    const ImageList = document.getElementById('image');

    const createImageHTML = (blob) => {
       //Generate a div element to display an image
      const imageElement = document.createElement('div');
      //Generate an image to display
      const blobImage = document.createElement('img');
        blobImage.className="preview"; //← Class name is given to img generated by createElement
      blobImage.setAttribute('src', blob);
      //Display the generated HTML element in the browser
      imageElement.appendChild(blobImage);
      ImageList.appendChild(imageElement);
    };
    document.getElementById('idea-image').addEventListener('change', function(e){
      //Delete an existing image only if the image is displayed
      const imageContent = document.querySelector('img');
      if (imageContent){
        imageContent.remove();
      }
      const file = e.target.files[0];
      const blob = window.URL.createObjectURL(file);
      createImageHTML(blob);
    });
  });
}

** Finally, specify the size of the image with CSS. ** **

python


.preview {
  height: 250px;
  width: 250px;
  object-fit: contain;
}

Implementation completed

Thanks to the images being displayed, it is easier to understand the image you have selected.

Finally

It was a good review because I didn't implement it using javascript very much. Also, I learned how to give a class name to the element created by createElement, which was a great learning experience.

Recommended Posts

Image preview function
Image preview function implementation
Implementation of image preview function
[Rails] Implementation of image preview function
Image posting function
[Ruby on Rails] Post image preview function in refile
[Rails] Implement image posting function
Yes, let's preview the image. ~ part5 ~
Show preview when editing user image
Let's roughly implement the image preview function with Rails + refile + jQuery.
I tried to implement the image preview function with Rails / jQuery
Login function
Image upload
JavaScript function
SpringMVC-Interceptor function
Multiple image upload function using Rails Carrierwave
[Rails] Implementation of image enlargement function using lightbox2
Flow to implement image posting function using ActiveStorage