1
0
Fork 0

watch view visual tweaks and search/comment placeholder dismiss on focus (#983)

- make the placeholder disappear on focus in the search bar
- make the placeholder disappear on focus in the comment textarea
- make the texarea resize automagically
- refactor the watch view to use bootstrap 4's flexgrid
- move action buttons of the watch view to the right of the video info
- responsive tweaks and margin adjustments in the watch view
This commit is contained in:
Rigel Kent 2018-08-30 11:15:22 +02:00 committed by GitHub
parent 649fa07756
commit 2d9fea161f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 207 additions and 168 deletions

View File

@ -92,6 +92,7 @@
"ngx-clipboard": "11.1.3", "ngx-clipboard": "11.1.3",
"ngx-pipes": "^2.1.7", "ngx-pipes": "^2.1.7",
"ngx-qrcode2": "^0.0.9", "ngx-qrcode2": "^0.0.9",
"ngx-textarea-autosize": "^2.0.0",
"node-sass": "^4.9.3", "node-sass": "^4.9.3",
"npm-font-source-sans-pro": "^1.0.2", "npm-font-source-sans-pro": "^1.0.2",
"path-browserify": "^1.0.0", "path-browserify": "^1.0.0",

View File

@ -3,6 +3,7 @@
#search-video { #search-video {
@include peertube-input-text($search-input-width); @include peertube-input-text($search-input-width);
padding-left: 10px;
margin-right: 15px; margin-right: 15px;
padding-right: 40px; // For the search icon padding-right: 40px; // For the search icon
@ -10,6 +11,10 @@
color: #000; color: #000;
} }
&:focus::placeholder {
opacity: 0 !important;
}
@media screen and (max-width: 800px) { @media screen and (max-width: 800px) {
width: calc(100% - 150px); width: calc(100% - 150px);
} }

View File

@ -3,7 +3,8 @@
<img [src]="user.accountAvatarUrl" alt="Avatar" /> <img [src]="user.accountAvatarUrl" alt="Avatar" />
<div class="form-group"> <div class="form-group">
<textarea i18n-placeholder placeholder="Add comment..." formControlName="text" [ngClass]="{ 'input-error': formErrors['text'] }" <textarea i18n-placeholder placeholder="Add comment..." autosize
formControlName="text" [ngClass]="{ 'input-error': formErrors['text'] }"
(keyup.control.enter)="onValidKey()" (keyup.meta.enter)="onValidKey()" #textarea> (keyup.control.enter)="onValidKey()" (keyup.meta.enter)="onValidKey()" #textarea>
</textarea> </textarea>

View File

@ -22,6 +22,10 @@ form {
textarea { textarea {
@include peertube-textarea(100%, 60px); @include peertube-textarea(100%, 60px);
&:focus::placeholder {
opacity: 0;
}
} }
} }
} }

View File

@ -26,38 +26,30 @@
</div> </div>
<!-- Video information --> <!-- Video information -->
<div *ngIf="video" class="margin-content video-bottom"> <div *ngIf="video" class="container video-bottom">
<div class="video-info"> <div class="row fullWidth">
<div class="col-12 col-md-9 video-info">
<div class="video-info-first-row"> <div class="video-info-first-row">
<div> <div>
<div class="d-block d-sm-none"> <!-- only shown on small devices, has its conterpart for larger viewports below -->
<div class="video-info-name">{{ video.name }}</div> <div class="video-info-name">{{ video.name }}</div>
<div i18n class="video-info-date-views"> <div i18n class="video-info-date-views">
{{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views Published {{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views
</div>
</div> </div>
<div class="video-info-channel"> <div class="d-flex justify-content-between align-items-sm-end">
<a [routerLink]="[ '/video-channels', video.channel.name ]" i18n-title title="Go the channel page"> <div class="d-none d-sm-block">
{{ video.channel.displayName }} <div class="video-info-name">{{ video.name }}</div>
<img [src]="video.videoChannelAvatarUrl" alt="Video channel avatar" /> <div i18n class="video-info-date-views">
</a> Published {{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views
<my-subscribe-button [videoChannel]="video.channel" size="small"></my-subscribe-button>
</div>
<div class="video-info-by">
<a [routerLink]="[ '/accounts', video.byAccount ]" i18n-title title="Go to the account page">
<span i18n>By {{ video.byAccount }}</span>
<img [src]="video.accountAvatarUrl" alt="Account avatar" />
</a>
<my-help helpType="custom" i18n-customHtml customHtml="You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box <strong>@{{video.account.name}}@{{video.account.host}}</strong> and subscribe there."></my-help>
</div> </div>
</div> </div>
<div class="video-actions-rates"> <div class="video-actions-rates">
<div class="video-actions"> <div class="video-actions fullWidth justify-content-end">
<div <div
*ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()" *ngIf="isUserLoggedIn()" [ngClass]="{ 'activated': userRating === 'like' }" (click)="setLike()"
class="action-button action-button-like" role="button" [attr.aria-pressed]="userRating === 'like'" class="action-button action-button-like" role="button" [attr.aria-pressed]="userRating === 'like'"
@ -117,12 +109,37 @@
<div <div
class="video-info-likes-dislikes-bar" class="video-info-likes-dislikes-bar"
*ngIf="video.likes !== 0 || video.dislikes !== 0" [ngbTooltip]="likesBarTooltipText"> *ngIf="video.likes !== 0 || video.dislikes !== 0"
placement="bottom"
[ngbTooltip]="likesBarTooltipText">
<div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div> <div class="likes-bar" [ngStyle]="{ 'width.%': video.likesPercent }"></div>
</div> </div>
</div> </div>
</div> </div>
<div class="pt-3 border-top video-info-channel">
<a [routerLink]="[ '/video-channels', video.channel.name ]" i18n-title title="Go the channel page">
{{ video.channel.displayName }}
<img [src]="video.videoChannelAvatarUrl" alt="Video channel avatar" />
</a>
<my-subscribe-button [videoChannel]="video.channel" size="small"></my-subscribe-button>
</div>
<div class="video-info-by">
<a [routerLink]="[ '/accounts', video.byAccount ]" i18n-title title="Go to the account page">
<span i18n>By {{ video.byAccount }}</span>
<img [src]="video.accountAvatarUrl" alt="Account avatar" />
</a>
<my-help helpType="custom" i18n-customHtml customHtml="You can subscribe to this account via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type in the search box <strong>@{{video.account.name}}@{{video.account.host}}</strong> and subscribe there."></my-help>
</div>
</div>
</div>
<div class="video-info-description"> <div class="video-info-description">
<div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div> <div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div>
@ -183,7 +200,7 @@
<my-video-comments [video]="video" [user]="user"></my-video-comments> <my-video-comments [video]="video" [user]="user"></my-video-comments>
</div> </div>
<div class="other-videos"> <div class="ml-3 ml-sm-0 col-12 col-md-3 other-videos">
<div i18n class="title-page title-page-single"> <div i18n class="title-page title-page-single">
Other videos Other videos
</div> </div>
@ -193,13 +210,14 @@
</div> </div>
</div> </div>
</div> </div>
</div>
<div class="privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false"> <div class="privacy-concerns" *ngIf="hasAlreadyAcceptedPrivacyConcern === false">
<strong i18n>Friendly Reminder:</strong>
<div class="privacy-concerns-text"> <div class="privacy-concerns-text">
<strong i18n>Friendly Reminder: </strong>
<ng-container i18n> <ng-container i18n>
The sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. the sharing system used by this video implies that some technical information about your system (such as a public IP address) can be sent to other peers.
</ng-container> </ng-container>
<a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about/peertube">More information</a> <a i18n i18n-title title="Get more information" target="_blank" rel="noopener noreferrer" href="/about/peertube">More information</a>
</div> </div>

View File

@ -76,12 +76,9 @@
.video-bottom { .video-bottom {
margin-top: 40px; margin-top: 40px;
display: flex;
flex-grow: 1;
.video-info { .video-info {
flex-grow: 1; flex-grow: 1;
margin-right: 40px;
// Set min width for flex item // Set min width for flex item
min-width: 1px; min-width: 1px;
@ -284,10 +281,13 @@
} }
.video-info-likes-dislikes-bar { .video-info-likes-dislikes-bar {
height: 5px; $likes-bar-height: 2px;
height: $likes-bar-height;
margin-top: -$likes-bar-height;
width: 186px; width: 186px;
background-color: #E5E5E5; background-color: #E5E5E5;
margin-top: 25px; position: relative;
top: 10px;
.likes-bar { .likes-bar {
height: 100%; height: 100%;
@ -439,19 +439,14 @@
@media screen and (max-width: 1600px) { @media screen and (max-width: 1600px) {
.video-bottom { .video-bottom {
.video-info { .video-info {
margin-right: 20px;
.video-info-first-row { .video-info-first-row {
flex-direction: column; flex-direction: column;
margin-bottom: 30px; margin-bottom: 20px;
.video-actions-rates { .video-actions-rates {
margin-top: 20px; margin-top: 20px;
margin-bottom: 10px;
align-items: start; align-items: start;
.video-info-likes-dislikes-bar {
margin-top: 10px;
}
} }
} }

View File

@ -16,6 +16,7 @@ import { VideoWatchComponent } from './video-watch.component'
import { NgxQRCodeModule } from 'ngx-qrcode2' import { NgxQRCodeModule } from 'ngx-qrcode2'
import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap' import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
import { VideoBlacklistComponent } from '@app/videos/+video-watch/modal/video-blacklist.component' import { VideoBlacklistComponent } from '@app/videos/+video-watch/modal/video-blacklist.component'
import { TextareaAutosizeModule } from 'ngx-textarea-autosize'
@NgModule({ @NgModule({
imports: [ imports: [
@ -23,7 +24,8 @@ import { VideoBlacklistComponent } from '@app/videos/+video-watch/modal/video-bl
SharedModule, SharedModule,
ClipboardModule, ClipboardModule,
NgbTooltipModule, NgbTooltipModule,
NgxQRCodeModule NgxQRCodeModule,
TextareaAutosizeModule
], ],
declarations: [ declarations: [

View File

@ -61,6 +61,13 @@ label {
border-color: $red !important; border-color: $red !important;
} }
.fullWidth {
width: 100%;
margin-left: auto;
margin-right: auto;
max-width: initial;
}
.glyphicon-black { .glyphicon-black {
color: black; color: black;
} }

View File

@ -5127,6 +5127,12 @@ ngx-qrcode2@^0.0.9:
dependencies: dependencies:
qrcode "^0.8.2" qrcode "^0.8.2"
ngx-textarea-autosize@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ngx-textarea-autosize/-/ngx-textarea-autosize-2.0.0.tgz#70d0bf770ebd62b5609c6552233d29c304f92ab8"
dependencies:
tslib "^1.7.1"
ngx-window-token@^1.0.0: ngx-window-token@^1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/ngx-window-token/-/ngx-window-token-1.0.0.tgz#12acb174fbbcffa5c60b3fea5a6ea78cc3304793" resolved "https://registry.yarnpkg.com/ngx-window-token/-/ngx-window-token-1.0.0.tgz#12acb174fbbcffa5c60b3fea5a6ea78cc3304793"