aboutsummaryrefslogtreecommitdiff
path: root/js/controllers/elements/video-controller.js
blob: 44ba5aa148be5beb7692b8a049e45056f428a7b6 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
</copyright> */

var Montage = require("montage/core/core").Montage,
    ElementController = require("js/controllers/elements/element-controller").ElementController;

exports.VideoController = Montage.create(ElementController, {
    getProperty: {
        value: function(el, prop) {
            switch(prop) {
                case "src":
                case "poster":
                case "autoplay":
                case "controls":
                case "loop":
                case "muted":
                    return el.getAttribute(prop);
                default:
                    return ElementController.getProperty(el, prop);
            }
        }
    },

    setProperty: {
        value: function(el, p, value) {
            switch(p) {
                case "src":
                	
                	//TODO: Move this to the location where the element is created
                	el.addEventListener('canplay', function(e) {
						//TODO: Figure out why the video must be seeked to the end before pausing
  						var time = Math.ceil(this.duration);
  						//Trying to display the last frame (doing minus 2 seconds if long video)
  						if (time > 2) this.currentTime = time - 2;
  						else if (time > 1) this.currentTime = time - 1;
  						else this.currentTime = time || 0;
  						//Pauing video
  						this.pause();
  					}, false);
  					
                    el.setAttribute(p, value);
                    break;
                case "poster":
                    el.setAttribute(p, value);
                    break;
                case "autoplay":
                    value ? el.setAttribute(p, "autoplay") : el.removeAttribute(p);
                    break;
                case "preload":
                    value ? el.setAttribute(p, "preload") : el.removeAttribute(p);
                    break;
                case "controls":
                    value ? el.setAttribute(p, "controls") : el.removeAttribute(p);
                    break;
                case "loop":
                    value ? el.setAttribute(p, "loop") : el.removeAttribute(p);
                    break;
                case "muted":
                    value ? el.setAttribute(p, "muted") : el.removeAttribute(p);
                    break;
                default:
                    ElementController.setProperty(el, p, value);
            }
        }
    }
});