(Hotfix) Fixes some minor bugs (#337)

* Properly set and call raidGroups from state

Does this fix our bug? We'll find out!

* Fix EditPartyModal confirmation on new teams

EditPartyModal was popping a confirmation alert on teams that had no data in them when exiting details

* Add themed placeholder colors for raids

We don't have images for a lot of the new raid images. Here, we create themed placeholder colors and use those instead of images. The images can't react to the users theme as easily, so this is a better solution for now.

* Fix RaidCombobox not switching to raid's section

The RaidCombobox should always open to the section that contains the current raid, or the middle section if there is no raid selected. There was some spaghetti code, but this should fix it.
This commit is contained in:
Justin Edmund 2023-07-04 01:53:51 -07:00 committed by GitHub
parent 9c3c36e81b
commit a820e5ad5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 77 additions and 34 deletions

View file

@ -12,6 +12,7 @@ import DialogFooter from '~components/common/DialogFooter'
import DialogContent from '~components/common/DialogContent' import DialogContent from '~components/common/DialogContent'
import Button from '~components/common/Button' import Button from '~components/common/Button'
import DurationInput from '~components/common/DurationInput' import DurationInput from '~components/common/DurationInput'
import Input from '~components/common/Input'
import InputTableField from '~components/common/InputTableField' import InputTableField from '~components/common/InputTableField'
import RaidCombobox from '~components/raids/RaidCombobox' import RaidCombobox from '~components/raids/RaidCombobox'
import SegmentedControl from '~components/common/SegmentedControl' import SegmentedControl from '~components/common/SegmentedControl'
@ -20,6 +21,7 @@ import SwitchTableField from '~components/common/SwitchTableField'
import TableField from '~components/common/TableField' import TableField from '~components/common/TableField'
import Textarea from '~components/common/Textarea' import Textarea from '~components/common/Textarea'
import capitalizeFirstLetter from '~utils/capitalizeFirstLetter'
import type { DetailsObject } from 'types' import type { DetailsObject } from 'types'
import type { DialogProps } from '@radix-ui/react-dialog' import type { DialogProps } from '@radix-ui/react-dialog'
@ -27,7 +29,6 @@ import { appState } from '~utils/appState'
import CheckIcon from '~public/icons/Check.svg' import CheckIcon from '~public/icons/Check.svg'
import styles from './index.module.scss' import styles from './index.module.scss'
import Input from '~components/common/Input'
interface Props extends DialogProps { interface Props extends DialogProps {
open: boolean open: boolean
@ -286,8 +287,13 @@ const EditPartyModal = ({
// Methods: Modification checking // Methods: Modification checking
function hasBeenModified() { function hasBeenModified() {
const nameChanged = name !== party.name const nameChanged =
const descriptionChanged = description !== party.description name !== party.name && !(name === '' && party.name === undefined)
const descriptionChanged =
description !== party.description &&
!(description === '' && party.description === undefined)
const raidChanged = raid !== party.raid const raidChanged = raid !== party.raid
const chargeAttackChanged = chargeAttack !== party.chargeAttack const chargeAttackChanged = chargeAttack !== party.chargeAttack
const fullAutoChanged = fullAuto !== party.fullAuto const fullAutoChanged = fullAuto !== party.fullAuto
@ -357,7 +363,12 @@ const EditPartyModal = ({
<span> <span>
<Trans i18nKey="alerts.unsaved_changes.party"> <Trans i18nKey="alerts.unsaved_changes.party">
You will lose all changes to your party{' '} You will lose all changes to your party{' '}
<strong>{{ objectName: party.name }}</strong> if you continue. <strong>
{{
objectName: name || capitalizeFirstLetter(t('untitled')),
}}
</strong>{' '}
if you continue.
<br /> <br />
<br /> <br />
Are you sure you want to continue without saving? Are you sure you want to continue without saving?

View file

@ -115,29 +115,13 @@ const RaidCombobox = (props: Props) => {
sortGroups(appState.raidGroups) sortGroups(appState.raidGroups)
}, []) }, [])
// Set current raid and section when the component mounts // Set current section when the current raid changes
useEffect(() => {
// if (appState.party.raid) {
// setCurrentRaid(appState.party.raid)
// if (appState.party.raid.group.section > 0) {
// setCurrentSection(appState.party.raid.group.section)
// } else {
// setCurrentSection(1)
// }
// } else if (props.showAllRaidsOption && !currentRaid) {
// setCurrentRaid(allRaidsOption)
// }
}, [])
// Set current raid and section when the current raid changes
useEffect(() => { useEffect(() => {
console.log('Raid has changed')
if (props.currentRaid) { if (props.currentRaid) {
setCurrentRaid(props.currentRaid)
if (appState.party.raid && appState.party.raid.group.section > 0)
setCurrentSection(props.currentRaid.group.section) setCurrentSection(props.currentRaid.group.section)
else setCurrentSection(1)
} else { } else {
setCurrentRaid(undefined) setCurrentSection(1)
} }
}, [props.currentRaid]) }, [props.currentRaid])

View file

@ -34,6 +34,14 @@
height: auto; height: auto;
} }
.placeholder {
aspect-ratio: 10 / 7;
background-color: var(--placeholder-bound-bg);
border-radius: $item-corner-small;
width: $unit-10x;
height: auto;
}
&:hover { &:hover {
.extraIndicator { .extraIndicator {
background: var(--extra-purple-secondary); background: var(--extra-purple-secondary);
@ -44,6 +52,10 @@
background-color: var(--pill-bg-hover); background-color: var(--pill-bg-hover);
color: var(--pill-text-hover); color: var(--pill-text-hover);
} }
.placeholder {
background-color: var(--placeholder-bound-bg-hover);
}
} }
&.selected .extraIndicator { &.selected .extraIndicator {

View file

@ -18,6 +18,27 @@ interface Props extends ComponentProps<'div'> {
onArrowKeyPressed?: (direction: 'Up' | 'Down') => void onArrowKeyPressed?: (direction: 'Up' | 'Down') => void
onEscapeKeyPressed?: () => void onEscapeKeyPressed?: () => void
} }
const placeholderSlugs = [
'all',
'farming',
'three-gauge',
'five-gauge',
'ex-plus',
'nm90',
'nm95',
'nm100',
'nm150',
'nm200',
'1-star',
'2-star',
'3-star',
'4-star',
'5-star',
'db95',
'db135',
'db175',
]
const RaidItem = React.forwardRef<HTMLDivElement, PropsWithChildren<Props>>( const RaidItem = React.forwardRef<HTMLDivElement, PropsWithChildren<Props>>(
function Item( function Item(
{ {
@ -69,7 +90,11 @@ const RaidItem = React.forwardRef<HTMLDivElement, PropsWithChildren<Props>>(
onKeyDown={handleKeyDown} onKeyDown={handleKeyDown}
ref={forwardedRef} ref={forwardedRef}
> >
{icon && <img alt={icon.alt} src={icon.src} />} {placeholderSlugs.includes(`${value}`) ? (
<div className={styles.placeholder} />
) : (
icon && <img alt={icon.alt} src={icon.src} />
)}
<span className={styles.text}>{children}</span> <span className={styles.text}>{children}</span>
{selected && ( {selected && (
<i className={styles.selected}>{t('combobox.selected')}</i> <i className={styles.selected}>{t('combobox.selected')}</i>

View file

@ -187,10 +187,8 @@ const ProfileRoute: React.FC<Props> = ({
// Fetch all raids on mount, then find the raid in the URL if present // Fetch all raids on mount, then find the raid in the URL if present
useEffect(() => { useEffect(() => {
api.endpoints.raids.getAll().then((response) => {
const raids = appState.raidGroups.flatMap((group) => group.raids) const raids = appState.raidGroups.flatMap((group) => group.raids)
setRaids(raids) setRaids(raids)
})
}, [setRaids]) }, [setRaids])
// When the element, raid or recency filter changes, // When the element, raid or recency filter changes,

View file

@ -109,7 +109,7 @@ const NewRoute: React.FC<Props> = ({
useEffect(() => { useEffect(() => {
if (context && context.jobs && context.jobSkills) { if (context && context.jobs && context.jobSkills) {
appState.raids = context.raidGroups appState.raidGroups = context.raidGroups
appState.jobs = context.jobs appState.jobs = context.jobs
appState.jobSkills = context.jobSkills appState.jobSkills = context.jobSkills
appState.weaponKeys = context.weaponKeys appState.weaponKeys = context.weaponKeys

View file

@ -190,10 +190,8 @@ const SavedRoute: React.FC<Props> = ({
// Fetch all raids on mount, then find the raid in the URL if present // Fetch all raids on mount, then find the raid in the URL if present
useEffect(() => { useEffect(() => {
api.endpoints.raids.getAll().then((response) => {
const raids = appState.raidGroups.flatMap((group) => group.raids) const raids = appState.raidGroups.flatMap((group) => group.raids)
setRaids(raids) setRaids(raids)
})
}, [setRaids]) }, [setRaids])
// When the element, raid or recency filter changes, // When the element, raid or recency filter changes,

View file

@ -44,6 +44,10 @@
--menu-bg-item-hover: #{$menu--item--bg--light--hover}; --menu-bg-item-hover: #{$menu--item--bg--light--hover};
--menu-text-hover: #{$menu--text--light--hover}; --menu-text-hover: #{$menu--text--light--hover};
// Light - Placeholders
--placeholder-bound-bg: #{$placeholder--bound--bg--light};
--placeholder-bound-bg-hover: #{$placeholder--bound--bg--light--hover};
// Light - Notices // Light - Notices
--notice-bg: #{$notice--bg--light}; --notice-bg: #{$notice--bg--light};
--notice-text: #{$notice--text--light}; --notice-text: #{$notice--text--light};
@ -217,6 +221,10 @@
--menu-bg-item-hover: #{$menu--item--bg--dark--hover}; --menu-bg-item-hover: #{$menu--item--bg--dark--hover};
--menu-text-hover: #{$menu--text--dark--hover}; --menu-text-hover: #{$menu--text--dark--hover};
// Dark - Placeholders
--placeholder-bound-bg: #{$placeholder--bound--bg--dark};
--placeholder-bound-bg-hover: #{$placeholder--bound--bg--dark--hover};
// Dark - Notices // Dark - Notices
--notice-bg: #{$notice--bg--dark}; --notice-bg: #{$notice--bg--dark};
--notice-text: #{$notice--text--dark}; --notice-text: #{$notice--text--dark};

View file

@ -196,6 +196,13 @@ $menu--item--bg--dark--hover: $grey-00;
$menu--text--light--hover: $grey-100; $menu--text--light--hover: $grey-100;
$menu--text--dark--hover: $grey-15; $menu--text--dark--hover: $grey-15;
// Color Definitions: Placeholders
$placeholder--bound--bg--light: $grey-80;
$placeholder--bound--bg--dark: $grey-30;
$placeholder--bound--bg--light--hover: $grey-75;
$placeholder--bound--bg--dark--hover: $grey-20;
// Color Definitions: Notices // Color Definitions: Notices
$notice--bg--light: $accent--yellow--100; $notice--bg--light: $accent--yellow--100;
$notice--bg--dark: $accent--yellow--00; $notice--bg--dark: $accent--yellow--00;