This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
appcat
/
sonist
Archived
1
0
Fork 0
sonist/src/tools/windows.js

118 lines
2.1 KiB
JavaScript

/**
* 各种窗口创建
* @author yutent<yutent@doui.cc>
* @date 2019/01/26 18:28:22
*/
'use strict'
const { BrowserWindow } = require('electron')
/**
* 应用主窗口
*/
exports.createMainWindow = function(icon) {
// 创建浏览器窗口
let win = new BrowserWindow({
title: 'sonist',
width: 1024,
height: 640,
frame: false,
resizable: false,
transparent: true,
icon,
webPreferences: {
webSecurity: false,
experimentalFeatures: true,
nodeIntegration: true
},
show: false
})
// 然后加载应用的 index.html。
win.loadURL('app://local/index.html')
win.on('ready-to-show', _ => {
win.show()
win.openDevTools()
})
return win
}
/**
* 依赖异常显示窗口
*/
exports.createErrorWindow = function() {
let win = new BrowserWindow({
width: 600,
height: 360,
skipTaskbar: true,
maximizable: false,
minimizable: false,
resizable: false,
titleBarStyle: 'hiddenInset',
webPreferences: {
devTools: false
}
})
win.setMenuBarVisibility(false)
win.loadURL('app://local/depends.html')
win.on('closed', _ => {
app.exit()
})
}
/**
* 桌面歌词窗口
*/
exports.createDesktopLrcWindow = function(screen) {
let win = new BrowserWindow({
title: '',
width: 1024,
height: 100,
frame: false,
resizable: false,
alwaysOnTop: true,
skipTaskbar: true,
x: (screen.width - 1024) / 2,
y: screen.height - 100,
transparent: true,
hasShadow: false,
thickFrame: false,
show: false,
webPreferences: {
nodeIntegration: true
}
})
win.loadURL('app://local/desktop-lrc.html')
return win
}
/**
* 应用迷你窗口
*/
exports.createMiniWindow = function(screen) {
let win = new BrowserWindow({
title: '',
width: 320,
height: 60,
frame: false,
resizable: false,
alwaysOnTop: true,
skipTaskbar: true,
x: screen.width - 320,
y: 0,
thickFrame: false,
show: false,
webPreferences: {
nodeIntegration: true
}
})
win.loadURL('app://local/mini-win.html')
return win
}
一个音乐播放器, 主打本地音乐播放。支持 自动歌词/自动封面/均衡器等常见功能。
JavaScript 60.1%
SCSS 19.2%
HTML 16.9%
CSS 3.8%