mirror of https://github.com/Chocobozzz/PeerTube
24 lines
639 B
TypeScript
24 lines
639 B
TypeScript
import { Component, Input } from '@angular/core'
|
|
|
|
export type DropdownAction<T> = {
|
|
label?: string
|
|
handler?: (T: any) => any
|
|
linkBuilder?: (T: any) => (string | number)[]
|
|
isDisplayed?: (T: any) => boolean
|
|
}
|
|
|
|
@Component({
|
|
selector: 'my-action-dropdown',
|
|
styleUrls: [ './action-dropdown.component.scss' ],
|
|
templateUrl: './action-dropdown.component.html'
|
|
})
|
|
|
|
export class ActionDropdownComponent<T> {
|
|
@Input() actions: DropdownAction<T>[] = []
|
|
@Input() entry: T
|
|
@Input() placement = 'bottom-left'
|
|
@Input() buttonSize: 'normal' | 'small' = 'normal'
|
|
@Input() label: string
|
|
@Input() theme: 'orange' | 'grey' = 'grey'
|
|
}
|