blob: 626e4ec839e4f2d5bd1f13eae2345087f8c08bcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import { BasicField } from "./BasicField";
import { Field, FieldId } from "./Field";
import { Types } from "../server/Message";
export class VideoField extends BasicField<URL> {
constructor(data: URL | undefined = undefined, id?: FieldId, save: boolean = true) {
super(data == undefined ? new URL("http://techslides.com/demos/sample-videos/small.mp4") : data, save, id);
}
toString(): string {
return this.Data.href;
}
ToScriptString(): string {
return `new VideoField("${this.Data}")`;
}
Copy(): Field {
return new VideoField(this.Data);
}
ToJson(): { type: Types, data: string, _id: string } {
return {
type: Types.Video,
data: this.Data.href,
_id: this.Id
}
}
}
|