-
Notifications
You must be signed in to change notification settings - Fork 974
Conversation
animationName: [loaderAnimation], | ||
animationDuration: '.6s', | ||
animationDelay: '.1s', | ||
animationIterationCount: 'infinite' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please don't forget to dedupe the animation properties later
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
loader__line: {
display: 'inline-block',
width: '15px',
height: '15px',
borderRadius: '15px',
animationName: [loaderAnimation],
animationDuration: '.6s',
animationIterationCount: 'infinite'
},
loader__line_1: {
backgroundColor: '#FF5000',
animationDelay: '.1s'
}
and so on
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
const inTranstion = !(ledgerData.getIn(['migration', 'btc2BatTransitionDone'])) | ||
|
||
return <section className={css(styles.enabledContent)}> | ||
<div className={css(styles.loader, inTranstion && styles.loader_show)}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
styles.enabledContent__loader, inTranstion && styles.enabledContent__loader_show
. please change elements' className accordingly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
<div className={css(styles.loader__line, styles.loader__line_3)} /> | ||
</div> | ||
</div> | ||
</div> | ||
<div className={css(styles.walletBar)} data-test-id='walletBar'> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
styles.walletBar
-> styles.enabledContent__walletBar
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is not part of this PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Codecov Report
@@ Coverage Diff @@
## master #11395 +/- ##
==========================================
+ Coverage 52.52% 52.55% +0.03%
==========================================
Files 267 267
Lines 24994 24987 -7
Branches 3995 4001 +6
==========================================
+ Hits 13127 13133 +6
+ Misses 11867 11854 -13
|
@@ -274,6 +289,18 @@ const gridStyles = StyleSheet.create({ | |||
} | |||
}) | |||
|
|||
const loaderAnimation = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know still WIP but please move this to animations.js
file which is avail in 0.19.x too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
f39a18a
to
624d39c
Compare
eae3582
to
d9bd125
Compare
<div className={css(styles.loader__line, styles.loader__line_3, !inTranstion && styles.loader__line_off)} /> | ||
</div> | ||
</div> | ||
</div> | ||
<div className={css(styles.walletBar)} data-test-id='walletBar'> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
styles.walletBar
-> styles.enabledContent__walletBar
. See L175.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
d9bd125
to
44800cd
Compare
</div> | ||
</div> | ||
</div> | ||
<div className={css(styles.enabledContent__walletBar)} data-test-id='walletBar'> | ||
<div className={css(gridStyles.row1col1, styles.walletBar__title)} data-l10n-id='monthlyBudget' /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
enabledConent__walletBar__title
. please change every element under enabledContent__walletBar
, thanks. See L175.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sweet thanks!
58b402a
to
3e7bd2f
Compare
@@ -198,6 +199,7 @@ const updateAboutDetails = (tab, tabValue) => { | |||
.merge(synopsis) | |||
.merge(preferencesData) | |||
.set('wizardData', wizardData) | |||
.set('migration', migration) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love this! Great use of the new migration element
Resolves brave#11389 Resolves brave#11340 Resolves brave#11333 Resolves brave#11338 Auditors: @bsclifton Test Plan:
3e7bd2f
to
c7cbee1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! I ran through the process and verified each of the issues was covered. I fixed some variable misspellings while reviewing the code. Great job 😄 👍
master 1d4edf4 @NejcZdovc since there were conflicts, would you mind checking my conflict resolution? I manually tested the following on each:
|
Submitter Checklist:
git rebase -i
to squash commits (if needed).Resolves #11389
Resolves #11340
Resolves #11333
Resolves #11338
Auditors:
Test Plan:
Reviewer Checklist:
Tests