diff options
28 files changed, 498 insertions, 502 deletions
diff --git a/.bowerrc b/.bowerrc deleted file mode 100644 index e0163687..00000000 --- a/.bowerrc +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | { | ||
2 | "directory" : "app/Resources/static/lib", | ||
3 | "json" : "bower.json" | ||
4 | } | ||
diff --git a/.eslintrc.json b/.eslintrc.json index 976a9eb5..d6279c64 100644 --- a/.eslintrc.json +++ b/.eslintrc.json | |||
@@ -1,4 +1,4 @@ | |||
1 | { | 1 | { |
2 | "extends": "airbnb", | 2 | "extends": "airbnb", |
3 | "installedESLint": true, | 3 | "parser": "babel-eslint" |
4 | } | 4 | } |
@@ -48,4 +48,4 @@ composer.lock | |||
48 | app/Resources/static/lib/* | 48 | app/Resources/static/lib/* |
49 | /bin | 49 | /bin |
50 | !/src/Wallabag/CoreBundle/Resources/public | 50 | !/src/Wallabag/CoreBundle/Resources/public |
51 | /src/Wallabag/CoreBundle/Resources/public/* | 51 | /src/Wallabag/CoreBundle/Resources/public/* \ No newline at end of file |
diff --git a/.stylelintrc b/.stylelintrc new file mode 100644 index 00000000..40db42c6 --- /dev/null +++ b/.stylelintrc | |||
@@ -0,0 +1,3 @@ | |||
1 | { | ||
2 | "extends": "stylelint-config-standard" | ||
3 | } | ||
diff --git a/Gruntfile.js b/Gruntfile.js index 8dc5b83b..86612dc4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js | |||
@@ -4,6 +4,7 @@ module.exports = function (grunt) { | |||
4 | grunt.initConfig({ | 4 | grunt.initConfig({ |
5 | appDir: 'app/Resources/static', | 5 | appDir: 'app/Resources/static', |
6 | buildDir: 'web/bundles/wallabagcore', | 6 | buildDir: 'web/bundles/wallabagcore', |
7 | modulesDir: 'node_modules', | ||
7 | 8 | ||
8 | postcss: { | 9 | postcss: { |
9 | material: { | 10 | material: { |
@@ -41,27 +42,6 @@ module.exports = function (grunt) { | |||
41 | options: { | 42 | options: { |
42 | separator: ';', | 43 | separator: ';', |
43 | }, | 44 | }, |
44 | jsMaterial: { | ||
45 | src: [ | ||
46 | '<%= appDir %>/themes/material/js/init.js', | ||
47 | '<%= appDir %>/themes/_global/js/restoreScroll.js', | ||
48 | 'node_modules/jquery.tinydot/src/jquery.tinydot.js', | ||
49 | ], | ||
50 | dest: '<%= buildDir %>/material.js', | ||
51 | }, | ||
52 | jsBaggy: { | ||
53 | src: [ | ||
54 | '<%= appDir %>/themes/baggy/js/init.js', | ||
55 | '<%= appDir %>/themes/_global/js/restoreScroll.js', | ||
56 | '<%= appDir %>/themes/baggy/js/autoClose.js', | ||
57 | '<%= appDir %>/themes/baggy/js/autoCompleteTags.js', | ||
58 | '<%= appDir %>/themes/baggy/js/closeMessage.js', | ||
59 | '<%= appDir %>/themes/baggy/js/popupForm.js', | ||
60 | // Save link is no more used for now | ||
61 | // '<%= appDir %>/themes/baggy/js/saveLink.js', | ||
62 | ], | ||
63 | dest: '<%= buildDir %>/baggy.js', | ||
64 | }, | ||
65 | cssMaterial: { | 45 | cssMaterial: { |
66 | src: [ | 46 | src: [ |
67 | 'node_modules/materialize-css/bin/materialize.css', | 47 | 'node_modules/materialize-css/bin/materialize.css', |
@@ -77,8 +57,37 @@ module.exports = function (grunt) { | |||
77 | }, | 57 | }, |
78 | }, | 58 | }, |
79 | browserify: { | 59 | browserify: { |
80 | '<%= buildDir %>/material.browser.js': ['<%= buildDir %>/material.js'], | 60 | dist: { |
81 | '<%= buildDir %>/baggy.browser.js': ['<%= buildDir %>/baggy.js'], | 61 | files: { |
62 | '<%= buildDir %>/material.browser.js': ['<%= appDir %>/themes/material/js/init.js'], | ||
63 | '<%= buildDir %>/baggy.browser.js': ['<%= appDir %>/themes/baggy/js/init.js'] | ||
64 | } | ||
65 | }, | ||
66 | options: { | ||
67 | sourceType: "module", | ||
68 | transform: [ | ||
69 | ["babelify", { | ||
70 | presets: ["es2015"] | ||
71 | }], ["browserify-shim", { | ||
72 | "jquery": { | ||
73 | "exports": "$" | ||
74 | }, | ||
75 | "materialize": "materialize", | ||
76 | "jquery-ui": { | ||
77 | "depends": "jquery", | ||
78 | "exports": null | ||
79 | } | ||
80 | }] | ||
81 | ], | ||
82 | browserifyOptions: { | ||
83 | browser: { | ||
84 | "jQuery": "./node_modules/jquery/dist/jquery.js", | ||
85 | "jquery.tinydot": "./node_modules/jquery.tinydot/src/jquery.tinydot.js", | ||
86 | "jquery.ui": "./node_modules/jquery-ui-browserify/dist/jquery-ui.js" | ||
87 | } | ||
88 | } | ||
89 | } | ||
90 | |||
82 | }, | 91 | }, |
83 | uglify: { | 92 | uglify: { |
84 | material: { | 93 | material: { |
@@ -103,13 +112,13 @@ module.exports = function (grunt) { | |||
103 | copy: { | 112 | copy: { |
104 | pickerjs: { | 113 | pickerjs: { |
105 | expand: true, | 114 | expand: true, |
106 | cwd: 'node_modules/pickadate/lib', | 115 | cwd: '<%= modulesDir %>/pickadate/lib', |
107 | src: 'picker.js', | 116 | src: 'picker.js', |
108 | dest: '<%= buildDir %>', | 117 | dest: '<%= buildDir %>', |
109 | }, | 118 | }, |
110 | annotator: { | 119 | annotator: { |
111 | expand: true, | 120 | expand: true, |
112 | cwd: 'node_modules/annotator/pkg', | 121 | cwd: '<%= modulesDir %>/annotator/pkg', |
113 | src: 'annotator.min.js', | 122 | src: 'annotator.min.js', |
114 | dest: '<%= buildDir %>/themes/_global/js/', | 123 | dest: '<%= buildDir %>/themes/_global/js/', |
115 | }, | 124 | }, |
@@ -120,14 +129,21 @@ module.exports = function (grunt) { | |||
120 | { | 129 | { |
121 | expand: true, | 130 | expand: true, |
122 | overwrite: true, | 131 | overwrite: true, |
123 | cwd: '<%= appDir %>/lib/icomoon-bower/', | 132 | cwd: '<%= modulesDir %>/icomoon-free-npm/Font', |
124 | src: 'fonts', | 133 | src: 'IcoMoon-Free.ttf', |
125 | dest: '<%= buildDir %>/themes/baggy/', | 134 | dest: '<%= buildDir %>/themes/baggy/fonts/', |
126 | }, | 135 | }, |
127 | { | 136 | { |
128 | expand: true, | 137 | expand: true, |
129 | overwrite: true, | 138 | overwrite: true, |
130 | cwd: '<%= appDir %>/lib/bower-pt-sans/fonts', | 139 | cwd: '<%= modulesDir %>/ptsans-npm-webfont/fonts', |
140 | src: '*', | ||
141 | dest: '<%= buildDir %>/themes/baggy/fonts/', | ||
142 | }, | ||
143 | { | ||
144 | expand: true, | ||
145 | overwrite: true, | ||
146 | cwd: '<%= modulesDir %>/material-design-icons-iconfont/dist/fonts/', | ||
131 | src: '*', | 147 | src: '*', |
132 | dest: '<%= buildDir %>/themes/baggy/fonts/', | 148 | dest: '<%= buildDir %>/themes/baggy/fonts/', |
133 | }, | 149 | }, |
@@ -138,28 +154,28 @@ module.exports = function (grunt) { | |||
138 | { | 154 | { |
139 | expand: true, | 155 | expand: true, |
140 | overwrite: true, | 156 | overwrite: true, |
141 | cwd: '<%= appDir %>/lib/icomoon-bower/', | 157 | cwd: '<%= modulesDir %>/icomoon-free-npm/Font', |
142 | src: 'fonts', | 158 | src: 'IcoMoon-Free.ttf', |
143 | dest: '<%= buildDir %>/themes/material/', | 159 | dest: '<%= buildDir %>/themes/material/fonts', |
144 | }, | 160 | }, |
145 | { | 161 | { |
146 | expand: true, | 162 | expand: true, |
147 | overwrite: true, | 163 | overwrite: true, |
148 | cwd: 'node_modules/materialize-css/', | 164 | cwd: '<%= modulesDir %>/materialize-css/', |
149 | src: 'font', | 165 | src: 'font', |
150 | dest: '<%= buildDir %>/themes/material', | 166 | dest: '<%= buildDir %>/themes/material', |
151 | }, | 167 | }, |
152 | { | 168 | { |
153 | expand: true, | 169 | expand: true, |
154 | overwrite: true, | 170 | overwrite: true, |
155 | cwd: '<%= appDir %>/lib/roboto-fontface/fonts/', | 171 | cwd: '<%= modulesDir %>/roboto-fontface/fonts/Roboto', |
156 | src: '*', | 172 | src: '*', |
157 | dest: '<%= buildDir %>/themes/material/fonts/roboto/', | 173 | dest: '<%= buildDir %>/themes/material/fonts/', |
158 | }, | 174 | }, |
159 | { | 175 | { |
160 | expand: true, | 176 | expand: true, |
161 | overwrite: true, | 177 | overwrite: true, |
162 | cwd: '<%= appDir %>/lib/material-design-icons-iconfont/dist/fonts/', | 178 | cwd: '<%= modulesDir %>/material-design-icons-iconfont/dist/fonts/', |
163 | src: '*', | 179 | src: '*', |
164 | dest: '<%= buildDir %>/themes/material/fonts/', | 180 | dest: '<%= buildDir %>/themes/material/fonts/', |
165 | }, | 181 | }, |
@@ -199,7 +215,7 @@ module.exports = function (grunt) { | |||
199 | grunt.registerTask( | 215 | grunt.registerTask( |
200 | 'js', | 216 | 'js', |
201 | 'Build and install js files', | 217 | 'Build and install js files', |
202 | ['clean:js', 'copy:pickerjs', 'concat:jsMaterial', 'concat:jsBaggy', 'browserify', 'uglify'] | 218 | ['clean:js', 'copy:pickerjs', 'browserify', 'uglify'] |
203 | ); | 219 | ); |
204 | 220 | ||
205 | grunt.registerTask( | 221 | grunt.registerTask( |
diff --git a/app/Resources/static/themes/_global/js/bookmarklet.js b/app/Resources/static/themes/_global/js/bookmarklet.js index 2afdfc3c..5174ff47 100644 --- a/app/Resources/static/themes/_global/js/bookmarklet.js +++ b/app/Resources/static/themes/_global/js/bookmarklet.js | |||
@@ -1,2 +1,6 @@ | |||
1 | 1 | ||
2 | top["bookmarklet-url@wallabag.org"]=""+"<!DOCTYPE html>"+"<html>"+"<head>"+"<title>bag it!</title>"+'<link rel="icon" href="tpl/img/favicon.ico" />'+"</head>"+"<body>"+"<script>"+"window.onload=function(){"+"window.setTimeout(function(){"+"history.back();"+"},250);"+"};"+"</scr"+"ipt>"+"</body>"+"</html>" | 2 | top['bookmarklet-url@wallabag.org'] = |
3 | '<!DOCTYPE html><html><head><title>bag it!</title>' + | ||
4 | '<link rel="icon" href="tpl/img/favicon.ico" />' + | ||
5 | '</head><body><script>window.onload=function(){window.setTimeout' + | ||
6 | '(function(){history.back();},250);};</script></body></html>'; | ||
diff --git a/app/Resources/static/themes/_global/js/restoreScroll.js b/app/Resources/static/themes/_global/js/restoreScroll.js deleted file mode 100644 index 9c4d7e20..00000000 --- a/app/Resources/static/themes/_global/js/restoreScroll.js +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | function supportsLocalStorage() { | ||
2 | try { | ||
3 | return 'localStorage' in window && window.localStorage !== null; | ||
4 | } catch (e) { | ||
5 | return false; | ||
6 | } | ||
7 | } | ||
8 | |||
9 | function savePercent(id, percent) { | ||
10 | if (!supportsLocalStorage()) { return false; } | ||
11 | localStorage['wallabag.article.' + id + '.percent'] = percent; | ||
12 | return true; | ||
13 | } | ||
14 | |||
15 | function retrievePercent(id) { | ||
16 | if (!supportsLocalStorage()) { return false; } | ||
17 | |||
18 | var bheight = $(document).height(); | ||
19 | var percent = localStorage['wallabag.article.' + id + '.percent']; | ||
20 | var scroll = bheight * percent; | ||
21 | |||
22 | $('html,body').animate({ scrollTop: scroll }, 'fast'); | ||
23 | |||
24 | return true; | ||
25 | } | ||
diff --git a/app/Resources/static/themes/_global/js/tools.js b/app/Resources/static/themes/_global/js/tools.js new file mode 100644 index 00000000..ab30deb1 --- /dev/null +++ b/app/Resources/static/themes/_global/js/tools.js | |||
@@ -0,0 +1,50 @@ | |||
1 | const $ = require('jquery'); | ||
2 | |||
3 | function supportsLocalStorage() { | ||
4 | try { | ||
5 | return 'localStorage' in window && window.localStorage !== null; | ||
6 | } catch (e) { | ||
7 | return false; | ||
8 | } | ||
9 | } | ||
10 | |||
11 | function savePercent(id, percent) { | ||
12 | if (!supportsLocalStorage()) { return false; } | ||
13 | localStorage[`wallabag.article.${id}.percent`] = percent; | ||
14 | return true; | ||
15 | } | ||
16 | |||
17 | function retrievePercent(id) { | ||
18 | if (!supportsLocalStorage()) { return false; } | ||
19 | |||
20 | const bheight = $(document).height(); | ||
21 | const percent = localStorage[`wallabag.article.${id}.percent`]; | ||
22 | const scroll = bheight * percent; | ||
23 | |||
24 | $('html,body').animate({ scrollTop: scroll }, 'fast'); | ||
25 | |||
26 | return true; | ||
27 | } | ||
28 | |||
29 | function initFilters() { | ||
30 | // no display if filters not available | ||
31 | if ($('div').is('#filters')) { | ||
32 | $('#button_filters').show(); | ||
33 | $('.button-collapse-right').sideNav({ edge: 'right' }); | ||
34 | $('#clear_form_filters').on('click', () => { | ||
35 | $('#filters input').val(''); | ||
36 | $('#filters :checked').removeAttr('checked'); | ||
37 | return false; | ||
38 | }); | ||
39 | } | ||
40 | } | ||
41 | |||
42 | function initExport() { | ||
43 | // no display if export not available | ||
44 | if ($('div').is('#export')) { | ||
45 | $('#button_export').show(); | ||
46 | $('.button-collapse-right').sideNav({ edge: 'right' }); | ||
47 | } | ||
48 | } | ||
49 | |||
50 | export { savePercent, retrievePercent, initFilters, initExport }; | ||
diff --git a/app/Resources/static/themes/baggy/css/font.css b/app/Resources/static/themes/baggy/css/font.css index cae7904a..47edcb83 100755 --- a/app/Resources/static/themes/baggy/css/font.css +++ b/app/Resources/static/themes/baggy/css/font.css | |||
@@ -2,5 +2,5 @@ | |||
2 | font-family: "PT Sans"; | 2 | font-family: "PT Sans"; |
3 | font-style: normal; | 3 | font-style: normal; |
4 | font-weight: 700; | 4 | font-weight: 700; |
5 | src: local("PT Sans Bold"), local("PTSans-Bold"), url("../fonts/pt_sans/regular/PTS55F.woff") format("woff"); | 5 | src: local("PT Sans Bold"), local("PTSans-Bold"), url("../fonts/ptsansbold.woff") format("woff"); |
6 | } | 6 | } |
diff --git a/app/Resources/static/themes/baggy/css/main.css b/app/Resources/static/themes/baggy/css/main.css index 7ffaa12c..eeedd277 100755 --- a/app/Resources/static/themes/baggy/css/main.css +++ b/app/Resources/static/themes/baggy/css/main.css | |||
@@ -481,9 +481,6 @@ footer a { | |||
481 | text-transform: none; | 481 | text-transform: none; |
482 | margin-bottom: 0; | 482 | margin-bottom: 0; |
483 | line-height: 1.2; | 483 | line-height: 1.2; |
484 | text-align: justify; | ||
485 | -moz-text-align-last: center; | ||
486 | text-align-last: center; | ||
487 | } | 484 | } |
488 | 485 | ||
489 | .entry h2::after { | 486 | .entry h2::after { |
@@ -735,12 +732,7 @@ a.add-to-wallabag-link-after::after { | |||
735 | 732 | ||
736 | @font-face { | 733 | @font-face { |
737 | font-family: icomoon; | 734 | font-family: icomoon; |
738 | src: url("../fonts/icomoon.eot?-s0mcsx"); | 735 | src: url("../fonts/IcoMoon-Free.ttf"); |
739 | src: | ||
740 | url("../fonts/icomoon.eot?#iefix-s0mcsx") format("embedded-opentype"), | ||
741 | url("../fonts/icomoon.woff?-s0mcsx") format("woff"), | ||
742 | url("../fonts/icomoon.ttf?-s0mcsx") format("truetype"), | ||
743 | url("../fonts/icomoon.svg?-s0mcsx#icomoon") format("svg"); | ||
744 | font-weight: normal; | 736 | font-weight: normal; |
745 | font-style: normal; | 737 | font-style: normal; |
746 | } | 738 | } |
@@ -1071,7 +1063,7 @@ pre code { | |||
1071 | font-family: "Courier New", Courier, monospace; | 1063 | font-family: "Courier New", Courier, monospace; |
1072 | } | 1064 | } |
1073 | 1065 | ||
1074 | #filter-form { | 1066 | #filters { |
1075 | position: fixed; | 1067 | position: fixed; |
1076 | width: 20%; | 1068 | width: 20%; |
1077 | height: 100%; | 1069 | height: 100%; |
@@ -1086,7 +1078,7 @@ pre code { | |||
1086 | min-width: 300px; | 1078 | min-width: 300px; |
1087 | } | 1079 | } |
1088 | 1080 | ||
1089 | #filter-form form .filter-group { | 1081 | #filters form .filter-group { |
1090 | margin: 5px; | 1082 | margin: 5px; |
1091 | } | 1083 | } |
1092 | 1084 | ||
@@ -1125,9 +1117,11 @@ pre code { | |||
1125 | .entry { | 1117 | .entry { |
1126 | width: 49%; | 1118 | width: 49%; |
1127 | } | 1119 | } |
1120 | |||
1128 | .entry:nth-child(3n+1) { | 1121 | .entry:nth-child(3n+1) { |
1129 | margin-left: 1.5%; | 1122 | margin-left: 1.5%; |
1130 | } | 1123 | } |
1124 | |||
1131 | .entry:nth-child(2n+1) { | 1125 | .entry:nth-child(2n+1) { |
1132 | margin-left: 0; | 1126 | margin-left: 0; |
1133 | } | 1127 | } |
@@ -1137,6 +1131,7 @@ pre code { | |||
1137 | #article { | 1131 | #article { |
1138 | width: 80%; | 1132 | width: 80%; |
1139 | } | 1133 | } |
1134 | |||
1140 | .topPosF { | 1135 | .topPosF { |
1141 | right: 2.5em; | 1136 | right: 2.5em; |
1142 | } | 1137 | } |
@@ -1147,6 +1142,7 @@ pre code { | |||
1147 | width: 100%; | 1142 | width: 100%; |
1148 | margin-left: 0; | 1143 | margin-left: 0; |
1149 | } | 1144 | } |
1145 | |||
1150 | #display-mode { | 1146 | #display-mode { |
1151 | display: none; | 1147 | display: none; |
1152 | } | 1148 | } |
@@ -1197,7 +1193,6 @@ pre code { | |||
1197 | height: auto; | 1193 | height: auto; |
1198 | top: 0.5em; | 1194 | top: 0.5em; |
1199 | width: 75px; | 1195 | width: 75px; |
1200 | height: 75px; | ||
1201 | margin-left: -37.5px; | 1196 | margin-left: -37.5px; |
1202 | } | 1197 | } |
1203 | 1198 | ||
@@ -1214,6 +1209,7 @@ pre code { | |||
1214 | background-color: #999; | 1209 | background-color: #999; |
1215 | font-size: 1.2em; | 1210 | font-size: 1.2em; |
1216 | } | 1211 | } |
1212 | |||
1217 | .desktopHide:hover, | 1213 | .desktopHide:hover, |
1218 | .desktopHide:focus { | 1214 | .desktopHide:focus { |
1219 | background-color: #fff; | 1215 | background-color: #fff; |
diff --git a/app/Resources/static/themes/baggy/css/ratatouille.css b/app/Resources/static/themes/baggy/css/ratatouille.css index b5aeb54e..a6167f34 100644 --- a/app/Resources/static/themes/baggy/css/ratatouille.css +++ b/app/Resources/static/themes/baggy/css/ratatouille.css | |||
@@ -63,7 +63,9 @@ pre { | |||
63 | max-width: 61.25em; /* 980px */ | 63 | max-width: 61.25em; /* 980px */ |
64 | } | 64 | } |
65 | 65 | ||
66 | table, img, figure { | 66 | table, |
67 | img, | ||
68 | figure { | ||
67 | max-width: 100%; | 69 | max-width: 100%; |
68 | height: auto; | 70 | height: auto; |
69 | } | 71 | } |
diff --git a/app/Resources/static/themes/baggy/js/autoClose.js b/app/Resources/static/themes/baggy/js/autoClose.js deleted file mode 100644 index b0dafab2..00000000 --- a/app/Resources/static/themes/baggy/js/autoClose.js +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | var $ = global.jquery = require('jquery'); | ||
2 | |||
3 | $(document).ready(function () { | ||
4 | var currentUrl = window.location.href; | ||
5 | if (currentUrl.match('&closewin=true')) { | ||
6 | window.close(); | ||
7 | } | ||
8 | }); | ||
diff --git a/app/Resources/static/themes/baggy/js/autoCompleteTags.js b/app/Resources/static/themes/baggy/js/autoCompleteTags.js index edd0a421..f287ebfa 100755 --- a/app/Resources/static/themes/baggy/js/autoCompleteTags.js +++ b/app/Resources/static/themes/baggy/js/autoCompleteTags.js | |||
@@ -1,46 +1,8 @@ | |||
1 | var $ = global.jquery = require('jquery'); | 1 | function split(val) { |
2 | return val.split(/,\s*/); | ||
3 | } | ||
4 | function extractLast(term) { | ||
5 | return split(term).pop(); | ||
6 | } | ||
2 | 7 | ||
3 | jQuery(function ($) { | 8 | export { split, extractLast }; |
4 | function split(val) { | ||
5 | return val.split(/,\s*/); | ||
6 | } | ||
7 | function extractLast(term) { | ||
8 | return split(term).pop(); | ||
9 | } | ||
10 | |||
11 | |||
12 | $('#value').bind('keydown', function (event) { | ||
13 | if (event.keyCode === $.ui.keyCode.TAB && $(this).data('ui-autocomplete').menu.active) { | ||
14 | event.preventDefault(); | ||
15 | } | ||
16 | }).autocomplete({ | ||
17 | source: function (request, response) { | ||
18 | $.getJSON('./?view=tags', { | ||
19 | term: extractLast(request.term), | ||
20 | //id: $(':hidden#entry_id').val() | ||
21 | }, response); | ||
22 | }, | ||
23 | search: function () { | ||
24 | // custom minLength | ||
25 | var term = extractLast(this.value); | ||
26 | if (term.length < 1) { | ||
27 | return false; | ||
28 | } | ||
29 | }, | ||
30 | focus: function () { | ||
31 | // prevent value inserted on focus | ||
32 | return false; | ||
33 | }, | ||
34 | select: function (event, ui) { | ||
35 | var terms = split(this.value); | ||
36 | // remove the current input | ||
37 | terms.pop(); | ||
38 | // add the selected item | ||
39 | terms.push(ui.item.value); | ||
40 | // add placeholder to get the comma-and-space at the end | ||
41 | terms.push(''); | ||
42 | this.value = terms.join(', '); | ||
43 | return false; | ||
44 | }, | ||
45 | }); | ||
46 | }); | ||
diff --git a/app/Resources/static/themes/baggy/js/closeMessage.js b/app/Resources/static/themes/baggy/js/closeMessage.js deleted file mode 100644 index ae4b1791..00000000 --- a/app/Resources/static/themes/baggy/js/closeMessage.js +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | var $ = global.jquery = require('jquery'); | ||
2 | |||
3 | $(function () { | ||
4 | //--------------------------------------------------------------------------- | ||
5 | // Show the close icon when the user hover over a message | ||
6 | //--------------------------------------------------------------------------- | ||
7 | // $('.messages').on('mouseenter', function(){ | ||
8 | // $(this).find('a.closeMessage').stop(true, true).show(); | ||
9 | // }).on('mouseleave', function(){ | ||
10 | // $(this).find('a.closeMessage').stop(true, true).hide(); | ||
11 | // }); | ||
12 | //--------------------------------------------------------------------------- | ||
13 | // Close the message box when the user clicks the close icon | ||
14 | //--------------------------------------------------------------------------- | ||
15 | $('a.closeMessage').on('click', function () { | ||
16 | $(this).parents('div.messages').slideUp(300, function () { $(this).remove(); }); | ||
17 | return false; | ||
18 | }); | ||
19 | }); | ||
diff --git a/app/Resources/static/themes/baggy/js/init.js b/app/Resources/static/themes/baggy/js/init.js index d7d4b166..8da9a859 100755 --- a/app/Resources/static/themes/baggy/js/init.js +++ b/app/Resources/static/themes/baggy/js/init.js | |||
@@ -1,21 +1,25 @@ | |||
1 | var $ = global.jquery = require('jquery'); | 1 | const $ = global.jquery = require('jquery'); |
2 | require('jquery.cookie'); | 2 | require('jquery.cookie'); |
3 | require('jquery-ui'); | 3 | require('jquery-ui-browserify'); |
4 | var annotator = require('annotator'); | 4 | const annotator = require('annotator'); |
5 | import { savePercent, retrievePercent } from '../../_global/js/tools.js'; | ||
6 | import { split, extractLast } from './autoCompleteTags.js'; | ||
7 | import { toggleSaveLinkForm } from './uiTools.js'; | ||
5 | 8 | ||
6 | 9 | ||
7 | $.fn.ready(function () { | 10 | $.fn.ready(() => { |
8 | var $listmode = $('#listmode'); | 11 | const $listmode = $('#listmode'); |
9 | var $listentries = $('#list-entries'); | 12 | const $listentries = $('#list-entries'); |
10 | 13 | ||
11 | /* ========================================================================== | 14 | /* ========================================================================== |
12 | Menu | 15 | Menu |
13 | ========================================================================== */ | 16 | ========================================================================== */ |
14 | 17 | ||
15 | $('#menu').click(function () { | 18 | $('#menu').click(() => { |
16 | $('#links').toggleClass('menu--open'); | 19 | $('#links').toggleClass('menu--open'); |
17 | if ($('#content').hasClass('opacity03')) { | 20 | const content = $('#content'); |
18 | $('#content').removeClass('opacity03'); | 21 | if (content.hasClass('opacity03')) { |
22 | content.removeClass('opacity03'); | ||
19 | } | 23 | } |
20 | }); | 24 | }); |
21 | 25 | ||
@@ -23,8 +27,8 @@ $.fn.ready(function () { | |||
23 | List mode or Table Mode | 27 | List mode or Table Mode |
24 | ========================================================================== */ | 28 | ========================================================================== */ |
25 | 29 | ||
26 | $listmode.click(function () { | 30 | $listmode.click(() => { |
27 | if (jquery.cookie('listmode') === 1) { | 31 | if ($.cookie('listmode') === 1) { |
28 | // Cookie | 32 | // Cookie |
29 | $.removeCookie('listmode'); | 33 | $.removeCookie('listmode'); |
30 | 34 | ||
@@ -33,7 +37,7 @@ $.fn.ready(function () { | |||
33 | $listmode.addClass('listmode'); | 37 | $listmode.addClass('listmode'); |
34 | } else { | 38 | } else { |
35 | // Cookie | 39 | // Cookie |
36 | jquery.cookie('listmode', 1, { expires: 365 }); | 40 | $.cookie('listmode', 1, { expires: 365 }); |
37 | 41 | ||
38 | $listentries.addClass('listmode'); | 42 | $listentries.addClass('listmode'); |
39 | $listmode.removeClass('listmode'); | 43 | $listmode.removeClass('listmode'); |
@@ -45,7 +49,7 @@ $.fn.ready(function () { | |||
45 | Cookie listmode | 49 | Cookie listmode |
46 | ========================================================================== */ | 50 | ========================================================================== */ |
47 | 51 | ||
48 | if (jquery.cookie('listmode') === 1) { | 52 | if ($.cookie('listmode') === 1) { |
49 | $listentries.addClass('listmode'); | 53 | $listentries.addClass('listmode'); |
50 | $listmode.removeClass('listmode'); | 54 | $listmode.removeClass('listmode'); |
51 | $listmode.addClass('tablemode'); | 55 | $listmode.addClass('tablemode'); |
@@ -56,43 +60,255 @@ $.fn.ready(function () { | |||
56 | ========================================================================== */ | 60 | ========================================================================== */ |
57 | 61 | ||
58 | 62 | ||
59 | $('#nav-btn-add-tag').on('click', function () { | 63 | $('#nav-btn-add-tag').on('click', () => { |
60 | $('.nav-panel-add-tag').toggle(100); | 64 | $('.nav-panel-add-tag').toggle(100); |
61 | $('.nav-panel-menu').addClass('hidden'); | 65 | $('.nav-panel-menu').addClass('hidden'); |
62 | $('#tag_label').focus(); | 66 | $('#tag_label').focus(); |
63 | return false; | 67 | return false; |
64 | }); | 68 | }); |
65 | 69 | ||
70 | /** | ||
71 | * Filters & Export | ||
72 | */ | ||
73 | // no display if filters not available | ||
74 | if ($('div').is('#filters')) { | ||
75 | $('#button_filters').show(); | ||
76 | $('#clear_form_filters').on('click', () => { | ||
77 | $('#filters input').val(''); | ||
78 | $('#filters :checked').removeAttr('checked'); | ||
79 | return false; | ||
80 | }); | ||
81 | } | ||
82 | |||
66 | /* ========================================================================== | 83 | /* ========================================================================== |
67 | Annotations & Remember position | 84 | Annotations & Remember position |
68 | ========================================================================== */ | 85 | ========================================================================== */ |
69 | 86 | ||
70 | if ($('article').length) { | 87 | if ($('article').length) { |
71 | var app = new annotator.App(); | 88 | const app = new annotator.App(); |
89 | |||
90 | app.include(annotator.ui.main, { | ||
91 | element: document.querySelector('article'), | ||
92 | }); | ||
72 | 93 | ||
73 | app.include(annotator.ui.main, { | 94 | const x = JSON.parse($('#annotationroutes').html()); |
74 | element: document.querySelector('article'), | 95 | app.include(annotator.storage.http, x); |
75 | }); | ||
76 | 96 | ||
77 | var x = JSON.parse($('#annotationroutes').html()); | 97 | app.start().then(() => { |
78 | app.include(annotator.storage.http, x); | 98 | app.annotations.load({ entry: x.entryId }); |
99 | }); | ||
79 | 100 | ||
80 | app.start().then(function () { | 101 | $(window).scroll(() => { |
81 | app.annotations.load({ entry: x.entryId }); | 102 | const scrollTop = $(window).scrollTop(); |
82 | }); | 103 | const docHeight = $(document).height(); |
104 | const scrollPercent = (scrollTop) / (docHeight); | ||
105 | const scrollPercentRounded = Math.round(scrollPercent * 100) / 100; | ||
106 | savePercent(x.entryId, scrollPercentRounded); | ||
107 | }); | ||
83 | 108 | ||
84 | $(window).scroll(function (e) { | 109 | retrievePercent(x.entryId); |
85 | var scrollTop = $(window).scrollTop(); | ||
86 | var docHeight = $(document).height(); | ||
87 | var scrollPercent = (scrollTop) / (docHeight); | ||
88 | var scrollPercentRounded = Math.round(scrollPercent * 100) / 100; | ||
89 | savePercent(x.entryId, scrollPercentRounded); | ||
90 | }); | ||
91 | 110 | ||
111 | $(window).resize(() => { | ||
92 | retrievePercent(x.entryId); | 112 | retrievePercent(x.entryId); |
113 | }); | ||
114 | } | ||
115 | |||
116 | /** | ||
117 | * Close window after adding entry if popup | ||
118 | */ | ||
119 | const currentUrl = window.location.href; | ||
120 | if (currentUrl.match('&closewin=true')) { | ||
121 | window.close(); | ||
122 | } | ||
123 | |||
124 | /** | ||
125 | * Tags autocomplete | ||
126 | */ | ||
127 | /** | ||
128 | * Not working on v2 | ||
129 | * | ||
93 | 130 | ||
94 | $(window).resize(function () { | 131 | $('#value').bind('keydown', (event) => { |
95 | retrievePercent(x.entryId); | 132 | if (event.keyCode === $.ui.keyCode.TAB && $(this).data('ui-autocomplete').menu.active) { |
96 | }); | 133 | event.preventDefault(); |
97 | } | 134 | } |
135 | }).autocomplete({ | ||
136 | source: function source(request, response) { | ||
137 | $.getJSON('./?view=tags', { | ||
138 | term: extractLast(request.term), | ||
139 | //id: $(':hidden#entry_id').val() | ||
140 | }, response); | ||
141 | }, | ||
142 | search: function search() { | ||
143 | // custom minLength | ||
144 | const term = extractLast(this.value); | ||
145 | return term.length >= 1; | ||
146 | }, | ||
147 | focus: function focus() { | ||
148 | // prevent value inserted on focus | ||
149 | return false; | ||
150 | }, | ||
151 | select: function select(event, ui) { | ||
152 | const terms = split(this.value); | ||
153 | // remove the current input | ||
154 | terms.pop(); | ||
155 | // add the selected item | ||
156 | terms.push(ui.item.value); | ||
157 | // add placeholder to get the comma-and-space at the end | ||
158 | terms.push(''); | ||
159 | this.value = terms.join(', '); | ||
160 | return false; | ||
161 | }, | ||
162 | }); | ||
163 | */ | ||
164 | |||
165 | //--------------------------------------------------------------------------- | ||
166 | // Close the message box when the user clicks the close icon | ||
167 | //--------------------------------------------------------------------------- | ||
168 | $('a.closeMessage').on('click', () => { | ||
169 | $(this).parents('div.messages').slideUp(300, () => { $(this).remove(); }); | ||
170 | return false; | ||
171 | }); | ||
172 | |||
173 | $('#search-form').hide(); | ||
174 | $('#bagit-form').hide(); | ||
175 | $('#filters').hide(); | ||
176 | $('#download-form').hide(); | ||
177 | |||
178 | //--------------------------------------------------------------------------- | ||
179 | // Toggle the 'Search' popup in the sidebar | ||
180 | //--------------------------------------------------------------------------- | ||
181 | function toggleSearch() { | ||
182 | $('#search-form').toggle(); | ||
183 | $('#search').toggleClass('current'); | ||
184 | $('#search').toggleClass('active-current'); | ||
185 | $('#search-arrow').toggleClass('arrow-down'); | ||
186 | if ($('#search').hasClass('current')) { | ||
187 | $('#content').addClass('opacity03'); | ||
188 | } else { | ||
189 | $('#content').removeClass('opacity03'); | ||
190 | } | ||
191 | } | ||
192 | |||
193 | //--------------------------------------------------------------------------- | ||
194 | // Toggle the 'Filter' popup on entries list | ||
195 | //--------------------------------------------------------------------------- | ||
196 | function toggleFilter() { | ||
197 | $('#filters').toggle(); | ||
198 | } | ||
199 | |||
200 | //--------------------------------------------------------------------------- | ||
201 | // Toggle the 'Download' popup on entries list | ||
202 | //--------------------------------------------------------------------------- | ||
203 | function toggleDownload() { | ||
204 | $('#download-form').toggle(); | ||
205 | } | ||
206 | |||
207 | //--------------------------------------------------------------------------- | ||
208 | // Toggle the 'Save a Link' popup in the sidebar | ||
209 | //--------------------------------------------------------------------------- | ||
210 | function toggleBagit() { | ||
211 | $('#bagit-form').toggle(); | ||
212 | $('#bagit').toggleClass('current'); | ||
213 | $('#bagit').toggleClass('active-current'); | ||
214 | $('#bagit-arrow').toggleClass('arrow-down'); | ||
215 | if ($('#bagit').hasClass('current')) { | ||
216 | $('#content').addClass('opacity03'); | ||
217 | } else { | ||
218 | $('#content').removeClass('opacity03'); | ||
219 | } | ||
220 | } | ||
221 | |||
222 | //--------------------------------------------------------------------------- | ||
223 | // Close all #links popups in the sidebar | ||
224 | //--------------------------------------------------------------------------- | ||
225 | function closePopups() { | ||
226 | $('#links .messages').hide(); | ||
227 | $('#links > li > a').removeClass('active-current'); | ||
228 | $('#links > li > a').removeClass('current'); | ||
229 | $('[id$=-arrow]').removeClass('arrow-down'); | ||
230 | $('#content').removeClass('opacity03'); | ||
231 | } | ||
232 | |||
233 | $('#search').click(() => { | ||
234 | closePopups(); | ||
235 | toggleSearch(); | ||
236 | $('#searchfield').focus(); | ||
237 | }); | ||
238 | |||
239 | $('.filter-btn').click(() => { | ||
240 | closePopups(); | ||
241 | toggleFilter(); | ||
242 | }); | ||
243 | |||
244 | $('.download-btn').click(() => { | ||
245 | closePopups(); | ||
246 | toggleDownload(); | ||
247 | }); | ||
248 | |||
249 | $('#bagit').click(() => { | ||
250 | closePopups(); | ||
251 | toggleBagit(); | ||
252 | $('#plainurl').focus(); | ||
253 | }); | ||
254 | |||
255 | $('#search-form-close').click(() => { | ||
256 | toggleSearch(); | ||
257 | }); | ||
258 | |||
259 | $('#filter-form-close').click(() => { | ||
260 | toggleFilter(); | ||
261 | }); | ||
262 | |||
263 | $('#download-form-close').click(() => { | ||
264 | toggleDownload(); | ||
265 | }); | ||
266 | |||
267 | $('#bagit-form-close').click(() => { | ||
268 | toggleBagit(); | ||
269 | }); | ||
270 | |||
271 | const $bagitFormForm = $('#bagit-form-form'); | ||
272 | |||
273 | /* ========================================================================== | ||
274 | bag it link and close button | ||
275 | ========================================================================== */ | ||
276 | |||
277 | // send 'bag it link' form request via ajax | ||
278 | $bagitFormForm.submit((event) => { | ||
279 | $('body').css('cursor', 'wait'); | ||
280 | $('#add-link-result').empty(); | ||
281 | |||
282 | $.ajax({ | ||
283 | type: $bagitFormForm.attr('method'), | ||
284 | url: $bagitFormForm.attr('action'), | ||
285 | data: $bagitFormForm.serialize(), | ||
286 | success: function success() { | ||
287 | $('#add-link-result').html('Done!'); | ||
288 | $('#plainurl').val(''); | ||
289 | $('#plainurl').blur(''); | ||
290 | $('body').css('cursor', 'auto'); | ||
291 | }, | ||
292 | error: function error() { | ||
293 | $('#add-link-result').html('Failed!'); | ||
294 | $('body').css('cursor', 'auto'); | ||
295 | }, | ||
296 | }); | ||
297 | |||
298 | event.preventDefault(); | ||
299 | }); | ||
300 | |||
301 | /* ========================================================================== | ||
302 | Process all links inside an article | ||
303 | ========================================================================== */ | ||
304 | |||
305 | $('article a[href^="http"]').after( | ||
306 | () => `<a href="${$(this).attr('href')}" class="add-to-wallabag-link-after" ` + | ||
307 | 'alt="add to wallabag" title="add to wallabag"></a>' | ||
308 | ); | ||
309 | |||
310 | $('.add-to-wallabag-link-after').click((event) => { | ||
311 | toggleSaveLinkForm($(this).attr('href'), event); | ||
312 | event.preventDefault(); | ||
313 | }); | ||
98 | }); | 314 | }); |
diff --git a/app/Resources/static/themes/baggy/js/popupForm.js b/app/Resources/static/themes/baggy/js/popupForm.js deleted file mode 100644 index 95ba60ee..00000000 --- a/app/Resources/static/themes/baggy/js/popupForm.js +++ /dev/null | |||
@@ -1,101 +0,0 @@ | |||
1 | var $ = global.jquery = require('jquery'); | ||
2 | |||
3 | $(document).ready(function () { | ||
4 | $('#search-form').hide(); | ||
5 | $('#bagit-form').hide(); | ||
6 | $('#filter-form').hide(); | ||
7 | $('#download-form').hide(); | ||
8 | |||
9 | //--------------------------------------------------------------------------- | ||
10 | // Toggle the 'Search' popup in the sidebar | ||
11 | //--------------------------------------------------------------------------- | ||
12 | function toggleSearch() { | ||
13 | $('#search-form').toggle(); | ||
14 | $('#search').toggleClass('current'); | ||
15 | $('#search').toggleClass('active-current'); | ||
16 | $('#search-arrow').toggleClass('arrow-down'); | ||
17 | if ($('#search').hasClass('current')) { | ||
18 | $('#content').addClass('opacity03'); | ||
19 | } else { | ||
20 | $('#content').removeClass('opacity03'); | ||
21 | } | ||
22 | } | ||
23 | |||
24 | //--------------------------------------------------------------------------- | ||
25 | // Toggle the 'Filter' popup on entries list | ||
26 | //--------------------------------------------------------------------------- | ||
27 | function toggleFilter() { | ||
28 | $('#filter-form').toggle(); | ||
29 | } | ||
30 | |||
31 | //--------------------------------------------------------------------------- | ||
32 | // Toggle the 'Download' popup on entries list | ||
33 | //--------------------------------------------------------------------------- | ||
34 | function toggleDownload() { | ||
35 | $('#download-form').toggle(); | ||
36 | } | ||
37 | |||
38 | //--------------------------------------------------------------------------- | ||
39 | // Toggle the 'Save a Link' popup in the sidebar | ||
40 | //--------------------------------------------------------------------------- | ||
41 | function toggleBagit() { | ||
42 | $('#bagit-form').toggle(); | ||
43 | $('#bagit').toggleClass('current'); | ||
44 | $('#bagit').toggleClass('active-current'); | ||
45 | $('#bagit-arrow').toggleClass('arrow-down'); | ||
46 | if ($('#bagit').hasClass('current')) { | ||
47 | $('#content').addClass('opacity03'); | ||
48 | } else { | ||
49 | $('#content').removeClass('opacity03'); | ||
50 | } | ||
51 | } | ||
52 | |||
53 | //--------------------------------------------------------------------------- | ||
54 | // Close all #links popups in the sidebar | ||
55 | //--------------------------------------------------------------------------- | ||
56 | function closePopups() { | ||
57 | $('#links .messages').hide(); | ||
58 | $('#links > li > a').removeClass('active-current'); | ||
59 | $('#links > li > a').removeClass('current'); | ||
60 | $('[id$=-arrow]').removeClass('arrow-down'); | ||
61 | $('#content').removeClass('opacity03'); | ||
62 | } | ||
63 | |||
64 | $('#search').click(function () { | ||
65 | closePopups(); | ||
66 | toggleSearch(); | ||
67 | $('#searchfield').focus(); | ||
68 | }); | ||
69 | |||
70 | $('.filter-btn').click(function () { | ||
71 | closePopups(); | ||
72 | toggleFilter(); | ||
73 | }); | ||
74 | |||
75 | $('.download-btn').click(function () { | ||
76 | closePopups(); | ||
77 | toggleDownload(); | ||
78 | }); | ||
79 | |||
80 | $('#bagit').click(function () { | ||
81 | closePopups(); | ||
82 | toggleBagit(); | ||
83 | $('#plainurl').focus(); | ||
84 | }); | ||
85 | |||
86 | $('#search-form-close').click(function () { | ||
87 | toggleSearch(); | ||
88 | }); | ||
89 | |||
90 | $('#filter-form-close').click(function () { | ||
91 | toggleFilter(); | ||
92 | }); | ||
93 | |||
94 | $('#download-form-close').click(function () { | ||
95 | toggleDownload(); | ||
96 | }); | ||
97 | |||
98 | $('#bagit-form-close').click(function () { | ||
99 | toggleBagit(); | ||
100 | }); | ||
101 | }); | ||
diff --git a/app/Resources/static/themes/baggy/js/saveLink.js b/app/Resources/static/themes/baggy/js/saveLink.js deleted file mode 100755 index 5c720886..00000000 --- a/app/Resources/static/themes/baggy/js/saveLink.js +++ /dev/null | |||
@@ -1,75 +0,0 @@ | |||
1 | var $ = global.jquery = require('jquery'); | ||
2 | |||
3 | $.fn.ready(function () { | ||
4 | var $bagit = $('#bagit'); | ||
5 | var $bagitForm = $('#bagit-form'); | ||
6 | var $bagitFormForm = $('#bagit-form-form'); | ||
7 | |||
8 | /* ========================================================================== | ||
9 | bag it link and close button | ||
10 | ========================================================================== */ | ||
11 | |||
12 | function toggleSaveLinkForm(url, event) { | ||
13 | $('#add-link-result').empty(); | ||
14 | |||
15 | $bagit.toggleClass('active-current'); | ||
16 | |||
17 | // only if bag-it link is not presented on page | ||
18 | if ($bagit.length === 0) { | ||
19 | if (event !== 'undefined' && event) { | ||
20 | $bagitForm.css({ position: 'absolute', top: event.pageY, left: event.pageX - 200 }); | ||
21 | } else { | ||
22 | $bagitForm.css({ position: 'relative', top: 'auto', left: 'auto' }); | ||
23 | } | ||
24 | } | ||
25 | |||
26 | if ($('#search-form').length !== 0) { | ||
27 | $('#search').removeClass('current'); | ||
28 | $('#search-arrow').removeClass('arrow-down'); | ||
29 | $('#search-form').hide(); | ||
30 | } | ||
31 | $bagitForm.toggle(); | ||
32 | $('#content').toggleClass('opacity03'); | ||
33 | if (url !== 'undefined' && url) { | ||
34 | $('#plainurl').val(url); | ||
35 | } | ||
36 | $('#plainurl').focus(); | ||
37 | } | ||
38 | |||
39 | // send 'bag it link' form request via ajax | ||
40 | $bagitFormForm.submit(function (event) { | ||
41 | $('body').css('cursor', 'wait'); | ||
42 | $('#add-link-result').empty(); | ||
43 | |||
44 | $.ajax({ | ||
45 | type: $bagitFormForm.attr('method'), | ||
46 | url: $bagitFormForm.attr('action'), | ||
47 | data: $bagitFormForm.serialize(), | ||
48 | success: function (data) { | ||
49 | $('#add-link-result').html('Done!'); | ||
50 | $('#plainurl').val(''); | ||
51 | $('#plainurl').blur(''); | ||
52 | $('body').css('cursor', 'auto'); | ||
53 | }, | ||
54 | error: function (data) { | ||
55 | $('#add-link-result').html('Failed!'); | ||
56 | $('body').css('cursor', 'auto'); | ||
57 | }, | ||
58 | }); | ||
59 | |||
60 | event.preventDefault(); | ||
61 | }); | ||
62 | |||
63 | /* ========================================================================== | ||
64 | Process all links inside an article | ||
65 | ========================================================================== */ | ||
66 | |||
67 | $('article a[href^="http"]').after(function () { | ||
68 | return ' <a href="' + $(this).attr('href') + '" class="add-to-wallabag-link-after" alt="add to wallabag" title="add to wallabag"></a> '; | ||
69 | }); | ||
70 | |||
71 | $('.add-to-wallabag-link-after').click(function (event) { | ||
72 | toggleSaveLinkForm($(this).attr('href'), event); | ||
73 | event.preventDefault(); | ||
74 | }); | ||
75 | }); | ||
diff --git a/app/Resources/static/themes/baggy/js/uiTools.js b/app/Resources/static/themes/baggy/js/uiTools.js new file mode 100644 index 00000000..900b2707 --- /dev/null +++ b/app/Resources/static/themes/baggy/js/uiTools.js | |||
@@ -0,0 +1,35 @@ | |||
1 | const $ = require('jquery'); | ||
2 | |||
3 | function toggleSaveLinkForm(url, event) { | ||
4 | $('#add-link-result').empty(); | ||
5 | |||
6 | const $bagit = $('#bagit'); | ||
7 | const $bagitForm = $('#bagit-form'); | ||
8 | |||
9 | $bagit.toggleClass('active-current'); | ||
10 | |||
11 | // only if bag-it link is not presented on page | ||
12 | if ($bagit.length === 0) { | ||
13 | if (event !== 'undefined' && event) { | ||
14 | $bagitForm.css({ position: 'absolute', top: event.pageY, left: event.pageX - 200 }); | ||
15 | } else { | ||
16 | $bagitForm.css({ position: 'relative', top: 'auto', left: 'auto' }); | ||
17 | } | ||
18 | } | ||
19 | |||
20 | const searchForm = $('#search-form'); | ||
21 | const plainUrl = $('#plainurl'); | ||
22 | if (searchForm.length !== 0) { | ||
23 | $('#search').removeClass('current'); | ||
24 | $('#search-arrow').removeClass('arrow-down'); | ||
25 | searchForm.hide(); | ||
26 | } | ||
27 | $bagitForm.toggle(); | ||
28 | $('#content').toggleClass('opacity03'); | ||
29 | if (url !== 'undefined' && url) { | ||
30 | plainUrl.val(url); | ||
31 | } | ||
32 | plainUrl.focus(); | ||
33 | } | ||
34 | |||
35 | export { toggleSaveLinkForm }; | ||
diff --git a/app/Resources/static/themes/material/css/main.css b/app/Resources/static/themes/material/css/main.css index 005cc302..00d7a869 100755 --- a/app/Resources/static/themes/material/css/main.css +++ b/app/Resources/static/themes/material/css/main.css | |||
@@ -19,12 +19,7 @@ | |||
19 | 19 | ||
20 | @font-face { | 20 | @font-face { |
21 | font-family: icomoon; | 21 | font-family: icomoon; |
22 | src: url("../fonts/icomoon.eot"); | 22 | src: url("../fonts/IcoMoon-Free.ttf"); |
23 | src: | ||
24 | url("../fonts/icomoon.eot#iefix") format("embedded-opentype"), | ||
25 | url("../fonts/icomoon.ttf") format("truetype"), | ||
26 | url("../fonts/icomoon.woff") format("woff"), | ||
27 | url("../fonts/icomoon.svg#icomoon") format("svg"); | ||
28 | font-weight: normal; | 23 | font-weight: normal; |
29 | font-style: normal; | 24 | font-style: normal; |
30 | } | 25 | } |
@@ -174,7 +169,7 @@ div.pagination ul .next.disabled { | |||
174 | 169 | ||
175 | footer.page-footer { | 170 | footer.page-footer { |
176 | margin-top: 10px; | 171 | margin-top: 10px; |
177 | padding-top: 0px; | 172 | padding-top: 0; |
178 | } | 173 | } |
179 | 174 | ||
180 | footer .row { | 175 | footer .row { |
@@ -257,8 +252,9 @@ nav input { | |||
257 | display: none; | 252 | display: none; |
258 | } | 253 | } |
259 | 254 | ||
260 | .input-field.nav-panel-add, .input-field.nav-panel-add form { | 255 | .input-field.nav-panel-add, |
261 | height: 100%; | 256 | .input-field.nav-panel-add form { |
257 | height: 100%; | ||
262 | } | 258 | } |
263 | 259 | ||
264 | /* ========================================================================== | 260 | /* ========================================================================== |
@@ -354,8 +350,9 @@ main ul.row { | |||
354 | max-height: 64px; | 350 | max-height: 64px; |
355 | } | 351 | } |
356 | 352 | ||
357 | .card .card-content i.right, .card .card-reveal i.right { | 353 | .card .card-content i.right, |
358 | margin-left: 0; | 354 | .card .card-reveal i.right { |
355 | margin-left: 0; | ||
359 | } | 356 | } |
360 | 357 | ||
361 | .card .card-entry-labels { | 358 | .card .card-entry-labels { |
@@ -527,30 +524,38 @@ main ul.row { | |||
527 | footer { | 524 | footer { |
528 | padding-left: 0; | 525 | padding-left: 0; |
529 | } | 526 | } |
527 | |||
530 | nav, | 528 | nav, |
531 | main, | 529 | main, |
532 | footer { | 530 | footer { |
533 | padding-left: 0; | 531 | padding-left: 0; |
534 | } | 532 | } |
533 | |||
535 | .pagination { | 534 | .pagination { |
536 | width: auto; | 535 | width: auto; |
537 | } | 536 | } |
537 | |||
538 | .reader-mode { | 538 | .reader-mode { |
539 | width: 240px !important; | 539 | width: 240px !important; |
540 | } | 540 | } |
541 | |||
541 | .reader-mode span { | 542 | .reader-mode span { |
542 | opacity: 1; | 543 | opacity: 1; |
543 | } | 544 | } |
545 | |||
544 | .tabs { | 546 | .tabs { |
545 | display: inline-block; | 547 | display: inline-block; |
546 | height: auto; | 548 | height: auto; |
547 | } | 549 | } |
550 | |||
548 | .tab { | 551 | .tab { |
549 | min-width: 100%; | 552 | min-width: 100%; |
550 | } | 553 | } |
554 | |||
551 | .indicator { | 555 | .indicator { |
552 | display: none; | 556 | display: none; |
553 | } | 557 | } |
558 | |||
554 | .pagination li.prev, | 559 | .pagination li.prev, |
555 | .pagination li.next { | 560 | .pagination li.next { |
556 | width: auto; | 561 | width: auto; |
@@ -568,38 +573,47 @@ main ul.row { | |||
568 | width: 25%; | 573 | width: 25%; |
569 | margin-left: 0; | 574 | margin-left: 0; |
570 | } | 575 | } |
576 | |||
571 | .row .col.l2 { | 577 | .row .col.l2 { |
572 | width: 33.33333%; | 578 | width: 33.33333%; |
573 | margin-left: 0; | 579 | margin-left: 0; |
574 | } | 580 | } |
581 | |||
575 | .row .col.l3 { | 582 | .row .col.l3 { |
576 | width: 41.66667%; | 583 | width: 41.66667%; |
577 | margin-left: 0; | 584 | margin-left: 0; |
578 | } | 585 | } |
586 | |||
579 | .row .col.l4 { | 587 | .row .col.l4 { |
580 | width: 50%; | 588 | width: 50%; |
581 | margin-left: 0; | 589 | margin-left: 0; |
582 | } | 590 | } |
591 | |||
583 | .row .col.l5 { | 592 | .row .col.l5 { |
584 | width: 58.33333%; | 593 | width: 58.33333%; |
585 | margin-left: 0; | 594 | margin-left: 0; |
586 | } | 595 | } |
596 | |||
587 | .row .col.l6 { | 597 | .row .col.l6 { |
588 | width: 66.66667%; | 598 | width: 66.66667%; |
589 | margin-left: 0; | 599 | margin-left: 0; |
590 | } | 600 | } |
601 | |||
591 | .row .col.l7 { | 602 | .row .col.l7 { |
592 | width: 75%; | 603 | width: 75%; |
593 | margin-left: 0; | 604 | margin-left: 0; |
594 | } | 605 | } |
606 | |||
595 | .row .col.l8 { | 607 | .row .col.l8 { |
596 | width: 83.33333%; | 608 | width: 83.33333%; |
597 | margin-left: 0; | 609 | margin-left: 0; |
598 | } | 610 | } |
611 | |||
599 | .row .col.l9 { | 612 | .row .col.l9 { |
600 | width: 91.66667%; | 613 | width: 91.66667%; |
601 | margin-left: 0; | 614 | margin-left: 0; |
602 | } | 615 | } |
616 | |||
603 | .row .col.l10 { | 617 | .row .col.l10 { |
604 | width: 100%; | 618 | width: 100%; |
605 | margin-left: 0; | 619 | margin-left: 0; |
@@ -645,7 +659,7 @@ main ul.row { | |||
645 | } | 659 | } |
646 | 660 | ||
647 | .icon-link::before { | 661 | .icon-link::before { |
648 | content: "\e9cb"; | 662 | content: "\e9cb"; |
649 | } | 663 | } |
650 | 664 | ||
651 | footer [class^="icon-"], | 665 | footer [class^="icon-"], |
@@ -676,5 +690,5 @@ div.settings div.file-field div { | |||
676 | } | 690 | } |
677 | 691 | ||
678 | .input-field label.active { | 692 | .input-field label.active { |
679 | font-size: 1rem; | 693 | font-size: 1rem; |
680 | } | 694 | } |
diff --git a/app/Resources/static/themes/material/css/print.css b/app/Resources/static/themes/material/css/print.css index 1eb96735..98505aae 100755 --- a/app/Resources/static/themes/material/css/print.css +++ b/app/Resources/static/themes/material/css/print.css | |||
@@ -28,10 +28,10 @@ | |||
28 | .messages, | 28 | .messages, |
29 | .entry + .results, | 29 | .entry + .results, |
30 | #slide-out, | 30 | #slide-out, |
31 | .progress, .hide-on-large-only, | 31 | .progress, |
32 | .hide-on-large-only, | ||
32 | #article > aside, | 33 | #article > aside, |
33 | #article .mbm a | 34 | #article .mbm a { |
34 | { | ||
35 | display: none !important; | 35 | display: none !important; |
36 | } | 36 | } |
37 | 37 | ||
diff --git a/app/Resources/static/themes/material/js/init.js b/app/Resources/static/themes/material/js/init.js index d6a87941..18f7b40a 100755 --- a/app/Resources/static/themes/material/js/init.js +++ b/app/Resources/static/themes/material/js/init.js | |||
@@ -1,29 +1,10 @@ | |||
1 | var $ = require('jquery'); | 1 | const $ = require('jquery'); |
2 | require('materialize'); | 2 | global.jQuery = $; |
3 | var annotator = require('annotator'); | 3 | require('materialize'); // eslint-disable-line |
4 | const annotator = require('annotator'); | ||
5 | import { savePercent, retrievePercent, initFilters, initExport } from '../../_global/js/tools.js'; | ||
4 | 6 | ||
5 | function initFilters() { | 7 | $(document).ready(() => { |
6 | // no display if filters not aviable | ||
7 | if ($('div').is('#filters')) { | ||
8 | $('#button_filters').show(); | ||
9 | $('.button-collapse-right').sideNav({ edge: 'right' }); | ||
10 | $('#clear_form_filters').on('click', function () { | ||
11 | $('#filters input').val(''); | ||
12 | $('#filters :checked').removeAttr('checked'); | ||
13 | return false; | ||
14 | }); | ||
15 | } | ||
16 | } | ||
17 | |||
18 | function initExport() { | ||
19 | // no display if export not aviable | ||
20 | if ($('div').is('#export')) { | ||
21 | $('#button_export').show(); | ||
22 | $('.button-collapse-right').sideNav({ edge: 'right' }); | ||
23 | } | ||
24 | } | ||
25 | |||
26 | $(document).ready(function () { | ||
27 | // sideNav | 8 | // sideNav |
28 | $('.button-collapse').sideNav(); | 9 | $('.button-collapse').sideNav(); |
29 | $('select').material_select(); | 10 | $('select').material_select(); |
@@ -40,13 +21,13 @@ $(document).ready(function () { | |||
40 | initFilters(); | 21 | initFilters(); |
41 | initExport(); | 22 | initExport(); |
42 | 23 | ||
43 | $('#nav-btn-add-tag').on('click', function () { | 24 | $('#nav-btn-add-tag').on('click', () => { |
44 | $('.nav-panel-add-tag').toggle(100); | 25 | $('.nav-panel-add-tag').toggle(100); |
45 | $('.nav-panel-menu').addClass('hidden'); | 26 | $('.nav-panel-menu').addClass('hidden'); |
46 | $('#tag_label').focus(); | 27 | $('#tag_label').focus(); |
47 | return false; | 28 | return false; |
48 | }); | 29 | }); |
49 | $('#nav-btn-add').on('click', function () { | 30 | $('#nav-btn-add').on('click', () => { |
50 | $('.nav-panel-buttom').hide(100); | 31 | $('.nav-panel-buttom').hide(100); |
51 | $('.nav-panel-add').show(100); | 32 | $('.nav-panel-add').show(100); |
52 | $('.nav-panels .action').hide(100); | 33 | $('.nav-panels .action').hide(100); |
@@ -55,7 +36,7 @@ $(document).ready(function () { | |||
55 | $('#entry_url').focus(); | 36 | $('#entry_url').focus(); |
56 | return false; | 37 | return false; |
57 | }); | 38 | }); |
58 | $('#nav-btn-search').on('click', function () { | 39 | $('#nav-btn-search').on('click', () => { |
59 | $('.nav-panel-buttom').hide(100); | 40 | $('.nav-panel-buttom').hide(100); |
60 | $('.nav-panel-search').show(100); | 41 | $('.nav-panel-search').show(100); |
61 | $('.nav-panels .action').hide(100); | 42 | $('.nav-panels .action').hide(100); |
@@ -64,7 +45,7 @@ $(document).ready(function () { | |||
64 | $('#searchfield').focus(); | 45 | $('#searchfield').focus(); |
65 | return false; | 46 | return false; |
66 | }); | 47 | }); |
67 | $('.close').on('click', function () { | 48 | $('.close').on('click', () => { |
68 | $('.nav-panel-add').hide(100); | 49 | $('.nav-panel-add').hide(100); |
69 | $('.nav-panel-search').hide(100); | 50 | $('.nav-panel-search').hide(100); |
70 | $('.nav-panel-buttom').show(100); | 51 | $('.nav-panel-buttom').show(100); |
@@ -73,12 +54,12 @@ $(document).ready(function () { | |||
73 | $('.nav-panels').css('background', 'transparent'); | 54 | $('.nav-panels').css('background', 'transparent'); |
74 | return false; | 55 | return false; |
75 | }); | 56 | }); |
76 | $(window).scroll(function () { | 57 | $(window).scroll(() => { |
77 | var s = $(window).scrollTop(); | 58 | const s = $(window).scrollTop(); |
78 | var d = $(document).height(); | 59 | const d = $(document).height(); |
79 | var c = $(window).height(); | 60 | const c = $(window).height(); |
80 | var scrollPercent = (s / (d - c)) * 100; | 61 | const scrollPercent = (s / (d - c)) * 100; |
81 | $('.progress .determinate').css('width', scrollPercent + '%'); | 62 | $('.progress .determinate').css('width', `${scrollPercent}%`); |
82 | }); | 63 | }); |
83 | 64 | ||
84 | /* ========================================================================== | 65 | /* ========================================================================== |
@@ -86,9 +67,8 @@ $(document).ready(function () { | |||
86 | ========================================================================== */ | 67 | ========================================================================== */ |
87 | 68 | ||
88 | if ($('article').length) { | 69 | if ($('article').length) { |
89 | var app = new annotator.App(); | 70 | const app = new annotator.App(); |
90 | var x = JSON.parse($('#annotationroutes').html()); | 71 | const x = JSON.parse($('#annotationroutes').html()); |
91 | |||
92 | 72 | ||
93 | app.include(annotator.ui.main, { | 73 | app.include(annotator.ui.main, { |
94 | element: document.querySelector('article'), | 74 | element: document.querySelector('article'), |
@@ -96,21 +76,21 @@ $(document).ready(function () { | |||
96 | 76 | ||
97 | app.include(annotator.storage.http, x); | 77 | app.include(annotator.storage.http, x); |
98 | 78 | ||
99 | app.start().then(function () { | 79 | app.start().then(() => { |
100 | app.annotations.load({ entry: x.entryId }); | 80 | app.annotations.load({ entry: x.entryId }); |
101 | }); | 81 | }); |
102 | 82 | ||
103 | $(window).scroll(function (e) { | 83 | $(window).scroll(() => { |
104 | var scrollTop = $(window).scrollTop(); | 84 | const scrollTop = $(window).scrollTop(); |
105 | var docHeight = $(document).height(); | 85 | const docHeight = $(document).height(); |
106 | var scrollPercent = (scrollTop) / (docHeight); | 86 | const scrollPercent = (scrollTop) / (docHeight); |
107 | var scrollPercentRounded = Math.round(scrollPercent * 100) / 100; | 87 | const scrollPercentRounded = Math.round(scrollPercent * 100) / 100; |
108 | savePercent(x.entryId, scrollPercentRounded); | 88 | savePercent(x.entryId, scrollPercentRounded); |
109 | }); | 89 | }); |
110 | 90 | ||
111 | retrievePercent(x.entryId); | 91 | retrievePercent(x.entryId); |
112 | 92 | ||
113 | $(window).resize(function () { | 93 | $(window).resize(() => { |
114 | retrievePercent(x.entryId); | 94 | retrievePercent(x.entryId); |
115 | }); | 95 | }); |
116 | } | 96 | } |
diff --git a/bower.json b/bower.json deleted file mode 100644 index f2d2bd26..00000000 --- a/bower.json +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | { | ||
2 | "name": "wallabag", | ||
3 | "version": "2.0.0-beta.1", | ||
4 | "homepage": "https://github.com/wallabag/wallabag", | ||
5 | "authors": [ | ||
6 | { | ||
7 | "name": "Nicolas Lœuillet", | ||
8 | "email": "nicolas@loeuillet.org", | ||
9 | "homepage": "http://www.cdetc.fr", | ||
10 | "role": "Developer" | ||
11 | }, | ||
12 | { | ||
13 | "name": "Thomas Citharel", | ||
14 | "homepage": "http://tcit.fr", | ||
15 | "role": "Developer" | ||
16 | }, | ||
17 | { | ||
18 | "name": "Jérémy Benoist", | ||
19 | "homepage": "http://www.j0k3r.net", | ||
20 | "role": "Developer" | ||
21 | } | ||
22 | ], | ||
23 | "description": "wallabag is a self hostable application for saving web pages", | ||
24 | "license": "MIT", | ||
25 | "main": "bower.json", | ||
26 | "ignore": [ | ||
27 | "**/.*", | ||
28 | "node_modules", | ||
29 | "bower_components", | ||
30 | "test", | ||
31 | "tests" | ||
32 | ], | ||
33 | "dependencies": { | ||
34 | "icomoon-bower": "^0.1.0", | ||
35 | "bower-pt-sans": "pt-sans#*", | ||
36 | "roboto-fontface": "^0.4.5", | ||
37 | "material-design-icons-iconfont": "^2.0.4" | ||
38 | } | ||
39 | } | ||
@@ -5,12 +5,9 @@ if [[ $ASSETS == 'build' ]]; then | |||
5 | composer install --no-interaction --no-progress --prefer-dist -o | 5 | composer install --no-interaction --no-progress --prefer-dist -o |
6 | 6 | ||
7 | chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm | 7 | chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm |
8 | echo "Downloading javascript librairies through npm..." | 8 | echo "Downloading librairies through npm..." |
9 | vendor/mouf/nodejs-installer/bin/local/npm install | 9 | vendor/mouf/nodejs-installer/bin/local/npm install |
10 | 10 | ||
11 | echo "Downloading fonts librairies through bower..." | ||
12 | node_modules/bower/bin/bower install | ||
13 | |||
14 | echo "Concat, minify and installing assets..." | 11 | echo "Concat, minify and installing assets..." |
15 | node_modules/grunt/bin/grunt | 12 | node_modules/grunt/bin/grunt |
16 | else | 13 | else |
diff --git a/install_dev.sh b/install_dev.sh index 81f871da..61a4f6fd 100755 --- a/install_dev.sh +++ b/install_dev.sh | |||
@@ -3,12 +3,9 @@ | |||
3 | echo "Installing PHP dependencies (including dev) through Composer..." | 3 | echo "Installing PHP dependencies (including dev) through Composer..." |
4 | composer install | 4 | composer install |
5 | 5 | ||
6 | echo "Downloading javascript librairies through npm..." | 6 | echo "Downloading librairies through npm..." |
7 | npm install | 7 | npm install |
8 | 8 | ||
9 | echo "Downloading fonts librairies through bower..." | ||
10 | bower install | ||
11 | |||
12 | echo "Concat, minify and installing assets..." | 9 | echo "Concat, minify and installing assets..." |
13 | grunt | 10 | grunt |
14 | 11 | ||
diff --git a/package.json b/package.json index 39a10e9c..21664f37 100644 --- a/package.json +++ b/package.json | |||
@@ -10,7 +10,8 @@ | |||
10 | "dependencies": { | 10 | "dependencies": { |
11 | "annotator": "git://github.com/wallabag/annotator.git#0f076c7d371ed25eb0793346f46982d90f2c4c85", | 11 | "annotator": "git://github.com/wallabag/annotator.git#0f076c7d371ed25eb0793346f46982d90f2c4c85", |
12 | "autoprefixer": "^6.3.6", | 12 | "autoprefixer": "^6.3.6", |
13 | "bower": "^1.7.7", | 13 | "babel-preset-es2015": "^6.14.0", |
14 | "babelify": "^7.3.0", | ||
14 | "browserify": "^13.0.0", | 15 | "browserify": "^13.0.0", |
15 | "browserify-shim": "^3.8.12", | 16 | "browserify-shim": "^3.8.12", |
16 | "cssnano": "^3.5.2", | 17 | "cssnano": "^3.5.2", |
@@ -25,17 +26,21 @@ | |||
25 | "grunt-contrib-uglify": "^1.0.0", | 26 | "grunt-contrib-uglify": "^1.0.0", |
26 | "grunt-postcss": "^0.8.0", | 27 | "grunt-postcss": "^0.8.0", |
27 | "hammerjs": "^2.0.6", | 28 | "hammerjs": "^2.0.6", |
28 | "jquery": "^2.2.1", | 29 | "icomoon-free-npm": "0.0.0", |
29 | "jquery-ui": "^1.10.5", | 30 | "jquery": "^2.2.4", |
31 | "jquery-ui-browserify": "^1.11.0-pre-seelio", | ||
30 | "jquery.cookie": "^1.4.1", | 32 | "jquery.cookie": "^1.4.1", |
31 | "jquery.tinydot": "^0.2.1", | 33 | "jquery.tinydot": "^0.2.1", |
32 | "load-grunt-tasks": "^3.4.1", | 34 | "load-grunt-tasks": "^3.4.1", |
35 | "material-design-icons-iconfont": "^3.0.0", | ||
33 | "materialize-css": "0.97.5", | 36 | "materialize-css": "0.97.5", |
34 | "npm": "^3.8.3", | 37 | "npm": "^3.8.3", |
35 | "pickadate": "^3.5.6", | 38 | "pickadate": "^3.5.6", |
36 | "pixrem": "^3.0.0", | 39 | "pixrem": "^3.0.0", |
37 | "postcss-cssnext": "^2.5.1", | 40 | "postcss-cssnext": "^2.5.1", |
38 | "prismjs": "^1.4.1", | 41 | "prismjs": "^1.4.1", |
42 | "ptsans-npm-webfont": "0.0.4", | ||
43 | "roboto-fontface": "^0.6.0", | ||
39 | "through": "^2.3.8" | 44 | "through": "^2.3.8" |
40 | }, | 45 | }, |
41 | "engines": { | 46 | "engines": { |
@@ -47,9 +52,14 @@ | |||
47 | "materialize": "./node_modules/materialize-css/bin/materialize.js" | 52 | "materialize": "./node_modules/materialize-css/bin/materialize.js" |
48 | }, | 53 | }, |
49 | "browserify-shim": { | 54 | "browserify-shim": { |
50 | "jquery": "$", | 55 | "jquery": { |
51 | "jQuery": "jQuery", | 56 | "exports": "$" |
52 | "materialize": "materialize" | 57 | }, |
58 | "materialize": "materialize", | ||
59 | "jquery-ui": { | ||
60 | "depends": "jquery", | ||
61 | "exports": null | ||
62 | } | ||
53 | }, | 63 | }, |
54 | "browserify": { | 64 | "browserify": { |
55 | "transform": [ | 65 | "transform": [ |
@@ -83,7 +93,10 @@ | |||
83 | "url": "https://github.com/wallabag/wallabag/issues" | 93 | "url": "https://github.com/wallabag/wallabag/issues" |
84 | }, | 94 | }, |
85 | "devDependencies": { | 95 | "devDependencies": { |
86 | "eslint": "^2.11.1", | 96 | "babel-eslint": "^6.1.2", |
87 | "eslint-config-airbnb": "^9.0.1" | 97 | "eslint": "^2.13.1", |
98 | "eslint-config-airbnb": "^9.0.1", | ||
99 | "stylelint": "^7.3.1", | ||
100 | "stylelint-config-standard": "^13.0.2" | ||
88 | } | 101 | } |
89 | } | 102 | } |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig index ffc5bec6..1c0430e8 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig | |||
@@ -67,7 +67,7 @@ | |||
67 | 67 | ||
68 | <!-- Filter --> | 68 | <!-- Filter --> |
69 | {% if form is not null %} | 69 | {% if form is not null %} |
70 | <aside id="filter-form" class=""> | 70 | <div id="filters" class=""> |
71 | <form method="get" action="{{ path('all') }}"> | 71 | <form method="get" action="{{ path('all') }}"> |
72 | <h2>{{ 'entry.filters.title'|trans }}</h2> | 72 | <h2>{{ 'entry.filters.title'|trans }}</h2> |
73 | <a href="javascript: void(null);" id="filter-form-close" class="close-button--popup close-button">×</a> | 73 | <a href="javascript: void(null);" id="filter-form-close" class="close-button--popup close-button">×</a> |
@@ -147,6 +147,6 @@ | |||
147 | <button class="btn waves-effect waves-light" type="submit" id="submit-filter" value="filter">{{ 'entry.filters.action.filter'|trans }}</button> | 147 | <button class="btn waves-effect waves-light" type="submit" id="submit-filter" value="filter">{{ 'entry.filters.action.filter'|trans }}</button> |
148 | </div> | 148 | </div> |
149 | </form> | 149 | </form> |
150 | </aside> | 150 | </div> |
151 | {% endif %} | 151 | {% endif %} |
152 | {% endblock %} | 152 | {% endblock %} |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig index bec4b70f..be1e3647 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entry.html.twig | |||
@@ -82,22 +82,4 @@ | |||
82 | "entryId": "{{ entry.id }}" | 82 | "entryId": "{{ entry.id }}" |
83 | } | 83 | } |
84 | </script> | 84 | </script> |
85 | <script src="{{ asset('bundles/wallabagcore/themes/_global/js/restoreScroll.js')}}"></script> | ||
86 | <script type="text/javascript"> | ||
87 | $(document).ready(function() { | ||
88 | $(window).scroll(function(e){ | ||
89 | var scrollTop = $(window).scrollTop(); | ||
90 | var docHeight = $(document).height(); | ||
91 | var scrollPercent = (scrollTop) / (docHeight); | ||
92 | var scrollPercentRounded = Math.round(scrollPercent*100)/100; | ||
93 | savePercent({{ entry.id }}, scrollPercentRounded); | ||
94 | }); | ||
95 | |||
96 | retrievePercent({{ entry.id }}); | ||
97 | |||
98 | $(window).resize(function(){ | ||
99 | retrievePercent({{ entry.id }}); | ||
100 | }); | ||
101 | }); | ||
102 | </script> | ||
103 | {% endblock %} | 85 | {% endblock %} |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig index e889dea8..01fde953 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig | |||
@@ -66,7 +66,7 @@ | |||
66 | 66 | ||
67 | <p>{{ entry.content|striptags|slice(0, 300)|raw }}…</p> | 67 | <p>{{ entry.content|striptags|slice(0, 300)|raw }}…</p> |
68 | 68 | ||
69 | <ul class="card-entry-tags"> | 69 | <ul class="card-entry-labels-hidden"> |
70 | {% for tag in entry.tags %} | 70 | {% for tag in entry.tags %} |
71 | <li>{{ tag.label }}</li> | 71 | <li>{{ tag.label }}</li> |
72 | {% endfor %} | 72 | {% endfor %} |