Skip to content
This repository was archived by the owner on Oct 11, 2023. It is now read-only.

Pre alpha fixes2#203

Merged
JackUrb merged 4 commits intomasterfrom
pre-alpha-fixes2
Apr 29, 2021
Merged

Pre alpha fixes2#203
JackUrb merged 4 commits intomasterfrom
pre-alpha-fixes2

Conversation

@JustinPinero
Copy link
Copy Markdown
Contributor

FIXES

  1. Sizing and scrolling issue for main page - Sidebar is now scrollable main page is responsive. (Styling for mobile devices still underway)
  2. Speech Bubble bug (Under certain circumstances the right most speech bubble would drop a row upon being hovered over making it unclickable)- Speech bubbles no longer change size on hover but change font weight and color.
  3. Actor undefined error when receiving system message - Actor property now is checked and will no longer render an agent header upon the actor prop not being defined.
    image

IN PROGRESS

  1. Star glowing animation upon receiving and giving experience.
  2. Mission Success Entry component.

@facebook-github-bot facebook-github-bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label Apr 29, 2021
@JustinPinero JustinPinero assigned JackUrb and unassigned JackUrb Apr 29, 2021
Copy link
Copy Markdown
Contributor

@JackUrb JackUrb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the fixes Justin! We're running out of things to fix before launch haha

Comment on lines +164 to +189
{actor ? (
<div className="agent">
<span style={{ fontFamily: "fantasy" }}>
{actor ? actor.toUpperCase() : null}
</span>
{isSelf ? (
<React.Fragment>
{xp ? (
<>
<span
style={{
fontFamily: "fantasy",
backgroundColor: "white",
color: "gold",
}}
>
{xp}
<i
className="fa fa-star"
style={{ color: "gold", marginLeft: "5px" }}
/>
</span>
</>
) : null}
</React.Fragment>
) : (
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These nested ternary operators are beginning to be hard to navigate and understand what's actually rendering here just from a glance. I tend to prefer setting subcomponents outside of the main flow at this level of depth, but there are certainly cases where the ternary operator is the right choice.

Not blocking, just musings.

@JackUrb JackUrb merged commit 128038d into master Apr 29, 2021
@JackUrb JackUrb deleted the pre-alpha-fixes2 branch April 29, 2021 16:58
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants