Electron でボタンに機能をつける方法を説明しています。
Linux については、Ubuntu、Fedora、CentOS、Mint で正常動作しますが、 Debian では動作しません。
Electronは、一つのアプリケーションを、一つのディレクトリにまとめて管理していきます。 コマンドプロンプトかターミナルを起動して次のようにコマンドします。
// Documents ディレクトリなどに Electron 用のディレクトリなどを作り
// その中に Button アプリケーション用のディレクトリを作ります。
cd Documents
mkdir Electron
cd Electron
mkdir Button
cd Button
// Button ディレクトリに設定ファイルを作り、Electron と Electron-Builder をインストールします。
npm init -y
npm i -D electron
npm i -D electron-builder
// i は install の略記、-Dは --save-dev の略記です。-D もしくは --save-dev は、パッケージをそのディレクトリだけにインストールします。
// なお electron-builder は、アプリケーションをビルドするときに必要になります。
PNG形式のアイコンを自作するか、 次のサイトなどから PNG 形式のアイコンをダウンロードします。 大きさは 512px などの一番大きなものが良いでしょう。
自作した、もしくはダウンロードした PNG ファイルを Button ディレクトリに入れます。
Electron は、PNG 形式のアイコンを、そ れぞれの OS に適した形式に自動的に変換してくれます。
package.json を次のように編集します。
{
"name": "Button",
"version": "1.0.0",
"description": "I am Button",
"main": "index.js",
"scripts": {
"start": "electron ."
},
"keywords": [],
"author": "viva Cocoa",
"build": {
"win": {
"target": "nsis",
"icon": "clover.png"
},
"mac": {
"target": "dmg",
"icon": "clover.png"
},
"linux": {
"target": "AppImage",
"icon": "clover.png"
}
},
"license": "ISC",
"devDependencies": {
"electron": "^13.1.4",
"electron-builder": "^22.11.7"
}
}
・・・
"author": "viva Cocoa",
"build": {
"win": {
"target": "nsis",
"icon": "clover.png"
}
},
"license": "ISC",
・・・
Button ディレクトリに次の index.js を追加します。
const { app, BrowserWindow } = require('electron');
let window;
app.on('ready', () => {
window = new BrowserWindow({
width: 400,
height: 200,
webPreferences: {
nodeIntegration: true,
contextIsolation: false
}
});
window.loadFile('index.html');
//window.webContents.openDevTools();
});
window.webContents.openDevTools(); をコメントアウトしていますが、 開発時にはこれを機能させておくと、Chrome のデベロッパツールと同じものがウィンドウに 表示されて、エラー箇所を指摘してくれるので大変便利です。
Button ディレクトリに次の index.html を追加します。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Button</title>
<style type="text/css">
.middle {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
height: 3.2rem;
}
</style>
</head>
<body>
<div class="middle" align="center">
<button type="button" id="button">Hello</button>
</div>
<script type="text/javascript" src="lib.js"></script>
</body>
</html>
title タグのところがアプリケーションウィンドウのタイトルになります。
CSSでいろいろとやっているのは、ボタンを上下の中央にするための処理です。
Button ディレクトリに次の lib.js を追加してください。
let button = document.getElementById('button');
button.onclick = () => {
title = document.getElementsByTagName('title');
if (title[0].textContent == 'Goodbye') {
title[0].textContent = 'Hello';
} else {
title[0].textContent = 'Goodbye';
}
}
コマンドプロンプトもしくはターミナルに次のようにコマンドして簡易的に実行できます。
npm start
Hello ボタンをクリックするたびに、ウィンドウのタイトルが Boodbye と Hello に変わります。
ウィンドウの大きさを変更してもボタンは常に中央に表示されます。
コマンドプロンプトもしくはターミナルを起動して、 それぞれの OS 上で次のようにコマンドします。
// Windows 32bit の場合
npx electron-builder --win --ia32
// Windows 64bit の場合
npx electron-builder --win --x64
// macOS の場合
npx electron-builder --mac --x64
// Linux の場合
npx electron-builder --linux --x64
// はじめのコマンドは npm ではなく、npx です。注意してください。
// なお、macOS の場合、次のようにコマンドして、一度にすべてのプラットフォームのインストーラを作成することもできます。
npx electron-builder -wml
作成された dist ディレクトリの中の Button Setup 1.0.0.exe をダブルクリックすると インストーラが起動します。
このインストーラでインストールした Button アプリケーションは、 コントロールパネルのプログラムのアンインストールで、 安全にアンインストールすることもできます。
dist ディレクトの中の win-ia32-unpacked もしくは win-x64-unpacked の中の Button.exe をダブルクリックしても Button アプリケーションは起動しますが、 この実行ファイルを他の場所へ移動させた場合は、DLL エラーで起動できません。
作成された dist ディレクトリの Button-1.0.0.dmg をダブルクリックして、 インストーラを起動します。インストール方法は通常どおりです。
また、dist ディレクトリの中の mac ディレクトリの中に作成された実行ファイルをそのまま使うこともできます。
この実行ファイルは、Windows の場合と違って、どこへ移動させても正常に動作します。
Linux の場合は、ビルドし他だけではアプリケーションにアイコンは付きません。 アイコンを付けるには別の作業が必要になります。ただし、package.json にアイコンを指定しておかないとビルド時にエラーになります。
作成された dist ディレクトの Button-1.0.0.AppImage はどこへ移動させても起動できます。ただし名前を変更すると起動できなくなります。
dist ディレクトリの中の linux-unpacked の中の button 実行ファイルは ダブルクリックしても起動しません。ターミナルで ./button とコマンドすると起動できます。
次の場所にButton-1.0.0.AppImage とアイコンファイルを移動もしくはコピーします。
/home/ユーザー名/.local/share/applications
applications ディレクトリに次の button.desktop ファイルを作成します。
[Desktop Entry]
Type=Application
Version=1.0
Name=Button
Exec=/home/ユーザー名/.local/share/applications/Button-1.0.0.AppImage
Icon=/home/ユーザー名/.local/share/applications/clover.png
Comment=I am Button
Categories=
desktop-file-validate button.desktop
上記の方法は、ユーザ専用に Button アプリケーションを登録する方法です。 システム全体 (全ユーザが使えるよう) に登録する場合は次のようにします。 ユーザ専用とシステム全体の両方がある場合は、ユーザ専用が優先されます。
/usr/bin
/usr/share/icons/hicolor/scalable/apps
/usr/share/applications
そして、button.desktop は、次のように記述します。
[Desktop Entry]
Type=Application
Version=1.0
Name=Button
Exec=Button-1.0.0.AppImage
Icon=clover.png
Comment=I am Button
Categories=
/usr/bin
と
/usr/share/icons/hicolor/scalable/apps
には、システムによってパスが通っていますので、ファイル名だけで OK です。