Skip to content

Commit

Permalink
fix: modifier order in representation was wrong
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Parcet <[email protected]>
  • Loading branch information
alexpargon committed Sep 19, 2024
1 parent 19e8aea commit a793afa
Showing 1 changed file with 26 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,31 @@ const ListModifiersKey = ({ keyCode, size = "xs", selectedKey }: ListModifiersPr
) : (
""
)}
{modifiers.includes(0) === true &&
!modifiersState.isMeh &&
!modifiersState.isHyper &&
(!modifiersState.altVisual || modifiers.length > 1) ? (
<AnimatePresence mode="popLayout">
<motion.div initial={{ opacity: 0, y: -50 }} animate={{ opacity: 1, y: 0 }} exit={{ opacity: 0, y: -50 }}>
<li className="inline-flex items-center h-[12px] font-semibold tracking-tight leading-3 py-0 px-[3px] m-0 text-[10px] text-gray-25 dark:text-gray-600 bg-gray-600/60 dark:bg-gray-25/60 shadow-sm rounded-[3px] [&_>div]:!h-[12px] [&_>div]:!inline-table">
<OSKey renderKey="shift" size={size} />
</li>
</motion.div>
</AnimatePresence>
) : (
""
)}
{modifiers.includes(1) === true && !modifiersState.isMeh && !modifiersState.isHyper ? (
<AnimatePresence mode="popLayout">
<motion.div initial={{ opacity: 0, y: -50 }} animate={{ opacity: 1, y: 0 }} exit={{ opacity: 0, y: -50 }}>
<li className="inline-flex items-center h-[12px] font-semibold tracking-tight leading-3 py-0 px-[3px] m-0 text-[10px] text-gray-25 dark:text-gray-600 bg-gray-600/60 dark:bg-gray-25/60 shadow-sm rounded-[3px] [&_>div]:!h-[12px] [&_>div]:!inline-table">
<OSKey renderKey="control" size={size} />
</li>
</motion.div>
</AnimatePresence>
) : (
""
)}
{modifiers.includes(2) === true && !modifiersState.isMeh && !modifiersState.isHyper ? (
<AnimatePresence mode="popLayout">
<motion.div initial={{ opacity: 0, y: -50 }} animate={{ opacity: 1, y: 0 }} exit={{ opacity: 0, y: -50 }}>
Expand All @@ -132,31 +157,7 @@ const ListModifiersKey = ({ keyCode, size = "xs", selectedKey }: ListModifiersPr
) : (
""
)}
{modifiers.includes(1) === true && !modifiersState.isMeh && !modifiersState.isHyper ? (
<AnimatePresence mode="popLayout">
<motion.div initial={{ opacity: 0, y: -50 }} animate={{ opacity: 1, y: 0 }} exit={{ opacity: 0, y: -50 }}>
<li className="inline-flex items-center h-[12px] font-semibold tracking-tight leading-3 py-0 px-[3px] m-0 text-[10px] text-gray-25 dark:text-gray-600 bg-gray-600/60 dark:bg-gray-25/60 shadow-sm rounded-[3px] [&_>div]:!h-[12px] [&_>div]:!inline-table">
<OSKey renderKey="control" size={size} />
</li>
</motion.div>
</AnimatePresence>
) : (
""
)}
{modifiers.includes(0) === true &&
!modifiersState.isMeh &&
!modifiersState.isHyper &&
(!modifiersState.altVisual || modifiers.length > 1) ? (
<AnimatePresence mode="popLayout">
<motion.div initial={{ opacity: 0, y: -50 }} animate={{ opacity: 1, y: 0 }} exit={{ opacity: 0, y: -50 }}>
<li className="inline-flex items-center h-[12px] font-semibold tracking-tight leading-3 py-0 px-[3px] m-0 text-[10px] text-gray-25 dark:text-gray-600 bg-gray-600/60 dark:bg-gray-25/60 shadow-sm rounded-[3px] [&_>div]:!h-[12px] [&_>div]:!inline-table">
<OSKey renderKey="shift" size={size} />
</li>
</motion.div>
</AnimatePresence>
) : (
""
)}

{modifiers.includes(4) === true && !modifiersState.isMeh && !modifiersState.isHyper ? (
<AnimatePresence mode="popLayout">
<motion.div initial={{ opacity: 0, y: -50 }} animate={{ opacity: 1, y: 0 }} exit={{ opacity: 0, y: -50 }}>
Expand Down

0 comments on commit a793afa

Please sign in to comment.