-
Notifications
You must be signed in to change notification settings - Fork 190
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
Improve mobile view by using horizontal-split
mobile layout
#3046
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Devlin Junker <[email protected]>
It looks good so far, there are a few incorrect formatting |
Signed-off-by: Devlin Junker <[email protected]>
Signed-off-by: Devlin Junker <[email protected]>
Signed-off-by: Devlin Junker <[email protected]>
Signed-off-by: Devlin Junker <[email protected]>
Signed-off-by: Devlin Junker <[email protected]>
Signed-off-by: Devlin Junker <[email protected]>
Signed-off-by: Devlin Junker <[email protected]>
c1223f7
to
18bd3fb
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.
Forgot to submit the review :)
Please look at the suggestion.
@@ -7,6 +7,24 @@ | |||
<ShareItem v-if="showShareMenu" :item-id="item.id" @close="closeShareMenu()" /> | |||
|
|||
<div class="action-bar"> | |||
<NcActions v-show="!hideItemNav" |
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.
The nav items should also not be shown in the screen reader mode, where the DisplayItem is used in the list.
<NcActions v-show="!hideItemNav" | |
<NcActions v-show="!splitModeOff" |
The layout info is already in the component, otherwise you should add the prop also in FeedItemDisplayList where FeedItemDisplay is used for the screen reader mode.
Summary
Uses new
mobileLayout
prop ofNcAppContent
from nextcloud-libraries/nextcloud-vue#6364 and sets tohorizontal-split
Adds Navigation Arrows to top of
FeedItemDisplay
to go to next/previous item when in mobile viewDepends on nextcloud-libraries/nextcloud-vue#6364
Checklist