summaryrefslogtreecommitdiff
blob: 989b1e1fe078242712c4008c5a8d99ebd3ba4ca0 (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
/* global Site_Icon_Crop_Data, jQuery */
(function($) {
	var jcrop_api, Site_Icon_Crop;
	jcrop_api = {};
	Site_Icon_Crop = {

		updateCoords : function ( coords ) {

			$('#crop-x').val( coords.x );
			$('#crop-y').val( coords.y );
			$('#crop-width').val( coords.w );
			$('#crop-height').val( coords.h );

			Site_Icon_Crop.showPreview( coords );
		},

		showPreview : function( coords ){
			var rx, ry, crop_image, home_icon, preview_rx, preview_ry, favicon;
			rx = 64 / coords.w;
			ry = 64 / coords.h;
			crop_image = $('#crop-image');
			home_icon = $('#preview-homeicon');
			home_icon.css({
				width: Math.round(rx * crop_image.attr( 'width' ) ) + 'px',
				height: Math.round(ry * crop_image.attr( 'height' ) ) + 'px',
				marginLeft: '-' + Math.round(rx * coords.x) + 'px',
				marginTop: '-' + Math.round(ry * coords.y) + 'px'
			});
			preview_rx = 16 / coords.w;
			preview_ry = 16 / coords.h;
			favicon = $('#preview-favicon');
			favicon.css({
				width: Math.round( preview_rx *  crop_image.attr( 'width' ) ) + 'px',
				height: Math.round( preview_ry * crop_image.attr( 'height' ) ) + 'px',
				marginLeft: '-' + Math.round( preview_rx * coords.x ) + 'px',
				marginTop: '-' + Math.floor( preview_ry* coords.y ) + 'px'
			});
		},

		ready: function() {
			jcrop_api = $.Jcrop('#crop-image');
			jcrop_api.setOptions({
				aspectRatio: 1,
				onSelect: Site_Icon_Crop.updateCoords,
				onChange: Site_Icon_Crop.updateCoords,
				minSize: [ Site_Icon_Crop_Data.min_size, Site_Icon_Crop_Data.min_size ]
			});
			jcrop_api.animateTo([Site_Icon_Crop_Data.init_x, Site_Icon_Crop_Data.init_y, Site_Icon_Crop_Data.init_size, Site_Icon_Crop_Data.init_size]);
		}

	};

	Site_Icon_Crop.ready();

})(jQuery);