2 Star 5 Fork 1

李诗涛/全网搜音乐盒--极简音乐

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 2.11 KB
一键复制 编辑 原始数据 按行查看 历史
李诗涛 提交于 2021-12-15 21:25 . 文件内容调整
// Modules to control application life and create native browser window
const { app, BrowserWindow, Menu, ipcMain } = require('electron')
const path = require('path')
const fs = require('fs');
const { decode } = require('querystring');
const csv = require('csvtojson')
var isMax = false
var originData
var flag = false
function createWindow () {
Menu.setApplicationMenu(null)
var mainWindow = new BrowserWindow({
width: 1100,
height: 800,
frame: false,
transparent: true,
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true
}
})
// 开启调试窗口
// mainWindow.webContents.openDevTools()
ipcMain.on('smaller', () => {
mainWindow.minimize()
})
ipcMain.on('bigger', () => {
if (isMax) {
mainWindow.setSize(1100, 800)
mainWindow.center()
isMax = !isMax
}
else {
mainWindow.maximize()
isMax = !isMax
}
})
ipcMain.on('close', () => {
mainWindow.close()
})
ipcMain.on('again', () => {
mainWindow.webContents.send('originData', originData)
})
ipcMain.on('loves', (event, e) => {
var contentLoves = "name,author,url,flag\n"
e.forEach((arg) => {
contentLoves += arg.name + ',' + arg.author + ',' + arg.url + ',' + arg.flag + '\n'
})
fs.writeFileSync("./static/csv/loveSongs.csv", contentLoves, () => { })
mainWindow.close()
})
mainWindow.loadFile('index.html')
// 加载初始数据
ipcMain.on('start', (event) => {
csv().fromFile('./static/csv/loveSongs.csv').then((data) => {
originData = data
mainWindow.webContents.send('originData', data)
})
})
mainWindow.on('close', (e) => {
if (!flag) {
// 阻止默认关闭事件,等喜欢歌曲全部写入后再关闭
e.preventDefault()
mainWindow.webContents.send('willingClose')
flag = true
}
else {
mainWindow = null
}
})
}
app.whenReady().then(() => {
createWindow()
app.on('activate', function () {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') app.quit()
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/kiven-lst/music.git
git@gitee.com:kiven-lst/music.git
kiven-lst
music
全网搜音乐盒--极简音乐
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385