ruby_gallery 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +29 -1
- data/VERSION +1 -1
- data/app/.DS_Store +0 -0
- data/app/assets/images/border.png +0 -0
- data/app/assets/images/controls.png +0 -0
- data/app/assets/images/loading.gif +0 -0
- data/app/assets/images/loading_background.png +0 -0
- data/app/assets/images/overlay.png +0 -0
- data/app/assets/images/upload_processing.gif +0 -0
- data/app/assets/javascripts/jquery-ui.js +14987 -0
- data/app/assets/javascripts/jquery.colorbox.js +1037 -0
- data/app/assets/javascripts/ruby_gallery.js +71 -49
- data/app/assets/stylesheets/.DS_Store +0 -0
- data/app/assets/stylesheets/colorbox.css +93 -0
- data/app/assets/stylesheets/entypo.eot +0 -0
- data/app/assets/stylesheets/entypo.svg +13 -0
- data/app/assets/stylesheets/entypo.ttf +0 -0
- data/app/assets/stylesheets/entypo.woff +0 -0
- data/app/assets/stylesheets/ruby_gallery.css.scss +81 -60
- data/app/helpers/ruby_gallery/ruby_gallery_helper.rb +84 -12
- data/app/helpers/ruby_gallery/test_helper.rb +16 -0
- data/app/models/album_photo.rb +1 -2
- data/app/views/shared/_photo_box.html.erb +6 -0
- data/lib/generators/active_record/ruby_gallery_generator.rb +28 -4
- data/lib/generators/active_record/templates/album_photo_migration.rb +10 -5
- data/lib/generators/active_record/templates/migration.rb +3 -3
- data/lib/generators/ruby_gallery/install_generator.rb +54 -1
- data/lib/generators/ruby_gallery/orm_helpers.rb +44 -0
- data/lib/ruby_gallery.rb +6 -1
- data/lib/ruby_gallery/attachments_controller.rb +45 -0
- data/ruby_gallery.gemspec +21 -5
- metadata +22 -6
- data/app/controllers/attachments_controller.rb +0 -3
- data/app/models/album_attachment.rb +0 -3
- data/lib/generators/active_record/templates/album_attachment_migration.rb +0 -9
@@ -1,51 +1,73 @@
|
|
1
|
-
|
2
|
-
clearInterval(window.refeshWork);
|
3
|
-
window.refeshWork = null;
|
1
|
+
$(document).ready(function(){
|
4
2
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
data.submit();
|
20
|
-
} else {
|
21
|
-
alert("<%= t('details.please_upload_image_file')%>");
|
22
|
-
}
|
23
|
-
}
|
24
|
-
},
|
25
|
-
progressall: function(e, data){
|
26
|
-
// var progress = parseInt(data.loaded / data.total * 100, 10);
|
27
|
-
// $('#file_box ul#photos_album li.new-photo').find('#progress div.bar').css('width',progress + '%' );
|
28
|
-
},
|
29
|
-
done: function(e, data){
|
30
|
-
|
31
|
-
var report = '';
|
32
|
-
if(data.result != 'failed'){
|
33
|
-
var res = data.result;
|
34
|
-
$('span#upload_button span').html("<%= t('details.upload_picture') %>");
|
35
|
-
$('#file_box ul#photos_album li.new-photo').fadeOut('slow', function() {
|
36
|
-
|
37
|
-
$('#file_box ul#photos_album li.new-photo').remove();
|
38
|
-
$('#file_box ul#photos_album').append(res);
|
3
|
+
$(document.body).delegate("a.gallery-colorbox", "click", function(e){
|
4
|
+
$(this).colorbox({rel: "ruby_gallery"});
|
5
|
+
e.preventDefault();
|
6
|
+
});
|
7
|
+
|
8
|
+
$('ul.ruby-gallery-sortable').sortable({
|
9
|
+
stop: function(event, ui){
|
10
|
+
$('ul.ruby-gallery-sortable').children().each(function(index){
|
11
|
+
$(this).find('input[name="position-item"]').val(index);
|
12
|
+
});
|
13
|
+
var arr_pos = []
|
14
|
+
$(':hidden[name^="position-item"]').each(function(){
|
15
|
+
arr_pos.push($(this).val());
|
16
|
+
});
|
39
17
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
18
|
+
var arr_key = $("li.photo-cat").map(function(){
|
19
|
+
return this.getAttribute("key");
|
20
|
+
}).get();
|
21
|
+
var json_str = "";
|
22
|
+
for(var i = 0; i < arr_pos.length && arr_key.length; i ++ ) {
|
23
|
+
json_str += "{'id':'" + arr_key[i] + "', 'position':'" + arr_pos[i] + "'},"
|
24
|
+
}
|
25
|
+
var json = eval("[" + json_str + "]")
|
26
|
+
$.ajax({
|
27
|
+
url: $("ul#photos_album").attr("data_url"),
|
28
|
+
data: {'json': json},
|
29
|
+
type: "PUT",
|
30
|
+
success: function(res){
|
31
|
+
}
|
32
|
+
})
|
33
|
+
}
|
34
|
+
});
|
35
|
+
|
36
|
+
$(document.body).delegate('span.remove-photo', 'click', function(e){
|
37
|
+
var _this = this
|
38
|
+
$.ajax({
|
39
|
+
url: "/" + $('div.file-box').attr('data_model') + "/" + $('div.file-box').attr('model_id') + "/delete_photo?photo_id="+ $(this).attr('photo_id') ,
|
40
|
+
type: "DELETE",
|
41
|
+
success: function(e){
|
42
|
+
if(e == "ok"){
|
43
|
+
var dom = $(_this).parent().find("li.photo_" + $(_this).attr('photo_id') + "").selector.toString();
|
44
|
+
$(dom).remove();
|
45
|
+
}else{
|
46
|
+
|
47
|
+
}
|
48
|
+
}
|
49
|
+
});
|
50
|
+
e.preventDefault();
|
51
|
+
});
|
52
|
+
|
53
|
+
$(document.body).delegate('li.photo-cat a','mouseover',function(event){
|
54
|
+
$(this).parent().find('span.remove-photo').addClass('blur');
|
55
|
+
$(this).parent().find('span.remove-photo').removeClass('hide');
|
56
|
+
});
|
57
|
+
|
58
|
+
$(document.body).delegate('li.photo-cat a','mouseout',function(event){
|
59
|
+
$(this).parent().find('span.remove-photo').removeClass('blur');
|
60
|
+
$(this).parent().find('span.remove-photo').addClass('hide');
|
61
|
+
});
|
62
|
+
|
63
|
+
$(document.body).delegate('span.remove-photo','mouseover',function(event){
|
64
|
+
$(this).removeClass('blur');
|
65
|
+
$(this).removeClass('hide');
|
66
|
+
});
|
67
|
+
|
68
|
+
$(document.body).delegate('span.remove-photo','mouseout',function(event){
|
69
|
+
$(this).addClass('blur');
|
70
|
+
$(this).removeClass('hide');
|
71
|
+
|
72
|
+
});
|
73
|
+
});
|
Binary file
|
@@ -0,0 +1,93 @@
|
|
1
|
+
/*
|
2
|
+
Colorbox Core Style:
|
3
|
+
The following CSS is consistent between example themes and should not be altered.
|
4
|
+
*/
|
5
|
+
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
|
6
|
+
#cboxOverlay{position:fixed; width:100%; height:100%;}
|
7
|
+
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
|
8
|
+
#cboxContent{position:relative;}
|
9
|
+
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
|
10
|
+
#cboxTitle{margin:0;}
|
11
|
+
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
|
12
|
+
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
|
13
|
+
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none;}
|
14
|
+
.cboxIframe{width:100%; height:100%; display:block; border:0;}
|
15
|
+
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
|
16
|
+
|
17
|
+
/*
|
18
|
+
User Style:
|
19
|
+
Change the following styles to modify the appearance of Colorbox. They are
|
20
|
+
ordered & tabbed in a way that represents the nesting of the generated HTML.
|
21
|
+
*/
|
22
|
+
#cboxOverlay{background:url(/assets/overlay.png) repeat 0 0;}
|
23
|
+
#colorbox{outline:0;}
|
24
|
+
#cboxTopLeft{width:21px; height:21px; background:url(/assets/controls.png) no-repeat -101px 0;}
|
25
|
+
#cboxTopRight{width:21px; height:21px; background:url(/assets/controls.png) no-repeat -130px 0;}
|
26
|
+
#cboxBottomLeft{width:21px; height:21px; background:url(/assets/controls.png) no-repeat -101px -29px;}
|
27
|
+
#cboxBottomRight{width:21px; height:21px; background:url(/assets/controls.png) no-repeat -130px -29px;}
|
28
|
+
#cboxMiddleLeft{width:21px; background:url(/assets/controls.png) left top repeat-y;}
|
29
|
+
#cboxMiddleRight{width:21px; background:url(/assets/controls.png) right top repeat-y;}
|
30
|
+
#cboxTopCenter{height:21px; background:url(/assets/border.png) 0 0 repeat-x;}
|
31
|
+
#cboxBottomCenter{height:21px; background:url(/assets/border.png) 0 -29px repeat-x;}
|
32
|
+
#cboxContent{background:#fff; overflow:hidden;}
|
33
|
+
.cboxIframe{background:#fff;}
|
34
|
+
#cboxError{padding:50px; border:1px solid #ccc;}
|
35
|
+
#cboxLoadedContent{margin-bottom:28px;}
|
36
|
+
#cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
|
37
|
+
#cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
|
38
|
+
#cboxLoadingOverlay{background:url(/assets/loading_background.png) no-repeat center center;}
|
39
|
+
#cboxLoadingGraphic{background:url(/assets/loading.gif) no-repeat center center;}
|
40
|
+
|
41
|
+
/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
|
42
|
+
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
|
43
|
+
|
44
|
+
/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
|
45
|
+
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}
|
46
|
+
|
47
|
+
#cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
|
48
|
+
#cboxPrevious{position:absolute; bottom:0; left:0; background:url(/assets/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
|
49
|
+
#cboxPrevious:hover{background-position:-75px -25px;}
|
50
|
+
#cboxNext{position:absolute; bottom:0; left:27px; background:url(/assets/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
|
51
|
+
#cboxNext:hover{background-position:-50px -25px;}
|
52
|
+
#cboxClose{position:absolute; bottom:0; right:0; background:url(/assets/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
|
53
|
+
#cboxClose:hover{background-position:-25px -25px;}
|
54
|
+
|
55
|
+
/*
|
56
|
+
The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
|
57
|
+
when an alpha filter (opacity change) is set on the element or ancestor element. This style is not applied to or needed in IE9.
|
58
|
+
See: http://jacklmoore.com/notes/ie-transparency-problems/
|
59
|
+
*/
|
60
|
+
.cboxIE #cboxTopLeft,
|
61
|
+
.cboxIE #cboxTopCenter,
|
62
|
+
.cboxIE #cboxTopRight,
|
63
|
+
.cboxIE #cboxBottomLeft,
|
64
|
+
.cboxIE #cboxBottomCenter,
|
65
|
+
.cboxIE #cboxBottomRight,
|
66
|
+
.cboxIE #cboxMiddleLeft,
|
67
|
+
.cboxIE #cboxMiddleRight {
|
68
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
|
69
|
+
}
|
70
|
+
|
71
|
+
/*
|
72
|
+
The following provides PNG transparency support for IE6
|
73
|
+
Feel free to remove this and the /ie6/ directory if you have dropped IE6 support.
|
74
|
+
*/
|
75
|
+
.cboxIE6 #cboxTopLeft{background:url(/assets/ie6/borderTopLeft.png);}
|
76
|
+
.cboxIE6 #cboxTopCenter{background:url(/assets/ie6/borderTopCenter.png);}
|
77
|
+
.cboxIE6 #cboxTopRight{background:url(/assets/ie6/borderTopRight.png);}
|
78
|
+
.cboxIE6 #cboxBottomLeft{background:url(/assets/ie6/borderBottomLeft.png);}
|
79
|
+
.cboxIE6 #cboxBottomCenter{background:url(/assets/ie6/borderBottomCenter.png);}
|
80
|
+
.cboxIE6 #cboxBottomRight{background:url(/assets/ie6/borderBottomRight.png);}
|
81
|
+
.cboxIE6 #cboxMiddleLeft{background:url(/assets/ie6/borderMiddleLeft.png);}
|
82
|
+
.cboxIE6 #cboxMiddleRight{background:url(/assets/ie6/borderMiddleRight.png);}
|
83
|
+
|
84
|
+
.cboxIE6 #cboxTopLeft,
|
85
|
+
.cboxIE6 #cboxTopCenter,
|
86
|
+
.cboxIE6 #cboxTopRight,
|
87
|
+
.cboxIE6 #cboxBottomLeft,
|
88
|
+
.cboxIE6 #cboxBottomCenter,
|
89
|
+
.cboxIE6 #cboxBottomRight,
|
90
|
+
.cboxIE6 #cboxMiddleLeft,
|
91
|
+
.cboxIE6 #cboxMiddleRight {
|
92
|
+
_behavior: expression(this.src = this.src ? this.src : this.currentStyle.backgroundImage.split('"')[1], this.style.background = "none", this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + this.src + ", sizingMethod='scale')");
|
93
|
+
}
|
Binary file
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" > <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%">
|
2
|
+
<defs >
|
3
|
+
<font id="entypo" horiz-adv-x="508" ><font-face
|
4
|
+
font-family="Entypo"
|
5
|
+
units-per-em="1000"
|
6
|
+
panose-1="0 0 0 0 0 0 0 0 0 0"
|
7
|
+
ascent="750"
|
8
|
+
descent="-250"
|
9
|
+
alphabetic="0" />
|
10
|
+
<missing-glyph horiz-adv-x="500" />
|
11
|
+
</font>
|
12
|
+
</defs>
|
13
|
+
</svg>
|
Binary file
|
Binary file
|
@@ -1,93 +1,114 @@
|
|
1
1
|
@import "bourbon";
|
2
2
|
|
3
|
+
@font-face {
|
4
|
+
font-family: "entypo";
|
5
|
+
src: url('/assets/entypo.eot');
|
6
|
+
src: url('/assets/entypo.eot?#iefix') format('embedded-opentype'),
|
7
|
+
url('/assets/entypo.woff') format('woff'),
|
8
|
+
url('/assets/entypo.ttf') format('truetype'),
|
9
|
+
url('/assets/entypo.svg#EntypoRegular') format('svg');
|
10
|
+
font-weight: normal;
|
11
|
+
font-style: normal;
|
12
|
+
}
|
13
|
+
|
14
|
+
span.entypo-icon-1{
|
15
|
+
font-family: "entypo";
|
16
|
+
font-size: 3em;
|
17
|
+
color: #004F67;
|
18
|
+
cursor: pointer;
|
19
|
+
}
|
20
|
+
|
3
21
|
form.fileupload{
|
4
|
-
width:
|
22
|
+
width:75px;
|
5
23
|
float:left;
|
6
24
|
}
|
7
25
|
|
8
26
|
div.upload-box{
|
9
27
|
display: block;
|
10
28
|
margin: 0 auto !important;
|
11
|
-
width:
|
29
|
+
width: 450px !important;
|
30
|
+
div.legend {
|
31
|
+
border-bottom: 3px solid #bbb;
|
32
|
+
margin-bottom: 10px;
|
33
|
+
color: #999;
|
34
|
+
font-weight: bold;
|
35
|
+
font-size: 14px;
|
36
|
+
}
|
12
37
|
}
|
13
38
|
|
14
39
|
|
15
40
|
div.file-box{
|
16
|
-
|
17
41
|
display:block;
|
18
42
|
margin-bottom: 5px;
|
19
43
|
height:185px;
|
20
|
-
|
44
|
+
width: 100%;
|
45
|
+
ul {
|
21
46
|
@include clearfix;
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
}
|
28
|
-
strong {
|
29
|
-
float:left;
|
30
|
-
margin-top: 20px;
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
ul.activities-button-list{
|
38
|
-
display:block;
|
39
|
-
width:305px;
|
40
|
-
margin-top:10px;
|
41
|
-
margin-left:98px;
|
42
|
-
li.btn{
|
43
|
-
display:block;
|
44
|
-
float:left;
|
45
|
-
width: 100px;
|
46
|
-
height:20px;
|
47
|
-
@include linear-gradient(lighten(#80C66D, 5%), darken(#80C66D, 10%));
|
48
|
-
border: 1px solid #ccc;
|
49
|
-
border-left:none;
|
50
|
-
padding-top: 5px;
|
51
|
-
text-align:center;
|
52
|
-
color:#fff;
|
53
|
-
&:hover{
|
54
|
-
cursor:pointer;
|
55
|
-
}
|
47
|
+
width: 100%;
|
48
|
+
height: 275px;
|
49
|
+
overflow-y: scroll;
|
50
|
+
list-style: none;
|
51
|
+
display: inline-block;
|
56
52
|
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
53
|
+
border: 1px solid #999;
|
54
|
+
@include box-shadow(1px 3px 5px 0px #999);
|
55
|
+
li.photo-cat {
|
56
|
+
position: relative;
|
57
|
+
float: left;
|
58
|
+
width: 130px;
|
59
|
+
height: 125px;
|
60
|
+
margin-top: 10px;
|
61
|
+
text-align: center;
|
62
|
+
span.remove-photo {
|
63
|
+
position: absolute;
|
64
|
+
top: 5px ;
|
65
|
+
right: 10px;
|
66
|
+
}
|
67
|
+
a.gallery-colorbox{
|
68
|
+
text-decoration: none;
|
69
|
+
img{
|
70
|
+
@include box-shadow(1px 0px 3px 0px #999);
|
71
|
+
}
|
72
|
+
}
|
65
73
|
}
|
66
74
|
}
|
67
|
-
|
68
|
-
li.btn.first{
|
69
|
-
border-left: 1px solid #ccc;
|
70
|
-
border-radius: 5px 0px 0px 5px;
|
71
|
-
}
|
72
|
-
|
73
|
-
li.btn.last{
|
74
|
-
border-left:none;
|
75
|
-
border-radius: 0px 5px 5px 0px;
|
76
|
-
|
77
|
-
}
|
78
|
-
|
79
75
|
}
|
80
76
|
|
81
77
|
span.upload-button {
|
82
78
|
float:none;
|
83
79
|
@include button(pill);
|
80
|
+
background: green;
|
84
81
|
}
|
85
82
|
|
86
|
-
|
87
|
-
|
83
|
+
div.pic-icon{
|
84
|
+
background: url("/assets/upload_processing.gif");
|
85
|
+
margin:45px;
|
86
|
+
width:35px;
|
87
|
+
height:35px;
|
88
88
|
}
|
89
89
|
|
90
|
+
|
90
91
|
span.upload-button.have-file{
|
91
92
|
float:none;
|
92
93
|
@include button(pill,#FCF0BF);
|
94
|
+
background: red;
|
95
|
+
}
|
96
|
+
|
97
|
+
.hide {
|
98
|
+
display: none;
|
99
|
+
}
|
100
|
+
|
101
|
+
.blur{
|
102
|
+
opacity:0.3;
|
103
|
+
}
|
104
|
+
|
105
|
+
.close-link {
|
106
|
+
text-decoration: none;
|
107
|
+
color: #2D67C4 !important;
|
108
|
+
|
109
|
+
&:hover{
|
110
|
+
text-decoration: none;
|
111
|
+
color: #2D67C4 !important;
|
112
|
+
background: none;
|
113
|
+
}
|
93
114
|
}
|
@@ -1,25 +1,97 @@
|
|
1
1
|
module RubyGallery::RubyGalleryHelper
|
2
2
|
def show_gallery_images(model_name, opts={})
|
3
3
|
object = model_name.to_s.singularize.classify.constantize.find(params[:id])
|
4
|
-
|
5
|
-
|
4
|
+
opts = {reorder: true, multiple_upload: true}.merge(opts)
|
5
|
+
content = ""
|
6
|
+
content += content_tag(:div, class: "upload-box") do
|
7
|
+
[content_tag(:div, 'Upload album', class: "legend"),
|
6
8
|
content_tag(:div, class: "form-box") do
|
7
|
-
[content_tag(:form, id: "fileupload", class: "fileupload", method: "POST", enctype: "multipart/form-data", action: "/#{model_name}") do
|
8
|
-
content_tag(:span, id: "upload_button", class: "upload-button btn btn-success fileinput-button") do
|
9
|
+
[content_tag(:form, id: "fileupload", class: "fileupload", method: "POST", enctype: "multipart/form-data", action: "/#{model_name}/upload_album?id=#{params[:id]}", multipart: true) do
|
10
|
+
content_tag(:span, id: "upload_button", class: "upload-button btn btn-success fileinput-button", status: "") do
|
9
11
|
[content_tag(:i, "", class: "icon-plus icon-white"),
|
10
|
-
content_tag(:span, "Upload
|
11
|
-
tag(:input, class: "upload-button-input", type: :file, multiple: "")].join.html_safe
|
12
|
+
content_tag(:span, "Upload"),
|
13
|
+
tag(:input, class: "upload-button-input", type: :file, multiple: "multiple", name: "file[]")].join.html_safe
|
12
14
|
end
|
13
15
|
end,
|
14
|
-
content_tag(:a, "Close", class: "
|
16
|
+
content_tag(:a, "Close", class: "close-link", href: "#")].join.html_safe
|
15
17
|
end].join.html_safe +
|
16
|
-
|
17
|
-
content_tag(:div , id: "file_box", class: "file-box") do
|
18
|
-
|
18
|
+
|
19
|
+
[content_tag(:div , id: "file_box", class: "file-box", data_model: "#{model_name}", model_id: "#{object.id}") do
|
20
|
+
content_tag(:ul, id: "photos_album", class: "album #{opts[:reorder] ? "ruby-gallery-sortable" : ""}", data_url: "/#{model_name}/update_ruby_gallery_position?id=#{object.id}") do
|
19
21
|
|
22
|
+
if object.nil? || object.album_photos.size == 0
|
23
|
+
content_tag(:span, "No file selected", id: "no_file")
|
24
|
+
else
|
25
|
+
img_array = []
|
26
|
+
object.album_photos.order("position ASC").each do |photo|
|
27
|
+
img_array.push(content_tag(:li, class: "photo-cat photo_#{photo.id}" , key: "#{photo.id}") do
|
28
|
+
[content_tag(:span, raw("✖"), class: "entypo-icon-1 remove-photo hide", photo_id: photo.id),
|
29
|
+
content_tag(:a, class: "gallery-colorbox", href: "#{photo.photo.url(:original)}") do
|
30
|
+
tag(:img, src: photo.photo.url(:medium), width: '120', height: '120', rel: "ruby_gallery")
|
31
|
+
end,
|
32
|
+
tag(:input, type: :hidden, name: "position-item", class: "item-position", value: "#{photo.position}")
|
33
|
+
].join.html_safe
|
34
|
+
end)
|
35
|
+
end
|
36
|
+
img_array.join.html_safe # conclude what to be displayed
|
37
|
+
end
|
20
38
|
end
|
21
|
-
end
|
22
|
-
|
39
|
+
end].join.html_safe
|
23
40
|
end
|
41
|
+
|
42
|
+
content += javascript_tag(%Q[
|
43
|
+
|
44
|
+
function renderPhoto(photoResult) {
|
45
|
+
return function() {
|
46
|
+
$('#file_box ul#photos_album li.new-photo').remove();
|
47
|
+
$('#file_box ul#photos_album').append(photoResult);
|
48
|
+
}
|
49
|
+
}
|
50
|
+
$(function () {
|
51
|
+
|
52
|
+
|
53
|
+
$('#fileupload').fileupload({
|
54
|
+
dropZone: $('#fileupload'),
|
55
|
+
progressInterval: 20,
|
56
|
+
add: function(e,data){
|
57
|
+
if ($('span#upload_button').attr('status') == 'process'){
|
58
|
+
return false;
|
59
|
+
} else {
|
60
|
+
var types = /(.)(png|jpg|gif|jpeg)$/i;
|
61
|
+
var file = data.files[0];
|
62
|
+
if (types.test(file.type) || types.test(file.name) ){
|
63
|
+
$('span.upload-button span').html("processing");
|
64
|
+
$("span#no_285.giffile").remove();
|
65
|
+
$("span#no_file").remove();
|
66
|
+
$('#file_box ul#photos_album').append("<li class='photo-cat new-photo' ><div id='progress' class='pic-icon' ></div></li>");
|
67
|
+
data.submit();
|
68
|
+
} else {
|
69
|
+
alert("Please upload image files");
|
70
|
+
}
|
71
|
+
}
|
72
|
+
},
|
73
|
+
progressall: function(e, data){
|
74
|
+
var progress = parseInt(data.loaded / data.total * 100, 10);
|
75
|
+
$('#file_box ul#photos_album li.new-photo').find('#progress div.bar').css('width',progress + '%' );
|
76
|
+
},
|
77
|
+
done: function(e, data){
|
78
|
+
var report = '';
|
79
|
+
if(data.result != 'failed'){
|
80
|
+
$('span#upload_button span').html("Upload");
|
81
|
+
var fn = renderPhoto(data.result);
|
82
|
+
$('#file_box ul#photos_album li.new-photo').fadeOut();
|
83
|
+
fn.call();
|
84
|
+
} else {
|
85
|
+
$('#file_box ul#photos_album li.new-photo').html("Upload failed!");
|
86
|
+
var t = setTimeout(function(){
|
87
|
+
$('#file_box ul#photos_album li.new-photo').remove();
|
88
|
+
}, 2000);
|
89
|
+
}
|
90
|
+
}
|
91
|
+
});
|
92
|
+
});
|
93
|
+
])
|
94
|
+
|
95
|
+
return content.html_safe
|
24
96
|
end
|
25
97
|
end
|