diff options
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/misc/button.component.scss | 27 | ||||
-rw-r--r-- | client/src/app/shared/misc/delete-button.component.html | 4 | ||||
-rw-r--r-- | client/src/app/shared/misc/delete-button.component.ts | 10 | ||||
-rw-r--r-- | client/src/app/shared/misc/edit-button.component.html | 4 | ||||
-rw-r--r-- | client/src/app/shared/misc/edit-button.component.ts | 11 | ||||
-rw-r--r-- | client/src/app/shared/misc/utils.ts | 5 | ||||
-rw-r--r-- | client/src/app/shared/shared.module.ts | 6 |
7 files changed, 67 insertions, 0 deletions
diff --git a/client/src/app/shared/misc/button.component.scss b/client/src/app/shared/misc/button.component.scss new file mode 100644 index 000000000..5fcae4f10 --- /dev/null +++ b/client/src/app/shared/misc/button.component.scss | |||
@@ -0,0 +1,27 @@ | |||
1 | .action-button { | ||
2 | @include peertube-button-link; | ||
3 | |||
4 | font-size: 15px; | ||
5 | font-weight: $font-semibold; | ||
6 | color: #585858; | ||
7 | background-color: #E5E5E5; | ||
8 | |||
9 | &:hover { | ||
10 | background-color: #EFEFEF; | ||
11 | } | ||
12 | |||
13 | .icon { | ||
14 | @include icon(21px); | ||
15 | |||
16 | position: relative; | ||
17 | top: -2px; | ||
18 | |||
19 | &.icon-edit { | ||
20 | background-image: url('../../../assets/images/global/edit.svg'); | ||
21 | } | ||
22 | |||
23 | &.icon-delete-grey { | ||
24 | background-image: url('../../../assets/images/global/delete-grey.svg'); | ||
25 | } | ||
26 | } | ||
27 | } | ||
diff --git a/client/src/app/shared/misc/delete-button.component.html b/client/src/app/shared/misc/delete-button.component.html new file mode 100644 index 000000000..3db483882 --- /dev/null +++ b/client/src/app/shared/misc/delete-button.component.html | |||
@@ -0,0 +1,4 @@ | |||
1 | <span class="action-button action-button-delete" > | ||
2 | <span class="icon icon-delete-grey"></span> | ||
3 | Delete | ||
4 | </span> | ||
diff --git a/client/src/app/shared/misc/delete-button.component.ts b/client/src/app/shared/misc/delete-button.component.ts new file mode 100644 index 000000000..e04039f69 --- /dev/null +++ b/client/src/app/shared/misc/delete-button.component.ts | |||
@@ -0,0 +1,10 @@ | |||
1 | import { Component } from '@angular/core' | ||
2 | |||
3 | @Component({ | ||
4 | selector: 'my-delete-button', | ||
5 | styleUrls: [ './button.component.scss' ], | ||
6 | templateUrl: './delete-button.component.html' | ||
7 | }) | ||
8 | |||
9 | export class DeleteButtonComponent { | ||
10 | } | ||
diff --git a/client/src/app/shared/misc/edit-button.component.html b/client/src/app/shared/misc/edit-button.component.html new file mode 100644 index 000000000..6e9564bd7 --- /dev/null +++ b/client/src/app/shared/misc/edit-button.component.html | |||
@@ -0,0 +1,4 @@ | |||
1 | <a class="action-button" [routerLink]="routerLink"> | ||
2 | <span class="icon icon-edit"></span> | ||
3 | Edit | ||
4 | </a> | ||
diff --git a/client/src/app/shared/misc/edit-button.component.ts b/client/src/app/shared/misc/edit-button.component.ts new file mode 100644 index 000000000..201a618ec --- /dev/null +++ b/client/src/app/shared/misc/edit-button.component.ts | |||
@@ -0,0 +1,11 @@ | |||
1 | import { Component, Input } from '@angular/core' | ||
2 | |||
3 | @Component({ | ||
4 | selector: 'my-edit-button', | ||
5 | styleUrls: [ './button.component.scss' ], | ||
6 | templateUrl: './edit-button.component.html' | ||
7 | }) | ||
8 | |||
9 | export class EditButtonComponent { | ||
10 | @Input() routerLink = [] | ||
11 | } | ||
diff --git a/client/src/app/shared/misc/utils.ts b/client/src/app/shared/misc/utils.ts index 2b5c3686e..df9e0381a 100644 --- a/client/src/app/shared/misc/utils.ts +++ b/client/src/app/shared/misc/utils.ts | |||
@@ -13,6 +13,11 @@ function getParameterByName (name: string, url: string) { | |||
13 | return decodeURIComponent(results[2].replace(/\+/g, ' ')) | 13 | return decodeURIComponent(results[2].replace(/\+/g, ' ')) |
14 | } | 14 | } |
15 | 15 | ||
16 | function viewportHeight () { | ||
17 | return Math.max(document.documentElement.clientHeight, window.innerHeight || 0) | ||
18 | } | ||
19 | |||
16 | export { | 20 | export { |
21 | viewportHeight, | ||
17 | getParameterByName | 22 | getParameterByName |
18 | } | 23 | } |
diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index 74f6f579d..d0e163f69 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts | |||
@@ -12,6 +12,8 @@ import { SharedModule as PrimeSharedModule } from 'primeng/components/common/sha | |||
12 | import { DataTableModule } from 'primeng/components/datatable/datatable' | 12 | import { DataTableModule } from 'primeng/components/datatable/datatable' |
13 | 13 | ||
14 | import { AUTH_INTERCEPTOR_PROVIDER } from './auth' | 14 | import { AUTH_INTERCEPTOR_PROVIDER } from './auth' |
15 | import { DeleteButtonComponent } from './misc/delete-button.component' | ||
16 | import { EditButtonComponent } from './misc/edit-button.component' | ||
15 | import { FromNowPipe } from './misc/from-now.pipe' | 17 | import { FromNowPipe } from './misc/from-now.pipe' |
16 | import { LoaderComponent } from './misc/loader.component' | 18 | import { LoaderComponent } from './misc/loader.component' |
17 | import { NumberFormatterPipe } from './misc/number-formatter.pipe' | 19 | import { NumberFormatterPipe } from './misc/number-formatter.pipe' |
@@ -44,6 +46,8 @@ import { VideoService } from './video/video.service' | |||
44 | LoaderComponent, | 46 | LoaderComponent, |
45 | VideoThumbnailComponent, | 47 | VideoThumbnailComponent, |
46 | VideoMiniatureComponent, | 48 | VideoMiniatureComponent, |
49 | DeleteButtonComponent, | ||
50 | EditButtonComponent, | ||
47 | NumberFormatterPipe, | 51 | NumberFormatterPipe, |
48 | FromNowPipe | 52 | FromNowPipe |
49 | ], | 53 | ], |
@@ -66,6 +70,8 @@ import { VideoService } from './video/video.service' | |||
66 | LoaderComponent, | 70 | LoaderComponent, |
67 | VideoThumbnailComponent, | 71 | VideoThumbnailComponent, |
68 | VideoMiniatureComponent, | 72 | VideoMiniatureComponent, |
73 | DeleteButtonComponent, | ||
74 | EditButtonComponent, | ||
69 | 75 | ||
70 | NumberFormatterPipe, | 76 | NumberFormatterPipe, |
71 | FromNowPipe | 77 | FromNowPipe |