Add update code for summons
This commit is contained in:
parent
fbc6f27b7f
commit
99d3c646c0
1 changed files with 118 additions and 5 deletions
|
|
@ -42,10 +42,14 @@ const SummonGrid = (props: Props) => {
|
||||||
const { party, grid } = useSnapshot(appState)
|
const { party, grid } = useSnapshot(appState)
|
||||||
const [slug, setSlug] = useState()
|
const [slug, setSlug] = useState()
|
||||||
|
|
||||||
// Create a temporary state to store previous weapon uncap value
|
// Create a temporary state to store previous weapon uncap values and transcendence stages
|
||||||
const [previousUncapValues, setPreviousUncapValues] = useState<{
|
const [previousUncapValues, setPreviousUncapValues] = useState<{
|
||||||
[key: number]: number
|
[key: number]: number
|
||||||
}>({})
|
}>({})
|
||||||
|
const [previousTranscendenceStages, setPreviousTranscendenceStages] =
|
||||||
|
useState<{
|
||||||
|
[key: number]: number
|
||||||
|
}>({})
|
||||||
|
|
||||||
// Set the editable flag only on first load
|
// Set the editable flag only on first load
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
@ -184,21 +188,21 @@ const SummonGrid = (props: Props) => {
|
||||||
accountState.account.user &&
|
accountState.account.user &&
|
||||||
party.user.id === accountState.account.user.id
|
party.user.id === accountState.account.user.id
|
||||||
) {
|
) {
|
||||||
memoizeAction(id, position, uncapLevel)
|
memoizeUncapAction(id, position, uncapLevel)
|
||||||
|
|
||||||
// Optimistically update UI
|
// Optimistically update UI
|
||||||
updateUncapLevel(position, uncapLevel)
|
updateUncapLevel(position, uncapLevel)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const memoizeAction = useCallback(
|
const memoizeUncapAction = useCallback(
|
||||||
(id: string, position: number, uncapLevel: number) => {
|
(id: string, position: number, uncapLevel: number) => {
|
||||||
debouncedAction(id, position, uncapLevel)
|
debouncedUncapAction(id, position, uncapLevel)
|
||||||
},
|
},
|
||||||
[props, previousUncapValues]
|
[props, previousUncapValues]
|
||||||
)
|
)
|
||||||
|
|
||||||
const debouncedAction = useMemo(
|
const debouncedUncapAction = useMemo(
|
||||||
() =>
|
() =>
|
||||||
debounce((id, position, number) => {
|
debounce((id, position, number) => {
|
||||||
saveUncap(id, position, number)
|
saveUncap(id, position, number)
|
||||||
|
|
@ -237,6 +241,112 @@ const SummonGrid = (props: Props) => {
|
||||||
setPreviousUncapValues(newPreviousValues)
|
setPreviousUncapValues(newPreviousValues)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Methods: Updating transcendence stage
|
||||||
|
// Note: Saves, but debouncing is not working properly
|
||||||
|
async function saveTranscendence(
|
||||||
|
id: string,
|
||||||
|
position: number,
|
||||||
|
stage: number
|
||||||
|
) {
|
||||||
|
storePreviousUncapValue(position)
|
||||||
|
storePreviousTranscendenceStage(position)
|
||||||
|
|
||||||
|
const payload = {
|
||||||
|
summon: {
|
||||||
|
uncap_level: stage > 0 ? 6 : 5,
|
||||||
|
transcendence_step: stage,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (stage != previousTranscendenceStages[position])
|
||||||
|
await api.endpoints.grid_summons
|
||||||
|
.update(id, payload)
|
||||||
|
.then((response) => {
|
||||||
|
storeGridSummon(response.data.grid_summon)
|
||||||
|
})
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
|
||||||
|
// Revert optimistic UI
|
||||||
|
updateUncapLevel(position, previousUncapValues[position])
|
||||||
|
updateTranscendenceStage(position, previousTranscendenceStages[position])
|
||||||
|
|
||||||
|
// Remove optimistic key
|
||||||
|
let newPreviousTranscendenceStages = { ...previousTranscendenceStages }
|
||||||
|
let newPreviousUncapValues = { ...previousUncapValues }
|
||||||
|
|
||||||
|
delete newPreviousTranscendenceStages[position]
|
||||||
|
delete newPreviousUncapValues[position]
|
||||||
|
|
||||||
|
setPreviousTranscendenceStages(newPreviousTranscendenceStages)
|
||||||
|
setPreviousUncapValues(newPreviousUncapValues)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function initiateTranscendenceUpdate(
|
||||||
|
id: string,
|
||||||
|
position: number,
|
||||||
|
stage: number
|
||||||
|
) {
|
||||||
|
if (
|
||||||
|
party.user &&
|
||||||
|
accountState.account.user &&
|
||||||
|
party.user.id === accountState.account.user.id
|
||||||
|
) {
|
||||||
|
memoizeTranscendenceAction(id, position, stage)
|
||||||
|
|
||||||
|
// Optimistically update UI
|
||||||
|
updateTranscendenceStage(position, stage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const memoizeTranscendenceAction = useCallback(
|
||||||
|
(id: string, position: number, stage: number) => {
|
||||||
|
debouncedTranscendenceAction(id, position, stage)
|
||||||
|
},
|
||||||
|
[props, previousTranscendenceStages]
|
||||||
|
)
|
||||||
|
|
||||||
|
const debouncedTranscendenceAction = useMemo(
|
||||||
|
() =>
|
||||||
|
debounce((id, position, number) => {
|
||||||
|
saveTranscendence(id, position, number)
|
||||||
|
}, 500),
|
||||||
|
[props, saveTranscendence]
|
||||||
|
)
|
||||||
|
|
||||||
|
const updateTranscendenceStage = (position: number, stage: number) => {
|
||||||
|
if (appState.grid.summons.mainSummon && position == -1)
|
||||||
|
appState.grid.summons.mainSummon.transcendence_step = stage
|
||||||
|
else if (appState.grid.summons.friendSummon && position == 6)
|
||||||
|
appState.grid.summons.friendSummon.transcendence_step = stage
|
||||||
|
else {
|
||||||
|
const summon = appState.grid.summons.allSummons[position]
|
||||||
|
if (summon) {
|
||||||
|
summon.transcendence_step = stage
|
||||||
|
appState.grid.summons.allSummons[position] = summon
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function storePreviousTranscendenceStage(position: number) {
|
||||||
|
// Save the current value in case of an unexpected result
|
||||||
|
let newPreviousValues = { ...previousUncapValues }
|
||||||
|
|
||||||
|
if (appState.grid.summons.mainSummon && position == -1)
|
||||||
|
newPreviousValues[position] = appState.grid.summons.mainSummon.uncap_level
|
||||||
|
else if (appState.grid.summons.friendSummon && position == 6)
|
||||||
|
newPreviousValues[position] =
|
||||||
|
appState.grid.summons.friendSummon.uncap_level
|
||||||
|
else {
|
||||||
|
const summon = appState.grid.summons.allSummons[position]
|
||||||
|
newPreviousValues[position] = summon ? summon.uncap_level : 0
|
||||||
|
}
|
||||||
|
|
||||||
|
setPreviousUncapValues(newPreviousValues)
|
||||||
|
}
|
||||||
|
|
||||||
async function removeSummon(id: string) {
|
async function removeSummon(id: string) {
|
||||||
try {
|
try {
|
||||||
const response = await api.endpoints.grid_summons.destroy({ id: id })
|
const response = await api.endpoints.grid_summons.destroy({ id: id })
|
||||||
|
|
@ -285,6 +395,7 @@ const SummonGrid = (props: Props) => {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
||||||
const summonGridElement = (
|
const summonGridElement = (
|
||||||
<div id="LabeledGrid">
|
<div id="LabeledGrid">
|
||||||
<div className="Label">{t('summons.summons')}</div>
|
<div className="Label">{t('summons.summons')}</div>
|
||||||
|
|
@ -307,6 +418,7 @@ const SummonGrid = (props: Props) => {
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
||||||
const subAuraSummonElement = (
|
const subAuraSummonElement = (
|
||||||
<ExtraSummons
|
<ExtraSummons
|
||||||
grid={grid.summons.allSummons}
|
grid={grid.summons.allSummons}
|
||||||
|
|
@ -318,6 +430,7 @@ const SummonGrid = (props: Props) => {
|
||||||
updateUncap={initiateUncapUpdate}
|
updateUncap={initiateUncapUpdate}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<div id="SummonGrid">
|
<div id="SummonGrid">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue