2024-07-11 10:10:29 -04:00
|
|
|
# https://webui.me
|
2023-09-11 16:56:55 -04:00
|
|
|
# https://github.com/webui-dev/webui
|
2025-01-30 15:52:24 -05:00
|
|
|
# Copyright (c) 2020-2025 Hassan Draga.
|
2023-09-11 16:56:55 -04:00
|
|
|
# Licensed under MIT License.
|
|
|
|
# All rights reserved.
|
2024-07-11 10:10:29 -04:00
|
|
|
# Canada.
|
2023-09-11 16:56:55 -04:00
|
|
|
#
|
|
|
|
# Special Thanks to Turiiya (https://github.com/ttytm)
|
|
|
|
|
2024-03-20 16:02:41 -07:00
|
|
|
Set-StrictMode -version latest
|
|
|
|
$ErrorActionPreference="Stop"
|
|
|
|
|
2023-08-21 02:49:31 +02:00
|
|
|
$current_location = Get-Location
|
|
|
|
$project_root = git rev-parse --show-toplevel
|
|
|
|
Set-Location $project_root/bridge
|
2024-03-20 16:02:41 -07:00
|
|
|
$silent=$false
|
|
|
|
$log_level=$null
|
2023-08-21 02:49:31 +02:00
|
|
|
|
2023-08-20 21:52:12 -04:00
|
|
|
# Arguments
|
2023-08-21 02:49:31 +02:00
|
|
|
foreach ($opt in $args) {
|
|
|
|
switch ($opt) {
|
|
|
|
"--silent" { $silent = $true }
|
|
|
|
default {
|
|
|
|
Write-Host "Invalid option: $opt"
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($silent) { $log_level = "--log-level=warning" }
|
|
|
|
|
2024-03-20 16:02:41 -07:00
|
|
|
$ErrorActionPreference="SilentlyContinue"
|
2023-08-20 21:52:12 -04:00
|
|
|
# Check which python command is available
|
|
|
|
$commandResult = python3 --version 2>&1 > $null
|
|
|
|
if (!$?) {
|
|
|
|
$commandResult = python --version 2>&1 > $null
|
|
|
|
if (!$?) {
|
|
|
|
Write-Host "Error: Please install Python."
|
|
|
|
Set-Location $current_location
|
2023-10-08 03:01:02 +02:00
|
|
|
exit
|
2023-08-20 21:52:12 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$python_cmd = "python"
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$python_cmd = "python3"
|
|
|
|
}
|
2024-03-20 16:02:41 -07:00
|
|
|
$ErrorActionPreference="Stop"
|
2023-08-20 21:52:12 -04:00
|
|
|
|
|
|
|
# Check if node_modules\esbuild exists, if not, install using npm
|
|
|
|
if (-not (Test-Path "$project_root\bridge\node_modules\esbuild")) {
|
|
|
|
if (Get-Command npm -ErrorAction SilentlyContinue) {
|
|
|
|
if (!$silent) { Write-Host "Installing esbuild..." }
|
2024-11-11 15:13:47 -05:00
|
|
|
npm install --prefix ./ esbuild
|
2023-08-20 21:52:12 -04:00
|
|
|
} else {
|
|
|
|
Write-Host "Error: Please install NPM."
|
|
|
|
Set-Location $current_location
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Transpile WebUI-Bridge (TS to JS)
|
|
|
|
if (!$silent) { Write-Host "Transpile and bundle WebUI-Bridge from TypeScript to JavaScript..." }
|
2024-07-10 23:59:08 -04:00
|
|
|
.\node_modules\.bin\esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --minify-syntax --minify-whitespace --outdir=. ./webui.ts $log_level
|
2023-08-21 02:49:31 +02:00
|
|
|
|
2023-08-20 21:52:12 -04:00
|
|
|
# Convert WebUI-Bridge (JS to C)
|
2023-10-28 19:51:02 -04:00
|
|
|
if (!$silent) { Write-Host "Convert WebUI-Bridge JavaScript to C Header..." }
|
2023-08-20 21:52:12 -04:00
|
|
|
& $python_cmd js2c.py
|
2023-08-21 02:49:31 +02:00
|
|
|
|
2023-08-20 21:52:12 -04:00
|
|
|
# Done
|
2023-08-21 02:49:31 +02:00
|
|
|
if (!$silent) { Write-Host "Done." }
|
|
|
|
Set-Location $current_location
|