mirror of
https://github.com/LinoSchmidt/StickExporterTX.git
synced 2026-03-21 10:00:47 +01:00
Renamed every side to page
This commit is contained in:
146
src/components/ui/mainPage.tsx
Normal file
146
src/components/ui/mainPage.tsx
Normal file
@@ -0,0 +1,146 @@
|
||||
import React, {useState, useEffect} from "react";
|
||||
import { dialog } from "@electron/remote";
|
||||
import { settingList, updateSettings } from "../settings";
|
||||
import logger from "../logger";
|
||||
import {blender, blenderCmd} from "../blenderController";
|
||||
import openFolder from "../openFolder";
|
||||
import {platformCharacter} from "../paths";
|
||||
import {getLogTime} from "../logReader";
|
||||
import {formatDate} from "../dateFormat";
|
||||
|
||||
function MainPage() {
|
||||
const [logs, setLogs] = useState(settingList.log);
|
||||
const [output, setOutput] = useState(settingList.output);
|
||||
const [logTable, setLogTable] = useState([<tr key={0}></tr>]);
|
||||
|
||||
useEffect(() => {
|
||||
|
||||
async function getData() {
|
||||
const logList = settingList.log.substring(1).slice(0, -1).split('""');
|
||||
|
||||
const logListName:string[] = [];
|
||||
const logListTime:string[] = [];
|
||||
const logListLength:string[] = [];
|
||||
for(const log of logList) {
|
||||
logListName.push(log.split(platformCharacter())[log.split(platformCharacter()).length - 1].replace(".csv", ""));
|
||||
const logTime = await getLogTime(log);
|
||||
const logTimeDisplay = formatDate(logTime.start.year, logTime.start.month, logTime.start.day) + " " + logTime.start.hour + ":" + logTime.start.minute + ":" + logTime.start.second;
|
||||
logListTime.push(logTimeDisplay);
|
||||
|
||||
let logLengthDisplay = "00:00:00";
|
||||
if(logTime.length.years > 0) {
|
||||
logLengthDisplay = logTime.length.years + "y " + logTime.length.months + "m " + logTime.length.days + "d " + logTime.length.hours + "h " + logTime.length.minutes + "m " + logTime.length.seconds + "s";
|
||||
} else if(logTime.length.months > 0) {
|
||||
logLengthDisplay = logTime.length.months + "m " + logTime.length.days + "d " + logTime.length.hours + "h " + logTime.length.minutes + "m " + logTime.length.seconds + "s";
|
||||
} else if(logTime.length.days > 0) {
|
||||
logLengthDisplay = logTime.length.days + "d " + logTime.length.hours + "h " + logTime.length.minutes + "m " + logTime.length.seconds + "s";
|
||||
} else {
|
||||
logLengthDisplay = logTime.length.hours + "h " + logTime.length.minutes + "m " + logTime.length.seconds + "s";
|
||||
}
|
||||
logListLength.push(logLengthDisplay);
|
||||
}
|
||||
|
||||
setLogTable(logListName.map((log, index) => {
|
||||
return <tr key={index}>
|
||||
<td style={{
|
||||
fontWeight: "bold",
|
||||
fontStyle: "italic"
|
||||
}}>{index+1}.</td>
|
||||
<td id="logList-Name" title={logList[index]+"\n"+logListTime[index]+"\n"+logListLength[index]} onClick={() => openFolder(logList[index].substring(0, logList[index].lastIndexOf(platformCharacter())))}>{log}</td>
|
||||
<td style={{
|
||||
fontStyle: "italic",
|
||||
fontWeight: "lighter"
|
||||
}}>({logListLength[index]})</td>
|
||||
<td><button className="listButton" onClick={() => {
|
||||
const newLogs = settingList.log.replace('"'+logList[index]+'"', "");
|
||||
updateSettings({log:newLogs});
|
||||
setLogs(newLogs);
|
||||
}}>Delete</button></td>
|
||||
</tr>
|
||||
}));
|
||||
}
|
||||
|
||||
if(settingList.log == "") {
|
||||
setLogTable([]);
|
||||
} else {
|
||||
getData();
|
||||
}
|
||||
}, [logs]);
|
||||
|
||||
return (
|
||||
<div id="content">
|
||||
<button id="start-render" onClick={() => blender(blenderCmd.startRendering)}>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
|
||||
{/* <!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --> */}
|
||||
<path d="M361 215C375.3 223.8 384 239.3 384 256C384 272.7 375.3 288.2 361 296.1L73.03 472.1C58.21 482 39.66 482.4 24.52 473.9C9.377 465.4 0 449.4 0 432V80C0 62.64 9.377 46.63 24.52 38.13C39.66 29.64 58.21 29.99 73.03 39.04L361 215z"/>
|
||||
</svg>
|
||||
</button>
|
||||
<h4 className="noMarginBottom">Logs:</h4>
|
||||
<table>
|
||||
<tbody>
|
||||
{logTable}
|
||||
</tbody>
|
||||
</table>
|
||||
<div className="dataDiv">
|
||||
<button id="openLogButton" onClick={() => addLog(setLogs)}>Add Log(s)</button>
|
||||
<button id="deleteLogsButton" onClick={() => {
|
||||
updateSettings({log:""});
|
||||
setLogs("");
|
||||
}}>Delete All</button>
|
||||
</div>
|
||||
<div className="dataDiv" id="outputDiv">
|
||||
<h4>Output Folder:</h4>
|
||||
<p id="output" onClick={() => openFolder(settingList.output)}>{output}</p>
|
||||
<button onClick={() => openVid(setOutput)}>Select Folder</button>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
function addLog(updateHook:React.Dispatch<React.SetStateAction<string>>) {
|
||||
dialog.showOpenDialog({
|
||||
properties: [
|
||||
"multiSelections"
|
||||
],
|
||||
filters: [
|
||||
{
|
||||
name: "TX-Logs",
|
||||
extensions: [
|
||||
"csv"
|
||||
]
|
||||
}
|
||||
]
|
||||
}).then(result => {
|
||||
let logStr = "";
|
||||
result.filePaths.forEach(value => {
|
||||
const logToAdd = "\"" + value + "\"";
|
||||
if(settingList.log.includes(logToAdd)) {
|
||||
logger.warningMSG("Log " + logToAdd + " already added.");
|
||||
} else {
|
||||
logStr += "\"" + String(value) + "\"";
|
||||
}
|
||||
});
|
||||
const newLogs = settingList.log + logStr;
|
||||
updateSettings({log:newLogs});
|
||||
updateHook(newLogs);
|
||||
}).catch(err => {
|
||||
logger.errorMSG(err);
|
||||
});
|
||||
}
|
||||
|
||||
function openVid(updateHook:React.Dispatch<React.SetStateAction<string>>) {
|
||||
dialog.showOpenDialog({
|
||||
properties: [
|
||||
"openDirectory"
|
||||
]
|
||||
}).then(result => {
|
||||
if(result.filePaths.length > 0) {
|
||||
updateSettings({output:String(result.filePaths)});
|
||||
updateHook(String(result.filePaths));
|
||||
}
|
||||
}).catch(err => {
|
||||
logger.errorMSG(err);
|
||||
});
|
||||
}
|
||||
|
||||
export default MainPage;
|
||||
Reference in New Issue
Block a user