mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2024-11-21 16:13:54 +00:00
Fix collapsible modifier sections not registering persistent
This commit is contained in:
parent
6323fa0879
commit
1a304ea425
1 changed files with 7 additions and 7 deletions
|
@ -258,7 +258,7 @@ export interface Section {
|
|||
*/
|
||||
export function createCollapsibleModifierSections(
|
||||
sectionsFunc: () => Section[]
|
||||
): [JSXFunction, Persistent<boolean>[]] {
|
||||
): [JSXFunction, Persistent<Record<number, boolean>>] {
|
||||
const sections: Section[] = [];
|
||||
const processed:
|
||||
| {
|
||||
|
@ -279,9 +279,7 @@ export function createCollapsibleModifierSections(
|
|||
return sections;
|
||||
}
|
||||
|
||||
const collapsed = createLazyProxy(() =>
|
||||
calculateSections().map(() => persistent<boolean>(false))
|
||||
) as Persistent<boolean>[];
|
||||
const collapsed = persistent<Record<number, boolean>>({});
|
||||
const jsxFunc = jsx(() => {
|
||||
const sections = calculateSections();
|
||||
|
||||
|
@ -289,10 +287,12 @@ export function createCollapsibleModifierSections(
|
|||
if (unref(processed.visible[i]) === false) return null;
|
||||
const header = (
|
||||
<h3
|
||||
onClick={() => (collapsed[i].value = !collapsed[i].value)}
|
||||
onClick={() => (collapsed.value[i] = !collapsed.value[i])}
|
||||
style="cursor: pointer"
|
||||
>
|
||||
<span class={"modifier-toggle" + (unref(collapsed[i]) ? " collapsed" : "")}>
|
||||
<span
|
||||
class={"modifier-toggle" + (unref(collapsed.value[i]) ? " collapsed" : "")}
|
||||
>
|
||||
▼
|
||||
</span>
|
||||
{s.title}
|
||||
|
@ -300,7 +300,7 @@ export function createCollapsibleModifierSections(
|
|||
</h3>
|
||||
);
|
||||
|
||||
const modifiers = unref(collapsed[i]) ? null : (
|
||||
const modifiers = unref(collapsed.value[i]) ? null : (
|
||||
<>
|
||||
<div class="modifier-container">
|
||||
<span class="modifier-amount">
|
||||
|
|
Loading…
Reference in a new issue