3b97b2e5c8
* main: (22 commits) Disable card column buttons when active Prevent comment content from overlapping with reaction button Delete pins belonging to cards in a board with revoked access Update development dependencies in SAAS lockfile Update runtime dependencies Update development dependencies Balance magic link instructions Add `.txt-balance` utility Move handleDesktop inside restoreColumnsDisablingTransitions Adjust border radius Clean up blank slates Add dialog manager to events page More sturated mini bubbles in light mode Brighten mini bubbles in dark mode Use separate cache namespaces for each beta instance Bump boost size up a tick on mobile Move Undo form inside closure message element Phrasing tweak for exceeding storage limit Keep strong tags words on same line Allow ActionText embed reuse and safe purge (#2346) ...
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
<% @page_title = "Home" %>
|
|
<% @header_class = "header--events" %>
|
|
|
|
<%= render "cards/broadcasts", filter: @filter %>
|
|
|
|
<% content_for :header do %>
|
|
<%= render "events/index/add_card_button", user_filtering: @user_filtering %>
|
|
|
|
<h1 class="header__title" data-controller="dialog-manager" data-bridge--title-target="header">
|
|
<% if @user_filtering.boards.many? %>
|
|
<span>Activity <%= @user_filtering.filter.boards.any? ? "in" : "across" %></span>
|
|
<% else %>
|
|
<span>Latest Activity</span>
|
|
<% end %>
|
|
|
|
<%= render "events/index/filter", user_filtering: @user_filtering %>
|
|
</h1>
|
|
|
|
<%= render "events/index/add_board_button", user_filtering: @user_filtering %>
|
|
<% end %>
|
|
|
|
<%= tag.div id: "activity", class: "events", data: { controller: "pagination", pagination_paginate_on_intersection_value: true } do %>
|
|
<%= day_timeline_pagination_frame_tag @day_timeline do %>
|
|
<%= render "events/day", day_timeline: @day_timeline %>
|
|
|
|
<%= day_timeline_pagination_link(@day_timeline, @filter) %>
|
|
<% end %>
|
|
<% end %>
|