various changes to reserved card handling in player ui

This commit is contained in:
2022-08-27 14:53:02 -05:00
parent a9a6b83500
commit 8be8933446
6 changed files with 80 additions and 52 deletions

View File

@@ -1,21 +1,27 @@
import { v4 } from 'uuid';
import { CardProps } from '../../util/propTypes';
import { ResourceCost } from '../../util/types';
import { CardData, PlayerCards, ResourceCost } from '../../util/types';
import { useCurrentPlayer } from '../../hooks/useCurrentPlayer';
import { buyCardActions } from '../Player/ActionMethods';
import { hasMaxReserved, reserveCard } from '../Player/ActionMethods/reserveCardActions';
const { buyCard, tooExpensive } = buyCardActions;
export default function Card({ data, state, setState }: CardProps) {
export default function Card({ data, state, setState, reserved = false }: CardProps) {
const currentPlayer = useCurrentPlayer(state);
if (!data) return <div className="card"></div>;
if (!data || !currentPlayer) return <div className="card"></div>;
const purchaseDisabled = (): boolean => {
// TO DO: check whether a card belongs to the current player,
// if card is tagged as reserved
return tooExpensive(data, state);
}
return (
<div className="card" key={v4()}>
<div className='card' key={v4()}>
<img src={data.image} loading="lazy" />
<div className="foreground">
<div className={reserved ? `foreground-${data.gemValue}` : 'foreground'}>
<section className="card-top-section">
<p>{data.gemValue.toUpperCase()}</p>
{ (data.points && data.points > 0) ? <p>{data.points} {data.points === 1 ? 'point' : 'points'}</p> : null }
<div className="total-card-cost">
{
Object.keys(data.resourceCost).map((key: keyof ResourceCost | string) => {
@@ -28,20 +34,29 @@ export default function Card({ data, state, setState }: CardProps) {
})
}
</div>
{ (data.points && data.points > 0) ? <p>{data.points} {data.points === 1 ? 'point' : 'points'}</p> : null }
</section>
{
(state.actions.buyCard.active || state.actions.reserveCard.active) && (
<section className="card-action-section">
{ state.actions.buyCard.active &&
<button
onClick={() => buyCard(state, setState, data)}
disabled={tooExpensive(data, state)}>
disabled={purchaseDisabled()}>
Buy This Card
</button>
}
{ state.actions.reserveCard.active &&
{ !reserved && state.actions.reserveCard.active &&
<button
onClick={() => reserveCard(state, setState, data)}
disabled={hasMaxReserved(currentPlayer)}>
Reserve This Card
</button>
}
</section>
)
}
</div>
</div>
)

View File

@@ -56,7 +56,6 @@
@include map-gem-values(".card-cost");
}
}
}
.card-count {

View File

@@ -1,4 +1,5 @@
@import '../../sass/helper/mixins';
@import '../../sass/helper/variables';
@import '../../sass/helper/placeholders';
.all-players {
@@ -33,5 +34,35 @@
@include map-gem-values(".reserve-cost");
}
}
.card {
width: 100%;
img {
display: none;
}
@each $gem in $gemlist {
@include map-gem-values('.foreground');
.foreground-#{$gem} {
display: flex;
flex-direction: column;
align-items: center;
padding: 8px;
p {
display: inline;
padding: 8px;
}
.total-card-cost {
display: flex;
flex-flow: row wrap;
justify-content: center;
@include map-gem-values(".card-cost");
}
}
}
}
}
}

View File

@@ -29,18 +29,7 @@ export default function Player({ player, state, setState }: PlayerProps) {
dynamic && setReservedView(
<div className="reserved-card-view">
<p>Reserved cards:</p>
{
dynamic.reservedCards?.map((data: CardData) => (
<div className="reserved-card">
<p className={`mini-card ${data.gemValue}`} key={v4()}>{data.gemValue} card: {data.points || 0} points</p>
<div className="reserved-card-cost">
{
Object.entries(data.resourceCost).map(([key, value]) => value > 0 && <p className={`reserve-cost-${key}`} key={v4()}>{value}</p>)
}
</div>
</div>
))
}
{ dynamic.reservedCards?.map((data: CardData) => <Card key={v4()} data={data} state={state} setState={setState} reserved={true} />) }
</div>
)
}, [dynamic, setState])

View File

@@ -1,8 +1 @@
$emerald-images:
"src/assets/img/SUCCULENT-angele-kamp-unsplash.jpg",
"src/assets/img/SUCCULENT-annie-spratt-unsplash.jpg",
"src/assets/img/SUCCULENT-calle-macarone-unsplash.jpg",
"src/assets/img/SUCCULENT-edgar-castrejon-unsplash.jpg",
"src/assets/img/SUCCULENT-jacalyn-beales-unsplash.jpg",
"src/assets/img/SUCCULENT-tim-mossholder-unsplash.jpg"
;
$gemlist: 'ruby', 'sapphire', 'onyx', 'emerald', 'diamond', 'gold';

View File

@@ -7,6 +7,7 @@ export interface StateProps {
export interface CardProps extends StateProps {
data: CardData
reserved?: boolean
}
export interface CardRowProps extends StateProps {