invidious-mod/src/invidious/views/preferences.ecr

183 行
8.3 KiB
Plaintext
Raw 通常表示 履歴

2018-07-17 01:24:24 +09:00
<% content_for "header" do %>
<title>Preferences - Invidious</title>
<% end %>
<script>
function update_value(element) {
document.getElementById('volume-value').innerText = element.value;
}
</script>
2018-07-26 23:59:05 +09:00
<div class="h-box">
<form class="pure-form pure-form-aligned" action="/preferences?referer=<%= referer %>" method="post">
<fieldset>
<legend>Player preferences</legend>
2018-07-17 01:24:24 +09:00
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
<label for="video_loop">Always loop: </label>
<input name="video_loop" id="video_loop" type="checkbox" <% if user.preferences.video_loop %>checked<% end %>>
</div>
2018-07-17 01:24:24 +09:00
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
<label for="autoplay">Autoplay: </label>
<input name="autoplay" id="autoplay" type="checkbox" <% if user.preferences.autoplay %>checked<% end %>>
</div>
2018-07-17 01:24:24 +09:00
2018-10-30 23:41:23 +09:00
<div class="pure-control-group">
2018-11-22 04:10:09 +09:00
<label for="continue">Autoplay next video: </label>
2018-11-12 02:45:05 +09:00
<input name="continue" id="continue" type="checkbox" <% if user.preferences.continue %>checked<% end %>>
</div>
<div class="pure-control-group">
2018-10-30 23:41:23 +09:00
<label for="listen">Listen by default: </label>
<input name="listen" id="listen" type="checkbox" <% if user.preferences.listen %>checked<% end %>>
</div>
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
<label for="speed">Default speed: </label>
<select name="speed" id="speed">
2018-08-12 05:03:24 +09:00
<% {2.0, 1.5, 1.0, 0.5}.each do |option| %>
2018-07-26 23:59:05 +09:00
<option <% if user.preferences.speed == option %> selected <% end %>><%= option %></option>
<% end %>
</select>
</div>
2018-07-17 01:57:52 +09:00
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
<label for="quality">Preferred video quality: </label>
<select name="quality" id="quality">
2018-09-25 09:28:36 +09:00
<% {"dash", "hd720", "medium", "small"}.each do |option| %>
2018-07-26 23:59:05 +09:00
<option <% if user.preferences.quality == option %> selected <% end %>><%= option %></option>
<% end %>
</select>
</div>
2018-07-17 01:24:24 +09:00
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
<label for="volume">Player volume: </label>
<input name="volume" id="volume" oninput="update_value(this);" type="range" min="0" max="100" step="5" value="<%= user.preferences.volume %>">
<span class="pure-form-message-inline" id="volume-value"><%= user.preferences.volume %></span>
</div>
2018-07-17 01:24:24 +09:00
2018-07-28 23:49:58 +09:00
<div class="pure-control-group">
2018-08-26 08:33:15 +09:00
<label for="comments_0">Default comments: </label>
<select name="comments_0" id="comments_0">
<% {"", "youtube", "reddit"}.each do |option| %>
<option <% if user.preferences.comments[0] == option %> selected <% end %>><%= option %></option>
<% end %>
</select>
</div>
<div class="pure-control-group">
<label for="comments_1">Fallback comments: </label>
<select name="comments_1" id="comments_1">
<% {"", "youtube", "reddit"}.each do |option| %>
<option <% if user.preferences.comments[1] == option %> selected <% end %>><%= option %></option>
2018-07-28 23:49:58 +09:00
<% end %>
</select>
</div>
2018-08-07 03:23:36 +09:00
<div class="pure-control-group">
<label for="captions_0">Default captions: </label>
<select class="pure-u-1-5" name="captions_0" id="captions_0">
<% CAPTION_LANGUAGES.each do |option| %>
<option <% if user.preferences.captions[0] == option %> selected <% end %>><%= option %></option>
<% end %>
</select>
</div>
<div class="pure-control-group">
2018-08-31 06:49:38 +09:00
<label for="captions_fallback">Fallback captions: </label>
2018-08-07 03:23:36 +09:00
<select class="pure-u-1-5" name="captions_1" id="captions_1">
<% CAPTION_LANGUAGES.each do |option| %>
<option <% if user.preferences.captions[1] == option %> selected <% end %>><%= option %></option>
<% end %>
</select>
<select class="pure-u-1-5" name="captions_2" id="captions_2">
<% CAPTION_LANGUAGES.each do |option| %>
<option <% if user.preferences.captions[2] == option %> selected <% end %>><%= option %></option>
<% end %>
</select>
</div>
2018-08-31 06:49:38 +09:00
<div class="pure-control-group">
<label for="related_videos">Show related videos? </label>
<input name="related_videos" id="related_videos" type="checkbox" <% if user.preferences.related_videos %>checked<% end %>>
</div>
2018-07-26 23:59:05 +09:00
<legend>Visual preferences</legend>
2018-08-31 06:49:38 +09:00
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
<label for="dark_mode">Dark mode: </label>
<input name="dark_mode" id="dark_mode" type="checkbox" <% if user.preferences.dark_mode %>checked<% end %>>
</div>
2018-07-17 01:24:24 +09:00
2018-07-27 02:09:29 +09:00
<div class="pure-control-group">
<label for="thin_mode">Thin mode: </label>
<input name="thin_mode" id="thin_mode" type="checkbox" <% if user.preferences.thin_mode %>checked<% end %>>
</div>
2018-07-26 23:59:05 +09:00
<legend>Subscription preferences</legend>
2018-08-31 06:49:38 +09:00
<div class="pure-control-group">
<label for="redirect_feed">Redirect homepage to feed: </label>
<input name="redirect_feed" id="redirect_feed" type="checkbox" <% if user.preferences.redirect_feed %>checked<% end %>>
</div>
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
<label for="max_results">Number of videos shown in feed: </label>
<input name="max_results" id="max_results" type="number" value="<%= user.preferences.max_results %>">
</div>
2018-07-17 09:31:49 +09:00
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
<label for="sort">Sort videos by: </label>
<select name="sort" id="sort">
<% {"published", "published - reverse", "alphabetically", "alphabetically - reverse", "channel name", "channel name - reverse"}.each do |option| %>
2018-07-26 23:59:05 +09:00
<option <% if user.preferences.sort == option %> selected <% end %>><%= option %></option>
<% end %>
</select>
</div>
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
2018-11-27 05:28:15 +09:00
<label for="latest_only">Only show latest <% if user.preferences.unseen_only %>unwatched<% end %> video from channel: </label>
2018-07-26 23:59:05 +09:00
<input name="latest_only" id="latest_only" type="checkbox" <% if user.preferences.latest_only %>checked<% end %>>
</div>
2018-07-29 10:40:59 +09:00
<div class="pure-control-group">
2018-11-22 04:10:09 +09:00
<label for="unseen_only">Only show unwatched: </label>
2018-07-29 10:40:59 +09:00
<input name="unseen_only" id="unseen_only" type="checkbox" <% if user.preferences.unseen_only %>checked<% end %>>
</div>
2018-08-01 00:44:07 +09:00
<div class="pure-control-group">
2018-11-27 05:28:15 +09:00
<label for="notifications_only">Only show notifications (if there are any): </label>
2018-08-01 00:44:07 +09:00
<input name="notifications_only" id="notifications_only" type="checkbox" <% if user.preferences.notifications_only %>checked<% end %>>
</div>
2018-07-29 10:40:59 +09:00
<legend>Data preferences</legend>
2018-08-31 06:49:38 +09:00
2018-07-29 10:40:59 +09:00
<div class="pure-control-group">
<a href="/clear_watch_history?referer=<%= URI.escape(referer) %>">Clear watch history</a>
</div>
<div class="pure-control-group">
<a href="/data_control?referer=<%= URI.escape(referer) %>">Import/Export data</a>
2018-08-06 09:59:45 +09:00
</div>
<div class="pure-control-group">
2018-08-07 09:45:33 +09:00
<a href="/subscription_manager">Manage subscriptions</a>
2018-07-29 10:40:59 +09:00
</div>
<div class="pure-control-group">
<a href="/feed/history">Watch history</a>
</div>
<div class="pure-control-group">
<a href="/delete_account?referer=<%= URI.escape(referer) %>">Delete account</a>
</div>
2018-07-26 23:59:05 +09:00
<div class="pure-controls">
<button type="submit" class="pure-button pure-button-primary">Save preferences</button>
</div>
</fieldset>
</form>
2018-08-18 01:04:38 +09:00
</div>