1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pixelfed_ynh.git synced 2024-09-03 20:06:04 +02:00

Add new labs setting, disable read more

This commit is contained in:
Daniel Supernault 2019-05-04 19:52:23 -06:00
parent 24f295b02f
commit 97a5f5db8d
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7
2 changed files with 33 additions and 4 deletions

View file

@ -389,7 +389,8 @@
followingCursor: 1, followingCursor: 1,
followingMore: true, followingMore: true,
lightboxMedia: false, lightboxMedia: false,
showSuggestions: false showSuggestions: false,
showReadMore: true,
} }
}, },
@ -415,13 +416,21 @@
this.showSuggestions = true; this.showSuggestions = true;
} }
if(localStorage.getItem('pf_metro_ui.exp.rm') == 'false') {
this.showReadMore = false;
} else {
this.showReadMore = true;
}
this.$nextTick(function () { this.$nextTick(function () {
$('[data-toggle="tooltip"]').tooltip() $('[data-toggle="tooltip"]').tooltip()
}); });
}, },
updated() { updated() {
pixelfed.readmore(); if(this.showReadMore == true) {
pixelfed.readmore();
}
}, },
methods: { methods: {

View file

@ -162,9 +162,16 @@
<label class="form-check-label font-weight-bold" for="show_suggestions"> <label class="form-check-label font-weight-bold" for="show_suggestions">
{{__('Profile Suggestions')}} {{__('Profile Suggestions')}}
</label> </label>
<p class="text-muted small help-text">Show Profile Suggestions</p> <p class="text-muted small help-text">Show Profile Suggestions.</p>
</div> </div>
@endif @endif
<div class="form-check pb-3">
<input class="form-check-input" type="checkbox" name="show_readmore" id="show_readmore">
<label class="form-check-label font-weight-bold" for="show_readmore">
{{__('Use Read More')}}
</label>
<p class="text-muted small help-text">Collapses captions/comments more than 3 lines.</p>
</div>
<div class="py-3"> <div class="py-3">
<p class="font-weight-bold text-muted text-center">Discovery</p> <p class="font-weight-bold text-muted text-center">Discovery</p>
<hr> <hr>
@ -191,18 +198,31 @@
<script type="text/javascript"> <script type="text/javascript">
$(document).ready(function() { $(document).ready(function() {
let showSuggestions = localStorage.getItem('pf_metro_ui.exp.rec') == 'false' ? false : true; let showSuggestions = localStorage.getItem('pf_metro_ui.exp.rec') == 'false' ? false : true;
let showReadMore = localStorage.getItem('pf_metro_ui.exp.rm') == 'false' ? false : true;
if(showSuggestions == true) { if(showSuggestions == true) {
$('#show_suggestions').attr('checked', true); $('#show_suggestions').attr('checked', true);
} }
if(showReadMore == true) {
$('#show_readmore').attr('checked', true);
}
$('#show_suggestions').on('change', function(e) { $('#show_suggestions').on('change', function(e) {
if(e.target.checked) { if(e.target.checked) {
localStorage.removeItem('pf_metro_ui.exp.rec'); localStorage.removeItem('pf_metro_ui.exp.rec');
} else { } else {
localStorage.setItem('pf_metro_ui.exp.rec', false); localStorage.setItem('pf_metro_ui.exp.rec', false);
} }
}) });
$('#show_readmore').on('change', function(e) {
if(e.target.checked) {
localStorage.removeItem('pf_metro_ui.exp.rm');
} else {
localStorage.setItem('pf_metro_ui.exp.rm', false);
}
});
}); });
</script> </script>
@endpush @endpush