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

266 行
14 KiB
Plaintext
Raw 通常表示 履歴

2018-07-17 01:24:24 +09:00
<% content_for "header" do %>
2018-12-21 06:32:09 +09:00
<title><%= translate(locale, "Preferences") %> - Invidious</title>
2018-07-17 01:24:24 +09:00
<% 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">
2019-05-04 02:15:21 +09:00
<form class="pure-form pure-form-aligned" action="/preferences?referer=<%= URI.escape(referer) %>" method="post">
2018-07-26 23:59:05 +09:00
<fieldset>
2018-12-21 06:32:09 +09:00
<legend><%= translate(locale, "Player preferences") %></legend>
2018-07-17 01:24:24 +09:00
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
2018-12-21 06:32:09 +09:00
<label for="video_loop"><%= translate(locale, "Always loop: ") %></label>
<input name="video_loop" id="video_loop" type="checkbox" <% if preferences.video_loop %>checked<% end %>>
2018-07-26 23:59:05 +09:00
</div>
2018-07-17 01:24:24 +09:00
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
2018-12-21 06:32:09 +09:00
<label for="autoplay"><%= translate(locale, "Autoplay: ") %></label>
<input name="autoplay" id="autoplay" type="checkbox" <% if preferences.autoplay %>checked<% end %>>
2018-07-26 23:59:05 +09:00
</div>
2018-07-17 01:24:24 +09:00
2018-10-30 23:41:23 +09:00
<div class="pure-control-group">
2019-04-19 23:38:27 +09:00
<label for="continue"><%= translate(locale, "Play next by default: ") %></label>
<input name="continue" id="continue" type="checkbox" <% if preferences.continue %>checked<% end %>>
2018-11-12 02:45:05 +09:00
</div>
2019-04-19 23:38:27 +09:00
<div class="pure-control-group">
<label for="continue_autoplay"><%= translate(locale, "Autoplay next video: ") %></label>
<input name="continue_autoplay" id="continue_autoplay" type="checkbox" <% if preferences.continue_autoplay %>checked<% end %>>
</div>
2019-03-13 11:05:49 +09:00
<div class="pure-control-group">
<label for="local"><%= translate(locale, "Proxy videos? ") %></label>
<input name="local" id="local" type="checkbox" <% if preferences.local && !CONFIG.disabled?("local") %>checked<% end %> <% if CONFIG.disabled?("local") %>disabled<% end %>>
2019-03-13 11:05:49 +09:00
</div>
2018-11-12 02:45:05 +09:00
<div class="pure-control-group">
2018-12-21 06:32:09 +09:00
<label for="listen"><%= translate(locale, "Listen by default: ") %></label>
<input name="listen" id="listen" type="checkbox" <% if preferences.listen %>checked<% end %>>
2018-10-30 23:41:23 +09:00
</div>
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
2018-12-21 06:32:09 +09:00
<label for="speed"><%= translate(locale, "Default speed: ") %></label>
2018-07-26 23:59:05 +09:00
<select name="speed" id="speed">
2019-05-02 10:03:39 +09:00
<% {2.0, 1.5, 1.25, 1.0, 0.75, 0.5, 0.25}.each do |option| %>
<option <% if preferences.speed == option %> selected <% end %>><%= option %></option>
<% end %>
2018-07-26 23:59:05 +09:00
</select>
</div>
2018-07-17 01:57:52 +09:00
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
2018-12-21 06:32:09 +09:00
<label for="quality"><%= translate(locale, "Preferred video quality: ") %></label>
2018-07-26 23:59:05 +09:00
<select name="quality" id="quality">
2019-05-02 10:03:39 +09:00
<% {"dash", "hd720", "medium", "small"}.each do |option| %>
<% if !(option == "dash" && CONFIG.disabled?("dash")) %>
<option value="<%= option %>" <% if preferences.quality == option %> selected <% end %>><%= translate(locale, option) %></option>
<% end %>
2019-05-02 10:03:39 +09:00
<% end %>
2018-07-26 23:59:05 +09:00
</select>
</div>
2018-07-17 01:24:24 +09:00
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
2018-12-21 06:32:09 +09:00
<label for="volume"><%= translate(locale, "Player volume: ") %></label>
<input name="volume" id="volume" oninput="update_value(this);" type="range" min="0" max="100" step="5" value="<%= preferences.volume %>">
<span class="pure-form-message-inline" id="volume-value"><%= preferences.volume %></span>
2018-07-26 23:59:05 +09:00
</div>
2018-07-17 01:24:24 +09:00
2018-07-28 23:49:58 +09:00
<div class="pure-control-group">
2019-03-02 07:06:45 +09:00
<label for="comments[0]"><%= translate(locale, "Default comments: ") %></label>
<% preferences.comments.each_with_index do |comments, index| %>
2019-05-02 10:03:39 +09:00
<select name="comments[<%= index %>]" id="comments[<%= index %>]">
<% {"", "youtube", "reddit"}.each do |option| %>
<option value="<%= option %>" <% if preferences.comments[index] == option %> selected <% end %>><%= translate(locale, option) %></option>
<% end %>
</select>
2018-08-07 03:23:36 +09:00
<% end %>
</div>
<div class="pure-control-group">
2019-03-02 07:06:45 +09:00
<label for="captions[0]"><%= translate(locale, "Default captions: ") %></label>
<% preferences.captions.each_with_index do |caption, index| %>
2019-05-02 10:03:39 +09:00
<select class="pure-u-1-6" name="captions[<%= index %>]" id="captions[<%= index %>]">
<% CAPTION_LANGUAGES.each do |option| %>
<option value="<%= option %>" <% if preferences.captions[index] == option %> selected <% end %>><%= translate(locale, option) %></option>
<% end %>
</select>
2018-08-07 03:23:36 +09:00
<% end %>
</div>
2018-08-31 06:49:38 +09:00
<div class="pure-control-group">
2018-12-21 06:32:09 +09:00
<label for="related_videos"><%= translate(locale, "Show related videos? ") %></label>
<input name="related_videos" id="related_videos" type="checkbox" <% if preferences.related_videos %>checked<% end %>>
2018-08-31 06:49:38 +09:00
</div>
2019-05-01 13:39:04 +09:00
<div class="pure-control-group">
<label for="annotations"><%= translate(locale, "Show annotations by default? ") %></label>
<input name="annotations" id="annotations" type="checkbox" <% if preferences.annotations %>checked<% end %>>
</div>
2018-12-21 06:32:09 +09:00
<legend><%= translate(locale, "Visual preferences") %></legend>
2018-08-31 06:49:38 +09:00
2018-07-26 23:59:05 +09:00
<div class="pure-control-group">
2018-12-21 06:32:09 +09:00
<label for="locale"><%= translate(locale, "Language: ") %></label>
<select name="locale" id="locale">
2019-05-02 10:03:39 +09:00
<% LOCALES.each_key do |option| %>
<option value="<%= option %>" <% if preferences.locale == option %> selected <% end %>><%= option %></option>
<% end %>
2018-12-21 06:32:09 +09:00
</select>
</div>
<div class="pure-control-group">
<label for="dark_mode"><%= translate(locale, "Dark mode: ") %></label>
<input name="dark_mode" id="dark_mode" type="checkbox" <% if preferences.dark_mode %>checked<% end %>>
2018-07-26 23:59:05 +09:00
</div>
2018-07-17 01:24:24 +09:00
2018-07-27 02:09:29 +09:00
<div class="pure-control-group">
2018-12-21 06:32:09 +09:00
<label for="thin_mode"><%= translate(locale, "Thin mode: ") %></label>
<input name="thin_mode" id="thin_mode" type="checkbox" <% if preferences.thin_mode %>checked<% end %>>
2018-07-27 02:09:29 +09:00
</div>
<% if env.get? "user" %>
2019-05-02 10:03:39 +09:00
<legend><%= translate(locale, "Subscription preferences") %></legend>
<div class="pure-control-group">
<label for="annotations_subscribed"><%= translate(locale, "Show annotations by default for subscribed channels? ") %></label>
<input name="annotations_subscribed" id="annotations_subscribed" type="checkbox" <% if preferences.annotations_subscribed %>checked<% end %>>
</div>
<div class="pure-control-group">
<label for="redirect_feed"><%= translate(locale, "Redirect homepage to feed: ") %></label>
<input name="redirect_feed" id="redirect_feed" type="checkbox" <% if preferences.redirect_feed %>checked<% end %>>
</div>
<div class="pure-control-group">
<label for="max_results"><%= translate(locale, "Number of videos shown in feed: ") %></label>
<input name="max_results" id="max_results" type="number" value="<%= preferences.max_results %>">
</div>
<div class="pure-control-group">
<label for="sort"><%= translate(locale, "Sort videos by: ") %></label>
<select name="sort" id="sort">
<% {"published", "published - reverse", "alphabetically", "alphabetically - reverse", "channel name", "channel name - reverse"}.each do |option| %>
<option value="<%= option %>" <% if preferences.sort == option %> selected <% end %>><%= translate(locale, option) %></option>
<% end %>
</select>
</div>
<div class="pure-control-group">
<% if preferences.unseen_only %>
<label for="latest_only"><%= translate(locale, "Only show latest unwatched video from channel: ") %></label>
<% else %>
<label for="latest_only"><%= translate(locale, "Only show latest video from channel: ") %></label>
<% end %>
<input name="latest_only" id="latest_only" type="checkbox" <% if preferences.latest_only %>checked<% end %>>
</div>
<div class="pure-control-group">
<label for="unseen_only"><%= translate(locale, "Only show unwatched: ") %></label>
<input name="unseen_only" id="unseen_only" type="checkbox" <% if preferences.unseen_only %>checked<% end %>>
</div>
<div class="pure-control-group">
<label for="notifications_only"><%= translate(locale, "Only show notifications (if there are any): ") %></label>
<input name="notifications_only" id="notifications_only" type="checkbox" <% if preferences.notifications_only %>checked<% end %>>
</div>
2019-05-05 21:46:01 +09:00
2019-06-02 08:06:44 +09:00
<% # Web notifications are only supported over HTTPS %>
<% if Kemal.config.ssl || config.https_only %>
2019-05-05 21:46:01 +09:00
<div class="pure-control-group">
<a href="#" onclick="Notification.requestPermission()"><%= translate(locale, "Enable web notifications") %></a>
</div>
<% end %>
<% end %>
2018-08-01 00:44:07 +09:00
2019-03-02 07:06:45 +09:00
<% if env.get?("user") && config.admins.includes? env.get?("user").as(User).email %>
2019-05-02 10:03:39 +09:00
<legend><%= translate(locale, "Administrator preferences") %></legend>
<div class="pure-control-group">
<label for="default_home"><%= translate(locale, "Default homepage: ") %></label>
<select name="default_home" id="default_home">
<% {"Popular", "Top", "Trending", "Subscriptions"}.each do |option| %>
<option value="<%= option %>" <% if config.default_home == option %> selected <% end %>><%= translate(locale, option) %></option>
<% end %>
</select>
</div>
<div class="pure-control-group">
<label for="feed_menu"><%= translate(locale, "Feed menu: ") %></label>
<% 4.times do |index| %>
<select name="feed_menu[<%= index %>]" id="feed_menu[<%= index %>]">
<% {"", "Popular", "Top", "Trending", "Subscriptions"}.each do |option| %>
<option value="<%= option %>" <% if config.feed_menu[index]? == option %> selected <% end %>><%= translate(locale, option) %></option>
<% end %>
</select>
<% end %>
</div>
<div class="pure-control-group">
<label for="top_enabled"><%= translate(locale, "Top enabled? ") %></label>
<input name="top_enabled" id="top_enabled" type="checkbox" <% if config.top_enabled %>checked<% end %>>
</div>
<div class="pure-control-group">
<label for="captcha_enabled"><%= translate(locale, "CAPTCHA enabled? ") %></label>
<input name="captcha_enabled" id="captcha_enabled" type="checkbox" <% if config.captcha_enabled %>checked<% end %>>
</div>
<div class="pure-control-group">
<label for="login_enabled"><%= translate(locale, "Login enabled? ") %></label>
<input name="login_enabled" id="login_enabled" type="checkbox" <% if config.login_enabled %>checked<% end %>>
</div>
<div class="pure-control-group">
<label for="registration_enabled"><%= translate(locale, "Registration enabled? ") %></label>
<input name="registration_enabled" id="registration_enabled" type="checkbox" <% if config.registration_enabled %>checked<% end %>>
</div>
<div class="pure-control-group">
<label for="statistics_enabled"><%= translate(locale, "Report statistics? ") %></label>
<input name="statistics_enabled" id="statistics_enabled" type="checkbox" <% if config.statistics_enabled %>checked<% end %>>
</div>
2019-03-02 07:06:45 +09:00
<% end %>
<% if env.get? "user" %>
2019-05-02 10:03:39 +09:00
<legend><%= translate(locale, "Data preferences") %></legend>
2018-08-31 06:49:38 +09:00
2019-05-02 10:03:39 +09:00
<div class="pure-control-group">
<a href="/clear_watch_history?referer=<%= URI.escape(referer) %>"><%= translate(locale, "Clear watch history") %></a>
</div>
2019-03-02 07:06:45 +09:00
2019-05-02 10:03:39 +09:00
<div class="pure-control-group">
<a href="/change_password?referer=<%= URI.escape(referer) %>"><%= translate(locale, "Change password") %></a>
</div>
2019-04-23 00:18:17 +09:00
2019-05-02 10:03:39 +09:00
<div class="pure-control-group">
<a href="/data_control?referer=<%= URI.escape(referer) %>"><%= translate(locale, "Import/export data") %></a>
</div>
2018-08-06 09:59:45 +09:00
2019-05-02 10:03:39 +09:00
<div class="pure-control-group">
<a href="/subscription_manager"><%= translate(locale, "Manage subscriptions") %></a>
</div>
2018-07-29 10:40:59 +09:00
2019-05-02 10:03:39 +09:00
<div class="pure-control-group">
<a href="/token_manager"><%= translate(locale, "Manage tokens") %></a>
</div>
2019-04-19 06:23:50 +09:00
2019-05-02 10:03:39 +09:00
<div class="pure-control-group">
<a href="/feed/history"><%= translate(locale, "Watch history") %></a>
</div>
2019-05-02 10:03:39 +09:00
<div class="pure-control-group">
<a href="/delete_account?referer=<%= URI.escape(referer) %>"><%= translate(locale, "Delete account") %></a>
</div>
<% end %>
2018-07-26 23:59:05 +09:00
<div class="pure-controls">
2018-12-21 06:32:09 +09:00
<button type="submit" class="pure-button pure-button-primary"><%= translate(locale, "Save preferences") %></button>
2018-07-26 23:59:05 +09:00
</div>
</fieldset>
</form>
2018-08-18 01:04:38 +09:00
</div>