dgw_gallery 0.2.4 → 0.2.8
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.
- checksums.yaml +4 -4
- data/README.md +38 -2
- data/app/assets/stylesheets/dgw_gallery/dgw_gallery_style.css +89 -36624
- data/app/views/gallery/_carousel.html.erb +26 -0
- data/app/views/gallery/_form.html.erb +1 -1
- data/app/views/gallery/index.html.erb +7 -3
- data/app/views/gallery/manage.html.erb +26 -8
- data/app/views/gallery/new.html.erb +3 -0
- data/lib/dgw_gallery/version.rb +1 -1
- data/lib/tasks/dgw_gallery_tasks.rake +11 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ce94c5d92d8b19e40bac736ba5637adcd767135a591fca6b33995223ee3f593
|
4
|
+
data.tar.gz: 82596aa468e8ed843d148080f5039f3d7639962bf3fb4c2940bcbe8fe324cb24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c9e43f641b20dd184d47372a36a702e2dc554d06d4db48a8d917b6a9f24fe2a70c8d714e4d7a5f869bc8c04ee078011c42887d9ddd02808442c71f349547e51
|
7
|
+
data.tar.gz: d355c7eff7e8e7f39b10d8394da1f81feb23e564a5942f18a64d0f733f03536051264002dc714d8223ec41ebb265bd8f4820ea938179063da58fbd89e371af06
|
data/README.md
CHANGED
@@ -32,10 +32,46 @@ $ gem install dgw_gallery
|
|
32
32
|
If you would like to modify the views or override the controller you can install either or both.
|
33
33
|
Execute:
|
34
34
|
```bash
|
35
|
-
$ rails
|
36
|
-
$ rails
|
35
|
+
$ rails dgw_gallery:install:views # Install Gallery Views
|
36
|
+
$ rails dgw_gallery:install:controller # Install Gallery Controller
|
37
|
+
$ rails dgw_gallery:install:css # Install Gallery CSS
|
37
38
|
```
|
38
39
|
|
40
|
+
If you are using turbolinks and experiencing issues with the carousel not starting on initial page load, try adding the following line at the end of your head section either for your main app or for that specific page.
|
41
|
+
```html
|
42
|
+
<head>
|
43
|
+
...
|
44
|
+
...
|
45
|
+
<meta name="turbolinks-visit-control" content="reload">
|
46
|
+
</head>
|
47
|
+
```
|
48
|
+
|
49
|
+
## Usage
|
50
|
+
#### To embed the carousel on your page you will use code similar to this
|
51
|
+
```ruby
|
52
|
+
### in your action where you want to display gallery
|
53
|
+
### replace 'id' with the id of gallery you want
|
54
|
+
@gallery = Gallery.find(id)
|
55
|
+
```
|
56
|
+
|
57
|
+
```erb
|
58
|
+
<!-- Code in view.html.erb -->
|
59
|
+
<div class="row mt-2">
|
60
|
+
<div class="card card-body border-radius-xl col-12 text-black shadow-lg" id="galleryCodeSection">
|
61
|
+
<div class="row justify-content-center align-items-evenly">
|
62
|
+
<div class="col-5 bg-light rounded mx-5 h-100">
|
63
|
+
<div class="card-header mt-3 border-radius-xl bg-transparent position-relative z-index-2 blur-shadow-image dark-shadow">
|
64
|
+
<%= render 'gallery/carousel' %>
|
65
|
+
</div>
|
66
|
+
</div>
|
67
|
+
</div>
|
68
|
+
</div>
|
69
|
+
</div>
|
70
|
+
```
|
71
|
+
|
72
|
+
Customizations can be made in the app/views/gallery/_carousel.html.erb view if necessary (after installing views)
|
73
|
+
|
74
|
+
|
39
75
|
## Contributing
|
40
76
|
If you wish to contribute submit a pull request and detail your changes and comment them in the code as well.
|
41
77
|
|