tags: add /tag_versions page.
This commit is contained in:
@@ -48,9 +48,10 @@
|
||||
<li><h2>Tags</h2></li>
|
||||
<li><%= link_to_wiki "Help", "help:tags" %></li>
|
||||
<li><%= link_to_wiki "Cheat sheet", "help:cheatsheet" %></li>
|
||||
<li><%= link_to("Listing", tags_path) %></li>
|
||||
<li><%= link_to("History", tag_versions_path) %></li>
|
||||
<li><%= link_to("Aliases", tag_aliases_path) %></li>
|
||||
<li><%= link_to("Implications", tag_implications_path) %></li>
|
||||
<li><%= link_to("Listing", tags_path) %></li>
|
||||
<li><%= link_to("AI Tags", ai_tags_path) %></li>
|
||||
<li><%= link_to("Related Tags", related_tag_path) %></li>
|
||||
</ul>
|
||||
|
||||
79
app/views/tag_versions/index.html.erb
Normal file
79
app/views/tag_versions/index.html.erb
Normal file
@@ -0,0 +1,79 @@
|
||||
<div id="c-tag-versions">
|
||||
<div id="a-index">
|
||||
<% if @tag %>
|
||||
<h1>Tag History: <%= link_to_search @tag %></h1>
|
||||
<%= link_to "« Back", tag_versions_path, class: "text-xs" %>
|
||||
<% elsif @updater %>
|
||||
<h1>Tag History: <%= link_to_user @updater %></h1>
|
||||
<%= link_to "« Back", tag_versions_path, class: "text-xs" %>
|
||||
<% else %>
|
||||
<h1>Tag History</h1>
|
||||
<% end %>
|
||||
|
||||
<%= search_form_for(tag_versions_path) do |f| %>
|
||||
<%= f.input :name_matches, label: "Tag", input_html: { value: @tag&.name, "data-autocomplete": "tag" } %>
|
||||
<%= f.input :updater_name, label: "User", input_html: { value: @updater&.name, "data-autocomplete": "user" } %>
|
||||
<%= f.input :order, collection: [%w[Newest updated_at], %w[Oldest updated_at_asc]], include_blank: true, selected: params[:search][:order] %>
|
||||
<%= f.submit "Search" %>
|
||||
<% end %>
|
||||
|
||||
<div id="p-<%= listing_type(:tag_id, :updater_id) %>-listing" class="mt-4">
|
||||
<%= table_for @tag_versions, class: "striped autofit", width: "100%" do |t| %>
|
||||
<% t.column "Tag" do |tag_version| %>
|
||||
<span class="<%= tag_class(tag_version) %>">
|
||||
<%= link_to_wiki "?", tag_version.tag.name %>
|
||||
<%= link_to tag_version.tag.name, posts_path(tags: tag_version.tag.name) %>
|
||||
<%= link_to "»", tag_versions_path(search: { tag_id: tag_version.tag_id }) %>
|
||||
</span>
|
||||
<% end %>
|
||||
|
||||
<% t.column "Change", td: { class: "col-expand" } do |tag_version| %>
|
||||
<% if tag_version.first_version? && tag_version.created_at - tag_version.tag.created_at < 1.minute %>
|
||||
Anonymous created <%= link_to_search tag_version %>.
|
||||
<% elsif tag_version.first_version? %>
|
||||
Anonymous updated <%= link_to_search tag_version %>.
|
||||
<% else %>
|
||||
<% if !tag_version.previous_version.is_deprecated? && tag_version.is_deprecated? %>
|
||||
<%= link_to_user tag_version.updater %> deprecated <%= link_to_search tag_version %>.
|
||||
<% elsif tag_version.previous_version.is_deprecated? && !tag_version.is_deprecated? %>
|
||||
<%= link_to_user tag_version.updater %> undeprecated <%= link_to_search tag_version %>.
|
||||
<% end %>
|
||||
|
||||
<% if tag_version.previous_version.category != tag_version.category %>
|
||||
<%= link_to_user tag_version.updater %> changed <%= link_to_search tag_version %> from <%= tag_version.previous_version.category_name.downcase %> to <%= tag_version.category_name.downcase %>.
|
||||
<% end %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
||||
<% t.column "Date" do |tag_version| %>
|
||||
<%= time_ago_in_words_tagged(tag_version.updated_at) %>
|
||||
<% end %>
|
||||
|
||||
<% t.column "User" do |tag_version| %>
|
||||
<%= link_to_user tag_version.updater %>
|
||||
<%= link_to "»", tag_versions_path(search: { **search_params, updater_id: tag_version.updater_id }) %>
|
||||
<% end %>
|
||||
|
||||
<% t.column column: "control" do |tag_version| %>
|
||||
<%= render PopupMenuComponent.new do |menu| %>
|
||||
<% if policy(tag_version.tag).update? %>
|
||||
<% menu.item do %>
|
||||
<%= link_to "Edit tag", edit_tag_path(tag_version.tag) %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
||||
<% unless @tag %>
|
||||
<% menu.item do %>
|
||||
<%= link_to "Tag history", tag_versions_path(search: { tag_id: tag_version.tag_id }) %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<%= numbered_paginator(@tag_versions) %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<%= render "tags/secondary_links" %>
|
||||
@@ -1,6 +1,7 @@
|
||||
<% content_for(:secondary_links) do %>
|
||||
<%= quick_search_form_for(:name_matches, tags_path, "tags", autocomplete: "tag") %>
|
||||
<%= subnav_link_to "Tags", tags_path %>
|
||||
<%= subnav_link_to "History", tag_versions_path %>
|
||||
<%= subnav_link_to("Aliases", tag_aliases_path) %>
|
||||
<%= subnav_link_to("Implications", tag_implications_path) %>
|
||||
<%= subnav_link_to "Request alias/implication", new_bulk_update_request_path %>
|
||||
|
||||
@@ -7,7 +7,8 @@
|
||||
|
||||
<ul>
|
||||
<% unless @wiki_page.is_meta_wiki? %>
|
||||
<li><%= link_to "Tag History", post_versions_path(search: { changed_tags: @wiki_page.title }) %></li>
|
||||
<li><%= link_to "Tag History", tag_versions_path(search: { tag_id: @wiki_page.tag.id }) %></li>
|
||||
<li><%= link_to "Post History", post_versions_path(search: { changed_tags: @wiki_page.title }) %></li>
|
||||
<% end %>
|
||||
<li><%= link_to "Wiki History", wiki_page_versions_path(search: { wiki_page_id: @wiki_page.id }) %></li>
|
||||
<% if Danbooru.config.forum_enabled?.to_s.truthy? %>
|
||||
|
||||
Reference in New Issue
Block a user