import {Media} from '../Media'; import {MediaDTO} from '../../../../common/entities/MediaDTO'; import {OrientationTypes} from 'ts-exif-parser'; import {PhotoDTO} from '../../../../common/entities/PhotoDTO'; import {VideoDTO} from '../../../../common/entities/VideoDTO'; export class GridMedia extends Media { constructor(media: MediaDTO, renderWidth: number, renderHeight: number, public rowId: number) { super(media, renderWidth, renderHeight); } public get Orientation(): OrientationTypes { return (this.media).metadata.orientation || OrientationTypes.TOP_LEFT; } isPhoto(): boolean { return MediaDTO.isPhoto(this.media); } isVideo(): boolean { return MediaDTO.isVideo(this.media); } get Video(): VideoDTO { return this.media; } }