Build planner for PSO2: New Genesis.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngsplanner/src/App.js

622 lines
20 KiB

4 years ago
import './App.css';
import React, {useState,useEffect,useRef} from 'react';
import ReactWindow from 'reactjs-windows'
import 'reactjs-windows/dist/index.css'
import {
BrowserRouter as Router,
Switch,
Route
} from "react-router-dom";
import { HashLink as Link } from 'react-router-hash-link';
import TestPanel from './TestPanel'; // Dudley's Test Panel
const axios = require('axios');
4 years ago
const BACKEND_URL = 'https://projectdivar.com:4504';
4 years ago
function Col(p) {
return <div className="con">
{p.children}
</div>
}
function Box(p) {
return <>
<div className="box">
<h1>&#9830;&ensp;{p.title}</h1>
{p.children}
</div>
</>
}
function EditBox(p) {
useEffect(()=>{
var timer1 = setTimeout(()=>{document.getElementById("editBox").focus()},100)
return () => {
clearTimeout(timer1);
};
4 years ago
})
return <input id="editBox" onKeyDown={(e)=>{
if (e.key==="Enter") {p.setEdit(false)}
else if (e.key==="Escape") {p.setEdit(false)}
}} maxLength={p.maxlength?p.maxlength:20} onBlur={()=>{p.setEdit(false)}} value={p.value} onChange={(f)=>{f.currentTarget.value.length>0?p.setName(f.currentTarget.value):p.setName(p.originalName)}}>
4 years ago
</input>
}
function EditableBox(p) {
const [edit,setEdit] = useState(false)
useEffect(()=>{
if (p.callback) {
p.callback()
}
},[edit])
4 years ago
return <>
<div className="hover" onClick={(f)=>{setEdit(true)}}>
{edit?
<EditBox maxlength={p.maxlength} setEdit={setEdit} originalName={p.data} setName={p.setData} value={p.data}/>
:<>{p.data}</>}
</div>
</>
}
const CLASSES = {
HUNTER:{
name:"Hunter",
icon:process.env.PUBLIC_URL+"/icons/UINGSClassHu.png"
4 years ago
},
FIGHTER:{
name:"Fighter",
icon:process.env.PUBLIC_URL+"/icons/UINGSClassFi.png"
4 years ago
},
RANGER:{
name:"Ranger",
icon:process.env.PUBLIC_URL+"/icons/UINGSClassRa.png"
4 years ago
},
GUNNER:{
name:"Gunner",
icon:process.env.PUBLIC_URL+"/icons/UINGSClassGu.png"
4 years ago
},
FORCE:{
name:"Force",
icon:process.env.PUBLIC_URL+"/icons/UINGSClassFo.png"
4 years ago
},
TECHTER:{
name:"Techter",
icon:process.env.PUBLIC_URL+"/icons/UINGSClassTe.png"
4 years ago
}
}
const EFFECTS = {
"Food Boost Effect":{
perks:[
"[Meat] Potency +10.0%",
"[Crisp] Potency to Weak Point +5.0%"
],
icon:process.env.PUBLIC_URL+"/icons/TQ8EBW2.png"
4 years ago
},
"Shifta / Deband":{
perks:[
"Potency +5.0%",
"Damage Resistance +10.0%"
],
icon:process.env.PUBLIC_URL+"/icons/VIYYNIm.png"
4 years ago
},
"Region Mag Boost":{
perks:[
"Potency +5.0%",
],
icon:process.env.PUBLIC_URL+"/icons/N6M74Qr.png"
4 years ago
},
}
const EQUIPMENT = {
"Ophistia Shooter":{
icon:process.env.PUBLIC_URL+"/icons/uc1iBck.png"
4 years ago
},
"Klauzdyne":{
icon:process.env.PUBLIC_URL+"/icons/uldt9lR.png"
4 years ago
},
"Klauznum":{
icon:process.env.PUBLIC_URL+"/icons/F0t58xP.png"
4 years ago
},
"Klauzment":{
icon:process.env.PUBLIC_URL+"/icons/20M6Z7t.png"
4 years ago
}
}
const ABILITIES = {
"Wellspring Unit Lv.3":{
icon:process.env.PUBLIC_URL+"/icons/NGSUIItemPotentialAbility.png"
4 years ago
},
"Fixa Fatale Lv.5":{
icon:process.env.PUBLIC_URL+"/icons/UINGSItemPresetAbility.png"
4 years ago
}
}
const ABILITY_DEFAULT_ICON = process.env.PUBLIC_URL+"/icons/UINGSItemSpecialAbility.png"
4 years ago
/**
* Hook that alerts clicks outside of the passed ref
*/
function useOutsideAlerter(ref,setEdit) {
useEffect(() => {
/**
* Alert if clicked on outside of element
*/
function handleClickOutside(event) {
if (ref.current && !ref.current.contains(event.target)) {
setEdit(false)
}
}
// Bind the event listener
document.addEventListener("mousedown", handleClickOutside);
return () => {
// Unbind the event listener on clean up
document.removeEventListener("mousedown", handleClickOutside);
};
}, [ref,setEdit]);
}
4 years ago
function Class(p) {
const class_obj = CLASSES[p.name]
return <><img alt="" src={class_obj.icon}/>{class_obj.name}</>
4 years ago
}
function ClassSelector(p){
const wrapperRef = useRef(null);
useOutsideAlerter(wrapperRef,p.setEdit);
return <div className="popup" ref={wrapperRef}>
4 years ago
Class Selector<br/>
{Object.keys(CLASSES).map((cl,i)=>{
return <button id={i} className="rounded" onClick={()=>{p.setClassName(cl);p.setEdit(false)}}><img alt="" src={CLASSES[cl].icon}/><br/>{CLASSES[cl].name}</button>
4 years ago
})}
</div>
/*return <ReactWindow title="Test Window">
This is a test window.
</ReactWindow>*/
4 years ago
}
function EditableClass(p){
const [edit,setEdit] = useState(false)
return <><span className="hover" onClick={()=>{setEdit(!edit)}}><Class name={p.class}/>
</span>
{edit&&<ClassSelector setClassName={p.setClassName} setEdit={setEdit}/>}
</>
}
function Table(p) {
return <table className={p.classes}>
<tbody>
{p.children}
</tbody>
</table>
}
4 years ago
function MainBox(p) {
return <Box title="NGS Planner">
<Table classes="ba">
4 years ago
<ListRow title="Author"><EditableBox setData={p.setAuthor} data={p.author}/></ListRow>
<ListRow title="Build Name"><EditableBox setData={p.setBuildName} data={p.buildName}/></ListRow>
<ListRow title="Class" content={<EditableClass setClassName={p.setClassName} class={p.className}></EditableClass>}><span className="ye">Lv.20</span></ListRow>
<ListRow content={<><EditableClass setClassName={p.setSecondaryClassName} class={p.secondaryClassName}></EditableClass></>}>Lv.15</ListRow>
<ListRow><button>Share</button> <button>Save</button></ListRow>
</Table>
4 years ago
</Box>
}
function StatsBox(p) {
return <Box title="Stats">
<Table classes="st">
4 years ago
<ListRow title="Battle Power" content={p.bp}></ListRow>
<ListRow title="HP" content={p.hp}></ListRow>
<ListRow title="PP" content={p.pp}></ListRow>
<ListRow title="Defense" content={p.def}></ListRow>
<ListRow title="Weapon Up" content={<><img alt="" src="/icons/MEL.png" /> <span className="ye">+{p.weaponUp1*100}%</span></>}><img alt="" src="/icons/RNG.png" /> <span className="ye">+{p.weaponUp2*100}%</span></ListRow>
<ListRow content={<><img alt="" src="/icons/TEC.png" /> <span className="ye">+{p.weaponUp3*100}%</span></>}></ListRow>
4 years ago
<ListRow title="Damage Resist." content={p.damageResist*100+"%"}></ListRow>
</Table>
4 years ago
</Box>
}
function EffectListing(p) {
return <li>{p.name}
<ul>
{EFFECTS[p.name].perks.map((perk,i)=>{
return <li key={i}><img alt="" src={EFFECTS[p.name].icon} />&ensp;{perk}</li>
})}
</ul>
</li>
}
function PageControlButton(p) {
return <li onClick={()=>{p.setCurrentPage(p.page)}} className={(p.currentPage===p.page)?"selected":""}>{p.pageName?p.pageName:p.page}</li>
4 years ago
}
function PageControl(p) {
var pages = []
for (var i=0;i<p.pages;i++) {
pages.push(<PageControlButton pageName={p.pageNames?p.pageNames[i]:undefined} currentPage={p.currentPage} setCurrentPage={p.setCurrentPage} page={i+1}/>)
}
return <ul className="boxmenu">
{pages.map((page,i)=>{return <React.Fragment key={i}>{page}</React.Fragment>})}
</ul>
}
function EffectsBox(p) {
const [currentPage,setCurrentPage]=useState(1)
return <Box title="Current Effects">
<PageControl pages={2} currentPage={currentPage} setCurrentPage={setCurrentPage}/>
<h3>Effect Name</h3>
{
currentPage===1?
4 years ago
<ul className="bu">
{p.effectList.map((ef,i)=>{
return <EffectListing key={i} name={ef}/>
})}
</ul>:
<></>
}
</Box>
}
function EquipBox(p) {
return <Box title="Equip">
<div className="we">
<div><h3>Weapon</h3><br /><img alt="" src={EQUIPMENT[p.weapon].icon} /><br />{p.weapon}+{p.weaponEnhancementLv}</div>
<div><h3>Slot 1</h3><br /><img alt="" src={EQUIPMENT[p.armorSlot1].icon} /><br />{p.armorSlot1}+{p.armorSlot1EnhancementLv}</div>
<div><h3>Slot 2</h3><br /><img alt="" src={EQUIPMENT[p.armorSlot2].icon} /><br />{p.armorSlot2}+{p.armorSlot2EnhancementLv}</div>
<div><h3>Slot 3</h3><br /><img alt="" src={EQUIPMENT[p.armorSlot3].icon} /><br />{p.armorSlot3}+{p.armorSlot3EnhancementLv}</div>
</div>
</Box>
}
function EquippedWeaponBox(p) {
const [currentPage,setCurrentPage] = useState(1)
const [selectedEquip,setSelectedEquip] = useState(p.weapon)
const [selectedEquipEnhancementLv,setSelectedEquipEnhancementLv] = useState(p.weaponEnhancementLv)
const [selectedEquipAbilities,setSelectedEquipAbilities] = useState(p.weaponAbilityList)
useEffect(()=>{
switch (currentPage) {
case 2:
4 years ago
setSelectedEquip(p.armorSlot1)
setSelectedEquipEnhancementLv(p.armorSlot1EnhancementLv)
setSelectedEquipAbilities(p.armorSlot1AbilityList)
break;
case 3:
4 years ago
setSelectedEquip(p.armorSlot2)
setSelectedEquipEnhancementLv(p.armorSlot2EnhancementLv)
setSelectedEquipAbilities(p.armorSlot2AbilityList)
break;
case 4:
4 years ago
setSelectedEquip(p.armorSlot3)
setSelectedEquipEnhancementLv(p.armorSlot3EnhancementLv)
setSelectedEquipAbilities(p.armorSlot3AbilityList)
break;
4 years ago
default:{
setSelectedEquip(p.weapon)
setSelectedEquipEnhancementLv(p.weaponEnhancementLv)
setSelectedEquipAbilities(p.weaponAbilityList)
}
}
},[currentPage,p.armorSlot1,p.armorSlot1EnhancementLv,p.armorSlot1AbilityList,p.armorSlot2,p.armorSlot2EnhancementLv,p.armorSlot2AbilityList,p.armorSlot3,p.armorSlot3EnhancementLv,p.armorSlot3AbilityList,p.weapon,p.weaponEnhancementLv,p.weaponAbilityList])
4 years ago
return <Box title="Equipped Weapon">
<h2><img alt="" src="/icons/NGSUIItemAssaultRifleMini.png" />{selectedEquip}+{selectedEquipEnhancementLv}</h2>
4 years ago
<PageControl pages={4} currentPage={currentPage} setCurrentPage={setCurrentPage} pageNames={["W",1,2,3]}/>
<div className="de">
<div>
<h3>Abilitiy Details</h3>
<ul className="aug">
{
selectedEquipAbilities?selectedEquipAbilities.map((ability,i)=>{
return <li key={i}><img alt="" src={ABILITIES[ability]?ABILITIES[ability].icon:ABILITY_DEFAULT_ICON} /> {ability}</li>
}):<></>
}
</ul>
</div>
<div>
<h3>Properties</h3>
<ul className="pr">
<li>Enhancement Lv.&emsp;<span>+{selectedEquipEnhancementLv}</span></li>
<li>Multi-Weapon&emsp;<span>-</span></li>
<li>Element&emsp;<span>-</span></li>
</ul>
</div>
</div>
</Box>
}
function DamageBox(p) {
const [currentPage,setCurrentPage] = useState(1)
return <Box title="Damage">
<PageControl pages={3} currentPage={currentPage} setCurrentPage={setCurrentPage}/>
<br /><br />
{
currentPage===1&&
<Table classes="ba">
<ListRow title="Critical Hit Rate">{p.criticalHitRate*100}%</ListRow>
<ListRow title="Critical Multiplier">{p.criticalMultiplier*100}%</ListRow>
<ListRow title="Midrange">{p.midRange}</ListRow>
<ListRow title="Critical">{p.critical}</ListRow>
<ListRow title="Effective"><span className="ye">{p.effective}</span></ListRow>
</Table>
4 years ago
}
</Box>
}
function ListRow(p) {
return <tr>
<td>{p.title}</td>
<td>{p.content}</td>
<td>{p.children}</td>
</tr>
}
function PopupWindow(p) {
return <ReactWindow title="Test Window">
This is a test window.
</ReactWindow>
}
function EditBackendBox(p) {
useEffect(()=>{
var timer1 = setTimeout(()=>{document.getElementById("editBox").focus()},100)
return () => {
clearTimeout(timer1);
};
})
return <input id="editBox" onKeyDown={(e)=>{
if (e.key==="Enter") {p.setEdit(false);p.setUpdate(true)}
else if (e.key==="Escape") {p.setEdit(false)}
}} maxLength={p.maxlength?p.maxlength:20} onBlur={()=>{p.setEdit(false);p.setUpdate(true)}} value={p.value} onChange={(f)=>{f.currentTarget.value.length>0?p.setName(f.currentTarget.value):p.setName(p.originalName)}}>
</input>
}
function EditableBackendBox(p) {
const [update,setUpdate] = useState(false)
const [edit,setEdit] = useState(false)
const [value,setValue] = useState(p.children)
useEffect(()=>{
if (p.callback&&update) {
p.callback(value)
setUpdate(false)
}
},[update])
return <>
<div className="hover" onClick={(f)=>{setEdit(true)}}>
{edit?
<EditBackendBox maxlength={p.maxlength} setUpdate={setUpdate} setEdit={setEdit} originalName={value} setName={setValue} value={value}/>
:<>{value}</>}
</div>
</>
}
function TableEditor(p) {
const [fields,setFields] = useState([])
const [data,setData] = useState([])
useEffect(()=>{
axios.get(BACKEND_URL+p.path)
.then((data)=>{
var cols = data.data.fields
var rows = data.data.rows
setFields(cols.filter((col)=>col.name!=="id").map((col)=>col.name))
setData(rows)
})
},[p.path])
return <>
<div className="table-responsive">
<table className="table text-light">
<caption>List of users</caption>
<thead>
<tr>
{fields.map((field,i)=><React.Fragment key={i}><th scope="col">{field}</th></React.Fragment>)}
</tr>
</thead>
<tbody>
{data.map((dat,i)=><tr key={i}>{fields.map((col,i)=><td key={i}><EditableBackendBox callback={(value)=>{console.log(value)}}>{String(dat[col])}</EditableBackendBox></td>)}</tr>)}
</tbody>
</table>
</div>
</>
}
function AdminPanel(p) {
return <div id="main" style={{background:"white"}}>
<div className="w-25"><Box title="Navigation">
<Table classes="st">
<Link to={"/admin/class"}>Class</Link><br/>
<Link to={"/admin/classdata"}>Class Data</Link><br/>
<Link to={"/admin/classweaponcompatibility"}>Class-Weapon Compatibility</Link><br/>
<hr/>
<Link to={"/admin/weapons"}>Weapons</Link><br/>
<Link to={"/admin/weaponexistencedata"}>Weapon Existence Data</Link><br/>
<Link to={"/admin/weapontypes"}>Weapon Types</Link><br/>
<Link to={"/admin/classweaponcompatibility"}>Class-Weapon Compatibility</Link><br/>
<hr/>
<Link to={"/admin/armor"}>Armor</Link><br/>
<Link to={"/admin/potentials"}>Potentials</Link><br/>
<Link to={"/admin/potentialdata"}>Potential Data</Link><br/>
<hr/>
<Link to={"/admin/builds"}>Builds</Link><br/>
<hr/>
<Link to={"/admin/skills"}>Skills</Link><br/>
<Link to={"/admin/skilltypes"}>Skill Types</Link><br/>
<Link to={"/admin/skilldata"}>Skill Data</Link><br/>
<hr/>
<Link to={"/admin/augments"}>Augments</Link><br/>
<Link to={"/admin/augmenttypes"}>Augment Types</Link><br/>
<hr/>
<Link to={"/admin/food"}>Food</Link><br/>
<Link to={"/admin/foodmultipliers"}>Food Multipliers</Link><br/>
<hr/>
<Link to={"/admin/roles"}>Roles</Link><br/>
<hr/>
<Link to={"/admin/users"}>Users</Link><br/></Table></Box></div>
<div className="w-75" style={{background:"rgba(20,29,40,0.66)"}}>
<Route path="/admin/class">
<TableEditor path="/class"/>
</Route>
<Route path="/admin/classdata">
<TableEditor path="/class_level_data"/>
</Route>
<Route path="/admin/classweaponcompatibility">
<TableEditor path="/class_weapon_type_data"/>
</Route>
<Route path="/admin/weapons">
<TableEditor path="/weapon"/>
</Route>
<Route path="/admin/weaponexistencedata">
<TableEditor path="/weapon_existence_data"/>
</Route>
<Route path="/admin/weapontypes">
<TableEditor path="/weapon_type"/>
</Route>
<Route path="/admin/armor">
<TableEditor path="/armor"/>
</Route>
<Route path="/admin/potentials">
<TableEditor path="/potential"/>
</Route>
<Route path="/admin/potentialdata">
<TableEditor path="/potential_data"/>
</Route>
<Route path="/admin/builds">
<TableEditor path="/builds"/>
</Route>
<Route path="/admin/skills">
<TableEditor path="/skill"/>
</Route>
<Route path="/admin/skilltypes">
<TableEditor path="/skill_type"/>
</Route>
<Route path="/admin/skilldata">
<TableEditor path="/skill_data"/>
</Route>
<Route path="/admin/augments">
<TableEditor path="/augment"/>
</Route>
<Route path="/admin/augmenttypes">
<TableEditor path="/augment_type"/>
</Route>
<Route path="/admin/food">
<TableEditor path="/food"/>
</Route>
<Route path="/admin/foodmultipliers">
<TableEditor path="/food_mult"/>
</Route>
<Route path="/admin/roles">
<TableEditor path="/roles"/>
</Route>
<Route path="/admin/users">
<TableEditor path="/users"/>
</Route>
</div>
</div>
}
function App() {
4 years ago
const [author,setAuthor] = useState("Dudley")
const [buildName,setBuildName] = useState("Fatimah")
const [className,setClassName] = useState("RANGER")
const [secondaryClassName,setSecondaryClassName] = useState("FORCE")
const [bp,setBP] = useState(1344)
const [hp,setHP] = useState(289)
const [pp,setPP] = useState(100)
const [def,setDef] = useState(402)
const [weaponUp1,setWeaponUp1] = useState(0.34)
const [weaponUp2,setWeaponUp2] = useState(0.34)
const [weaponUp3,setWeaponUp3] = useState(0.34)
const [damageResist,setDamageResist] = useState(0.18)
const [effectList,setEffectList] = useState([
"Food Boost Effect",
"Shifta / Deband",
"Region Mag Boost"
])
const [weapon,setWeapon] = useState("Ophistia Shooter")
const [armorSlot1,setArmorSlot1] = useState("Klauzdyne")
const [armorSlot2,setArmorSlot2] = useState("Klauznum")
const [armorSlot3,setArmorSlot3] = useState("Klauzment")
const [weaponEnhancementLv,setWeaponEnhancementLv] = useState(35)
const [armorSlot1EnhancementLv,setArmorSlot1EnhancementLv] = useState(10)
const [armorSlot2EnhancementLv,setArmorSlot2EnhancementLv] = useState(10)
const [armorSlot3EnhancementLv,setArmorSlot3EnhancementLv] = useState(10)
const [weaponAbilityList,setWeaponAbilityList] = useState([
"Wellspring Unit Lv.3",
"Fixa Fatale Lv.5",
"Legaro S Attack II",
"Legaro S Efficiet",
"Legaro S Efficiet",
"Legaro Souls 2",
"Legaro Reverij",
"Legaro Factalz",
"Legaro Crakus",
"Legaro Attack Vaz III",
])
const [armor1AbilityList,setArmor1AbilityList] = useState([])
const [armor2AbilityList,setArmor2AbilityList] = useState([])
const [armor3AbilityList,setArmor3AbilityList] = useState([])
const [criticalHitRate,setCriticalHitRate] = useState(0.05)
const [criticalMultiplier,setCriticalMultiplier] = useState(1.2)
const [midRange,setMidRange] = useState(126)
const [critical,setCritical] = useState(152)
const [effective,setEffective] = useState(127)
return (
<>
<Router>
<Switch>
<Route path="/admin">
<AdminPanel/>
</Route>
<Route path="/test">
<TestPanel/>
</Route>
<Route path="/">
<div id="main">
<Col>
<MainBox author={author} setAuthor={setAuthor} buildName={buildName} setBuildName={setBuildName} className={className} setClassName={setClassName} secondaryClassName={secondaryClassName} setSecondaryClassName={setSecondaryClassName}/>
<EffectsBox effectList={effectList} setEffectList={setEffectList}/>
</Col>
<Col>
<EquipBox weapon={weapon} setWeapon={setWeapon} armorSlot1={armorSlot1} setArmorSlot1={setArmorSlot1} armorSlot2={armorSlot2} setArmorSlot2={setArmorSlot2} armorSlot3={armorSlot3} setArmorSlot3={setArmorSlot3} weaponEnhancementLv={weaponEnhancementLv} setWeaponEnhancementLv={setWeaponEnhancementLv} armorSlot1EnhancementLv={armorSlot1EnhancementLv} setArmorSlot1EnhancementLv={setArmorSlot1EnhancementLv} armorSlot2EnhancementLv={armorSlot2EnhancementLv} setArmorSlot2EnhancementLv={setArmorSlot2EnhancementLv} armorSlot3EnhancementLv={armorSlot3EnhancementLv} setArmorSlot3EnhancementLv={setArmorSlot3EnhancementLv}/>
<EquippedWeaponBox weapon={weapon} armorSlot1={armorSlot1} armorSlot2={armorSlot2} armorSlot3={armorSlot3} weaponAbilityList={weaponAbilityList} setWeaponAbilityList={setWeaponAbilityList} armor1AbilityList={armor1AbilityList} setArmor1AbilityList={setArmor1AbilityList} armor2AbilityList={armor2AbilityList} setArmor2AbilityList={setArmor2AbilityList} armor3AbilityList={armor3AbilityList} setArmor3AbilityList={setArmor3AbilityList} weaponEnhancementLv={weaponEnhancementLv}armorSlot1EnhancementLv={armorSlot1EnhancementLv}armorSlot2EnhancementLv={armorSlot2EnhancementLv}armorSlot3EnhancementLv={armorSlot3EnhancementLv}/>
</Col>
<Col>
<StatsBox bp={bp} setBP={setBP} hp={hp} setHP={setHP} pp={pp} setPP={setPP} def={def} setDef={setDef} weaponUp1={weaponUp1} setWeaponUp1={setWeaponUp1} weaponUp2={weaponUp2} setWeaponUp2={setWeaponUp2} weaponUp3={weaponUp3} setWeaponUp3={setWeaponUp3} damageResist={damageResist} setDamageResist={setDamageResist}/>
<DamageBox criticalHitRate={criticalHitRate} setCriticalHitRate={setCriticalHitRate} criticalMultiplier={criticalMultiplier} setCriticalMultiplier={setCriticalMultiplier} midRange={midRange} setMidRange={setMidRange} critical={critical} setCritical={setCritical} effective={effective} setEffective={setEffective}/>
</Col>
<PopupWindow/>
</div>
</Route>
</Switch>
</Router>
</>
4 years ago
);
}
export default App;