mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-08 15:05:22 +02:00
Put back background color
This commit is contained in:
parent
371ef25ac2
commit
3983194025
4 changed files with 15 additions and 9 deletions
|
@ -1,25 +1,26 @@
|
||||||
class MenuItemComponent < ViewComponent::Base
|
class MenuItemComponent < ViewComponent::Base
|
||||||
VARIANTS = %i[link button divider].freeze
|
VARIANTS = %i[link button divider].freeze
|
||||||
|
|
||||||
attr_reader :variant, :text, :icon, :href, :method, :destructive, :confirm, :opts
|
attr_reader :variant, :text, :icon, :href, :method, :destructive, :confirm, :frame, :opts
|
||||||
|
|
||||||
def initialize(variant:, text: nil, icon: nil, href: nil, method: :post, destructive: false, confirm: nil, **opts)
|
def initialize(variant:, text: nil, icon: nil, href: nil, method: :post, destructive: false, confirm: nil, frame: nil, **opts)
|
||||||
@variant = variant.to_sym
|
@variant = variant.to_sym
|
||||||
@text = text
|
@text = text
|
||||||
@icon = icon
|
@icon = icon
|
||||||
@href = href
|
@href = href
|
||||||
@method = method.to_sym
|
@method = method.to_sym
|
||||||
@destructive = destructive
|
@destructive = destructive
|
||||||
@opts = opts
|
|
||||||
@confirm = confirm
|
@confirm = confirm
|
||||||
|
@frame = frame
|
||||||
|
@opts = opts
|
||||||
raise ArgumentError, "Invalid variant: #{@variant}" unless VARIANTS.include?(@variant)
|
raise ArgumentError, "Invalid variant: #{@variant}" unless VARIANTS.include?(@variant)
|
||||||
end
|
end
|
||||||
|
|
||||||
def wrapper(&block)
|
def wrapper(&block)
|
||||||
if variant == :button
|
if variant == :button
|
||||||
button_to href, method: method, class: container_classes, **merged_button_opts, &block
|
button_to href, method: method, class: container_classes, **merged_opts, &block
|
||||||
elsif variant == :link
|
elsif variant == :link
|
||||||
link_to href, class: container_classes, **opts, &block
|
link_to href, class: container_classes, **merged_opts, &block
|
||||||
else
|
else
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
@ -44,7 +45,7 @@ class MenuItemComponent < ViewComponent::Base
|
||||||
].join(" ")
|
].join(" ")
|
||||||
end
|
end
|
||||||
|
|
||||||
def merged_button_opts
|
def merged_opts
|
||||||
merged_opts = opts.dup || {}
|
merged_opts = opts.dup || {}
|
||||||
data = merged_opts.delete(:data) || {}
|
data = merged_opts.delete(:data) || {}
|
||||||
|
|
||||||
|
@ -52,6 +53,10 @@ class MenuItemComponent < ViewComponent::Base
|
||||||
data = data.merge(turbo_confirm: confirm.to_data_attribute)
|
data = data.merge(turbo_confirm: confirm.to_data_attribute)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if frame.present?
|
||||||
|
data = data.merge(turbo_frame: frame)
|
||||||
|
end
|
||||||
|
|
||||||
merged_opts.merge(data: data)
|
merged_opts.merge(data: data)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
text: "Edit chat title",
|
text: "Edit chat title",
|
||||||
href: edit_chat_path(chat, ctx: "list"),
|
href: edit_chat_path(chat, ctx: "list"),
|
||||||
icon: "pencil",
|
icon: "pencil",
|
||||||
data: { turbo_frame: dom_id(chat, "title") }) %>
|
frame: dom_id(chat, "title")) %>
|
||||||
|
|
||||||
<% menu.with_item(
|
<% menu.with_item(
|
||||||
variant: "button",
|
variant: "button",
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
text: "Edit chat title",
|
text: "Edit chat title",
|
||||||
href: edit_chat_path(chat, ctx: "chat"),
|
href: edit_chat_path(chat, ctx: "chat"),
|
||||||
icon: "pencil",
|
icon: "pencil",
|
||||||
data: { turbo_frame: dom_id(chat, "title") }) %>
|
frame: dom_id(chat, "title")) %>
|
||||||
|
|
||||||
<% menu.with_item(
|
<% menu.with_item(
|
||||||
variant: "button",
|
variant: "button",
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
<%= turbo_frame_tag dom_id(@chat, :title), class: "block" do %>
|
<%= turbo_frame_tag dom_id(@chat, :title), class: "block" do %>
|
||||||
|
<% bg_class = params[:ctx] == "chat" ? "bg-container-inset" : "bg-container" %>
|
||||||
<%= styled_form_with model: @chat, data: { controller: "auto-submit-form", auto_submit_form_trigger_event_value: "blur" } do |f| %>
|
<%= styled_form_with model: @chat, data: { controller: "auto-submit-form", auto_submit_form_trigger_event_value: "blur" } do |f| %>
|
||||||
<%= f.text_field :title,
|
<%= f.text_field :title,
|
||||||
data: { auto_submit_form_target: "auto" },
|
data: { auto_submit_form_target: "auto" },
|
||||||
autofocus: true,
|
autofocus: true,
|
||||||
inline: true,
|
inline: true,
|
||||||
class: "w-full rounded-md px-2 py-1 text-sm font-medium bg-container-inset" %>
|
class: "w-full rounded-md px-2 py-1 text-sm font-medium #{bg_class}" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue