-
-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Item page improvements #521
Conversation
Codecov Report
@@ Coverage Diff @@
## master #521 +/- ##
=========================================
- Coverage 5.58% 5.23% -0.36%
=========================================
Files 97 105 +8
Lines 2702 2884 +182
Branches 420 439 +19
=========================================
Hits 151 151
- Misses 2544 2726 +182
Partials 7 7
Continue to review full report at Codecov.
|
Take in mind that backdrop store doesn't work in master, is fixed in #520 |
Waiting for #530 as it was rebased against. Some of the conflicts also come from there, so I don't want to do it twice :p |
this currently does what the current selectors are doing, in a more readable way to export them to this component in the next commit
@@ -42,7 +42,7 @@ | |||
</div> | |||
<v-row | |||
class="mt-4 align-center" | |||
:class="{ 'text-center': !$vuetify.breakpoint.mdAndUp }" | |||
:class="{ 'justify-center': !$vuetify.breakpoint.mdAndUp }" | |||
> | |||
<v-btn | |||
v-if="canPlay(item)" |
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.
Here we're using a v-if which calls to the mixin and a disabled which calls to local method, do these overlap? @MrTimscampi
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.
@ThibaultNocchi they're combined, see audio controls for an example
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.
You can remove the braces though
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
I'm trying to improve the background code of the item page.
input
event when the track is changed with the index of the track. It also chooses the default value, disabled the selector if necessary, applies placeholders...cols
sm
andclass
tags of the two-columns lines in the info part (genres, writing, selectors...) to easily edit them later to find the right sizing 🤌