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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
(function (FMS, Backbone, _, $) {
_.extend( FMS, {
PhotoView: FMS.FMSView.extend({
template: 'photo',
id: 'photo-page',
prev: 'around',
next: 'details',
events: {
'pagehide': 'destroy',
'pagebeforeshow': 'beforeDisplay',
'pageshow': 'afterDisplay',
'vclick .ui-btn-left': 'onClickButtonPrev',
'vclick .ui-btn-right': 'onClickButtonNext',
'vclick #id_photo_button': 'takePhoto',
'vclick #id_existing': 'addPhoto',
'vclick #id_del_photo_button': 'deletePhoto'
},
beforeDisplay: function() {
this.fixPageHeight();
if ( this.model.get('file') ) {
$('#id_photo_button').parents('.ui-btn').hide();
$('#id_existing').parents('.ui-btn').hide();
} else {
this.$('#id_del_photo_button').parents('.ui-btn').hide();
}
},
takePhoto: function(e) {
e.preventDefault();
var that = this;
navigator.camera.getPicture( function(imgURI) { that.addPhotoSuccess(imgURI); }, function(error) { that.addPhotoFail(error); }, { saveToPhotoAlbum: true, quality: 49, destinationType: Camera.DestinationType.FILE_URI, sourceType: navigator.camera.PictureSourceType.CAMERA, correctOrientation: true });
},
addPhoto: function(e) {
e.preventDefault();
var that = this;
navigator.camera.getPicture( function(imgURI) { that.addPhotoSuccess(imgURI); }, function(error) { that.addPhotoFail(error); }, { saveToPhotoAlbum: false, quality: 49, destinationType: Camera.DestinationType.FILE_URI, sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY, correctOrientation: true });
},
addPhotoSuccess: function(imgURI) {
console.log(imgURI);
var move;
// on iOS the photos go into a temp folder in the apps own filespace so we
// can move them, and indeed have to as the tmp space is cleaned out by the OS
// so draft reports might have their images removed. on android you access the
// images where they are stored on the filesystem so if you move, and then delete
// them, you are moving and deleting the only copy of them which is likely to be
// surprising and unwelcome so we copy them instead.
var fileName = CONFIG.NAMESPACE + '_' + this.model.cid + '_' + moment().unix() + '.jpg';
if ( FMS.isAndroid ) {
move = FMS.files.copyURI( imgURI, fileName );
} else {
move = FMS.files.moveURI( imgURI, fileName );
}
var that = this;
move.done( function( file ) {
$('#photo').attr('src', file.toURL()).addClass('small').removeClass('placeholder');
that.model.set('file', file.toURL());
FMS.saveCurrentDraft();
$('#photo-next-btn .ui-btn-text').text('Next');
$('#id_del_photo_button').parents('.ui-btn').show();
$('#id_photo_button').parents('.ui-btn').hide();
$('#id_existing').parents('.ui-btn').hide();
});
move.fail( function() { that.addPhotoFail(); } );
},
addPhotoFail: function() {
if ( message != 'no image selected' &&
message != 'Selection cancelled.' &&
message != 'Camera cancelled.' ) {
this.displayAlert(FMS.strings.photo_failed);
}
},
deletePhoto: function(e) {
e.preventDefault();
var that = this;
var del = FMS.files.deleteURI( this.model.get('file') );
del.done( function() {
that.model.set('file', '');
FMS.saveCurrentDraft();
$('#photo').attr('src', 'images/placeholder-photo.png').addClass('placeholder').removeClass('small');
$('#photo-next-btn .ui-btn-text').text('Skip');
$('#id_del_photo_button').parents('.ui-btn').hide();
$('#id_photo_button').parents('.ui-btn').show();
$('#id_existing').parents('.ui-btn').show();
});
}
})
});
})(FMS, Backbone, _, $);
|