Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-add stack interface for in-hand crafting #2526

Merged
merged 1 commit into from
May 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
191 changes: 191 additions & 0 deletions tgui/packages/tgui/interfaces/Stack.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,191 @@
import { sortBy } from 'common/collections';
import { createSearch } from 'common/string';

import { useBackend, useLocalState } from '../backend';
import {
Box,
Button,
Collapsible,
Input,
NoticeBox,
Section,
Table,
} from '../components';
import { Window } from '../layouts';

export const Stack = (props) => {
const { act, data } = useBackend();

const { amount, recipes = [] } = data;

const [searchText, setSearchText] = useLocalState('searchText', '');

const testSearch = createSearch(searchText, (item) => {
return item;
});

const items =
(searchText.length > 0 &&
Object.keys(recipes)
.filter(testSearch)
.reduce((obj, key) => {
obj[key] = recipes[key];
return obj;
}, {})) ||
recipes;

const height = Math.max(94 + Object.keys(recipes).length * 26, 250);

return (
<Window width={400} height={Math.min(height, 500)}>
<Window.Content scrollable>
<Section
title={'Amount: ' + amount}
buttons={
<>
Search
<Input
autoFocus
value={searchText}
onInput={(e, value) => setSearchText(value)}
mx={1}
/>
</>
}
>
{(items.length === 0 && <NoticeBox>No recipes found.</NoticeBox>) || (
<RecipeList recipes={items} />
)}
</Section>
</Window.Content>
</Window>
);
};

const RecipeList = (props) => {
const { act, data } = useBackend();

const { recipes } = props;

const sortedKeys = sortBy((key) => key.toLowerCase())(Object.keys(recipes));

return sortedKeys.map((title) => {
const recipe = recipes[title];
if (recipe.ref === undefined) {
return (
<Collapsible ml={1} color="label" title={title}>
<Box ml={1}>
<RecipeList recipes={recipe} />
</Box>
</Collapsible>
);
} else {
return <Recipe title={title} recipe={recipe} />;
}
});
};

const buildMultiplier = (recipe, amount) => {
if (recipe.req_amount > amount) {
return 0;
}

return Math.floor(amount / recipe.req_amount);
};

const Multipliers = (props) => {
const { act, data } = useBackend();

const { recipe, maxMultiplier } = props;

const maxM = Math.min(
maxMultiplier,
Math.floor(recipe.max_res_amount / recipe.res_amount),
);

const multipliers = [5, 10, 25];

let finalResult = [];

for (const multiplier of multipliers) {
if (maxM >= multiplier) {
finalResult.push(
<Button
content={multiplier * recipe.res_amount + 'x'}
onClick={() =>
act('make', {
ref: recipe.ref,
multiplier: multiplier,
})
}
/>,
);
}
}

if (multipliers.indexOf(maxM) === -1) {
finalResult.push(
<Button
content={maxM * recipe.res_amount + 'x'}
onClick={() =>
act('make', {
ref: recipe.ref,
multiplier: maxM,
})
}
/>,
);
}

return finalResult;
};

const Recipe = (props) => {
const { act, data } = useBackend();

const { amount } = data;

const { recipe, title } = props;

const { res_amount, max_res_amount, req_amount, ref } = recipe;

let buttonName = title;
buttonName += ' (';
buttonName += req_amount + ' ';
buttonName += 'sheet' + (req_amount > 1 ? 's' : '');
buttonName += ')';

if (res_amount > 1) {
buttonName = res_amount + 'x ' + buttonName;
}

const maxMultiplier = buildMultiplier(recipe, amount);

return (
<Box mb={1}>
<Table>
<Table.Row>
<Table.Cell>
<Button
fluid
disabled={!maxMultiplier}
icon="wrench"
content={buttonName}
onClick={() =>
act('make', {
ref: recipe.ref,
multiplier: 1,
})
}
/>
</Table.Cell>
{max_res_amount > 1 && maxMultiplier > 1 && (
<Table.Cell collapsing>
<Multipliers recipe={recipe} maxMultiplier={maxMultiplier} />
</Table.Cell>
)}
</Table.Row>
</Table>
</Box>
);
};
Loading