Skip to content

Commit

Permalink
Merge pull request #3163 from builder-247/item-tooltip-rework
Browse files Browse the repository at this point in the history
Item tooltip rework
  • Loading branch information
howardchung committed Mar 16, 2024
2 parents 69550ee + 7c663bf commit 533f741
Show file tree
Hide file tree
Showing 10 changed files with 355 additions and 180 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"ace-builds": "^1.4.7",
"core-js": "^3.6.4",
"dota2-emoticons": "^1.0.3",
"dotaconstants": "^8.3.0",
"dotaconstants": "^8.5.0",
"fuzzy": "^0.1.3",
"heatmap.js": "github:muyao1987/heatmap.js",
"history": "^4.10.1",
Expand Down
Binary file added public/assets/images/dota2/ability_cooldown.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/dota2/ability_healthcost.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/dota2/ability_manacost.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 54 additions & 0 deletions src/components/AbilityTooltip/AbilityBehaviour.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
import styled from 'styled-components';
import constants from '../constants';
import { formatValues } from '../../utility';
import React from 'react';
import propTypes from 'prop-types';

const Behavior = styled.div`
position: relative;
padding: 13px;
color: #95a5a6;
span {
&:nth-child(2) {
color: ${constants.primaryTextColor};
font-weight: 500;
}
&[type="Yes"] {
color: ${constants.colorGreen};
}
&[type="Strong Dispels Only"] {
color: darkred;
}
&[type="No"] {
color: ${constants.colorRed};
}
&[type="Pure"] {
color: ${constants.colorDamageTypePure};
}
&[type="Physical"] {
color: ${constants.colorDamageTypePhysical};
}
&[type="Magical"] {
color: ${constants.colorDamageTypeMagical};
}
}
`;

const AbilityBehaviour = ({ ability }: any) => (
<Behavior>
{ability.behavior ? <div><span>TARGET: </span><span>{formatValues(ability.behavior)}</span></div> : ''}
{/*@ts-ignore*/}
{ability.dmg_type ? <div><span>DAMAGE TYPE: </span><span type={ability.dmg_type}>{`${ability.dmg_type}`}</span></div> : ''}
{/*@ts-ignore*/}
{ability.bkbpierce ? <div><span>PIERCES DEBUFF IMMUNITY: </span><span type={ability.bkbpierce}>{`${ability.bkbpierce}`}</span></div> : ''}
{/*@ts-ignore*/}
{ability.dispellable ? <div><span>DISPELLABLE: </span><span type={ability.dispellable}>{`${ability.dispellable}`}</span></div> : ''}
</Behavior>
)

export default AbilityBehaviour;

AbilityBehaviour.propTypes = {
ability: propTypes.shape({}).isRequired,
};
47 changes: 5 additions & 42 deletions src/components/AbilityTooltip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,10 @@ import React from 'react';
import propTypes from 'prop-types';
import styled from 'styled-components';
import constants from '../constants';
import { styleValues } from '../../utility';
import { styleValues, formatValues } from '../../utility';
import AbilityBehaviour from './AbilityBehaviour';
import config from '../../config';

function formatValues(values: any) {
if (Array.isArray(values)) {
return values.filter(value => value).join(' / ');
}
return values;
}

const Wrapper = styled.div`
position: relative;
width: 300px;
Expand Down Expand Up @@ -98,31 +92,6 @@ const Attributes = styled.div`
}
`;

const Behavior = styled.div`
position: relative;
padding: 13px;
color: #95a5a6;
span {
&:nth-child(2) {
color: ${constants.primaryTextColor};
font-weight: 500;
}
&[type="Yes"] {
color: ${constants.colorGreen};
}
&[type="No"] {
color: ${constants.colorRed};
}
&[type="Pure"] {
color: #bc7bfc;
}
&[type="Physical"] {
color: #7bb2fc;
}
}
`;

const Resources = styled.div`
padding: 6px 13px 13px 13px;
Expand Down Expand Up @@ -165,20 +134,14 @@ const AbilityTooltip = ({ ability, inflictor }: any) => (
</Header>
{(ability.behavior || ability.dmg_type || ability.bkbpierce) &&
<div>
<Behavior>
{ability.behavior ? <div><span>TARGET: </span><span>{formatValues(ability.behavior)}</span></div> : ''}
{/*@ts-ignore*/}
{ability.dmg_type ? <div><span>DAMAGE TYPE: </span><span type={ability.dmg_type}>{`${ability.dmg_type}`}</span></div> : ''}
{/*@ts-ignore*/}
{ability.bkbpierce ? <div><span>PIERCES SPELL IMMUNITY: </span><span type={ability.bkbpierce}>{`${ability.bkbpierce}`}</span></div> : ''}
</Behavior>
<AbilityBehaviour ability={ability} />
<Break />
</div>
}
{ability.desc &&
<Description
<Description
//@ts-ignore
innerRef={(el: any) => styleValues(el)}>
ref={(el: any) => styleValues(el)}>
{ability.desc}
</Description>
}
Expand Down
Loading

0 comments on commit 533f741

Please sign in to comment.