Using the Electron framework to weed out images
There Is No Going Back
Listing 2 defines the currently displayed photo's image tag in line 11 with the id
attribute of image
. This makes it easy for the renderer process to find it later and replace it with a new photo, if the user commands this via keyboard input.
Figure 4 shows the finished application. In it, you can delete an image by pressing D, move to the next one with L, or go back to the previous one with H if you change your mind. However, there is no undelete – that would not make sense in Unix philosophy.
The application is shut down either by the user closing the window or – as usual under Gnome – by pressing Ctrl+W. These events are intercepted by the event handlers will-quit
or window-all-closed
. They release the key bindings and call the application's quit()
method, which releases all occupied resources.
The renderer process in Listing 3 uses the blueimp
image library. This presupposes that the user previously installs it using
npm install blueimp-load-image --save
from the npmjs.com
Node.js repository. The npm
package manager notices the new addition in the local package.json
file's dependency list, ensuring that curious adopters only have to clone the project and call npm install
to retrieve and install all the modules on which the project depends.
The photo files, which were read using readdir()
from the images
directory (line 40) when the program started, are stored by the program in the global images
array variable. The images_idx
variable (line 6) remembers the index of the currently displayed image within the array.
Fielding Signals
The scroll()
function from line 19 expects the direction (1
for forward, -1
for back) in which the user wants to shift through the collection as a parameter. It then sets the global variables to the new photo to be displayed and ensures that no one moves outside the boundaries of the array in the body of the function.
Lines 51 and 52 in the renderer process receive the signals triggered by the main process from Listing 1. The handlers trigger when the user presses the corresponding key. Line 53 reacts to the keypress D in the main process and jumps to the deleteImage()
function from line 29 when activated. The Node.js unlink()
method from the fs
class mercilessly removes the file from the disk and displays the next photo.
Loading Photos
Loading a photo from disk and displaying it in the browser window is the task of the displayImage()
function from line 8. It uses the loadImage()
function exported by the blueimp
library from the NpmJS repository to load the photo. The scale()
method then scales it to a maximum width of 600 pixels. The renderer then searches the browser's HTML for an image tag with the id
attribute image
and replaces the image found there with the new image (line 15). Before this, Listing 3 also sets the new image's id
attribute to image
so that the refresh process will find the tag next time.
« Previous 1 2 3 4 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
Fedora 39 Beta is Now Available for Testing
For fans and users of Fedora Linux, the first beta of release 39 is now available, which is a minor upgrade but does include GNOME 45.
-
Fedora Linux 40 to Drop X11 for KDE Plasma
When Fedora 40 arrives in 2024, there will be a few big changes coming, especially for the KDE Plasma option.
-
Real-Time Ubuntu Available in AWS Marketplace
Anyone looking for a Linux distribution for real-time processing could do a whole lot worse than Real-Time Ubuntu.
-
KSMBD Finally Reaches a Stable State
For those who've been looking forward to the first release of KSMBD, after two years it's no longer considered experimental.
-
Nitrux 3.0.0 Has Been Released
The latest version of Nitrux brings plenty of innovation and fresh apps to the table.
-
Linux From Scratch 12.0 Now Available
If you're looking to roll your own Linux distribution, the latest version of Linux From Scratch is now available with plenty of updates.
-
Linux Kernel 6.5 Has Been Released
The newest Linux kernel, version 6.5, now includes initial support for two very exciting features.
-
UbuntuDDE 23.04 Now Available
A new version of the UbuntuDDE remix has finally arrived with all the updates from the Deepin desktop and everything that comes with the Ubuntu 23.04 base.
-
Star Labs Reveals a New Surface-Like Linux Tablet
If you've ever wanted a tablet that rivals the MS Surface, you're in luck as Star Labs has created such a device.
-
SUSE Going Private (Again)
The company behind SUSE Linux Enterprise, Rancher, and NeuVector recently announced that Marcel LUX III SARL (Marcel), its majority shareholder, intends to delist it from the Frankfurt Stock Exchange by way of a merger.