Sheet
Extends the Sheet component to display content that complements the main content of the screen.
Usage
Example
Edit profile
Make changes to your profile here. Click save when you're done.
Sheet do SheetTrigger do Button(variant: :outline) { "Open Sheet" } end SheetContent(class: 'sm:max-w-sm') do SheetHeader do SheetTitle { "Edit profile" } SheetDescription { "Make changes to your profile here. Click save when you're done." } end SheetMiddle do label { "Name" } Input(placeholder: "Joel Drapper") { "Joel Drapper" } label { "Email" } Input(placeholder: "joel@drapper.me") end SheetFooter do Button(variant: :outline, data: { action: 'click->ruby-ui--sheet-content#close' }) { "Cancel" } Button(type: "submit") { "Save" } end end end
Side
Use the side property to indicate the edge of the screen where the component will appear.
Edit profile
Make changes to your profile here. Click save when you're done.
div(class: 'grid grid-cols-2 gap-4') do # -- TOP -- Sheet do SheetTrigger do Button(variant: :outline, class: 'w-full justify-center') { :top } end SheetContent(side: :top, class: ("sm:max-w-sm" if [:left, :right].include?(:top))) do SheetHeader do SheetTitle { "Edit profile" } SheetDescription { "Make changes to your profile here. Click save when you're done." } end Form do SheetMiddle do label { "Name" } Input(placeholder: "Joel Drapper") { "Joel Drapper" } label { "Email" } Input(placeholder: "joel@drapper.me") end SheetFooter do Button(variant: :outline, data: { action: 'click->ruby-ui--sheet-content#close' }) { "Cancel" } Button(type: "submit") { "Save" } end end end end end
Installation
Using RubyUI CLI
Run the install command
rails g ruby_ui:component Sheet
Manual installation
1
Add RubyUI::Sheet
to app/components/ruby_ui/sheet.rb
# frozen_string_literal: true module RubyUI class Sheet < Base def view_template(&) div(**attrs, &) end private def default_attrs { data: {controller: "ruby-ui--sheet"} } end end end
2
Add RubyUI::SheetContent
to app/components/ruby_ui/sheet/sheet_content.rb
# frozen_string_literal: true module RubyUI class SheetContent < Base SIDE_CLASS = { top: "inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top", right: "inset-y-0 right-0 h-full border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right", bottom: "inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom", left: "inset-y-0 left-0 h-full border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left" } def initialize(side: :right, **attrs) @side = side @side_classes = SIDE_CLASS[side] super(**attrs) end def view_template(&block) template(data: {ruby_ui__sheet_target: "content"}) do div(data: {controller: "ruby-ui--sheet-content"}) do backdrop div(**attrs) do block&.call close_button end end end end private def default_attrs { data_state: "open", # For animate in class: [ "fixed pointer-events-auto z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:duration-300 data-[state=open]:duration-500", @side_classes ] } end def close_button button( type: "button", class: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground", data_action: "click->ruby-ui--sheet-content#close" ) do svg( width: "15", height: "15", viewbox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", class: "h-4 w-4" ) do |s| s.path( d: "M11.7816 4.03157C12.0062 3.80702 12.0062 3.44295 11.7816 3.2184C11.5571 2.99385 11.193 2.99385 10.9685 3.2184L7.50005 6.68682L4.03164 3.2184C3.80708 2.99385 3.44301 2.99385 3.21846 3.2184C2.99391 3.44295 2.99391 3.80702 3.21846 4.03157L6.68688 7.49999L3.21846 10.9684C2.99391 11.193 2.99391 11.557 3.21846 11.7816C3.44301 12.0061 3.80708 12.0061 4.03164 11.7816L7.50005 8.31316L10.9685 11.7816C11.193 12.0061 11.5571 12.0061 11.7816 11.7816C12.0062 11.557 12.0062 11.193 11.7816 10.9684L8.31322 7.49999L11.7816 4.03157Z", fill: "currentColor", fill_rule: "evenodd", clip_rule: "evenodd" ) end span(class: "sr-only") { "Close" } end end def backdrop div( data_state: "open", data_action: "click->ruby-ui--sheet-content#close", class: "fixed pointer-events-auto inset-0 z-50 bg-background/80 backdrop-blur-sm data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0" ) end end end
3
Add RubyUI::SheetDescription
to app/components/ruby_ui/sheet/sheet_description.rb
# frozen_string_literal: true module RubyUI class SheetDescription < Base def view_template(&) p(**attrs, &) end private def default_attrs { class: "text-sm text-muted-foreground" } end end end
4
Add RubyUI::SheetFooter
to app/components/ruby_ui/sheet/sheet_footer.rb
# frozen_string_literal: true module RubyUI class SheetFooter < Base def view_template(&) div(**attrs, &) end private def default_attrs { class: "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2 gap-y-2 sm:gap-y-0" } end end end
5
Add RubyUI::SheetHeader
to app/components/ruby_ui/sheet/sheet_header.rb
# frozen_string_literal: true module RubyUI class SheetHeader < Base def view_template(&) div(**attrs, &) end private def default_attrs { class: "flex flex-col space-y-1.5 text-center sm:text-left" } end end end
6
Add RubyUI::SheetMiddle
to app/components/ruby_ui/sheet/sheet_middle.rb
# frozen_string_literal: true module RubyUI class SheetMiddle < Base def view_template(&) div(**attrs, &) end private def default_attrs { class: "py-4" } end end end
7
Add RubyUI::SheetTitle
to app/components/ruby_ui/sheet/sheet_title.rb
# frozen_string_literal: true module RubyUI class SheetTitle < Base def view_template(&) h3(**attrs, &) end private def default_attrs { class: "text-lg font-semibold leading-none tracking-tight" } end end end
8
Add RubyUI::SheetTrigger
to app/components/ruby_ui/sheet/sheet_trigger.rb
# frozen_string_literal: true module RubyUI class SheetTrigger < Base def view_template(&) div(**attrs, &) end private def default_attrs { data: {action: "click->ruby-ui--sheet#open"} } end end end
9
Add sheet_content_controller.js
to app/javascript/controllers/ruby_ui/sheet_content_controller.js
import { Controller } from "@hotwired/stimulus" export default class extends Controller { close() { this.element.remove() } }
10
Add sheet_controller.js
to app/javascript/controllers/ruby_ui/sheet_controller.js
import { Controller } from "@hotwired/stimulus" export default class extends Controller { static targets = ["content"] open() { document.body.insertAdjacentHTML("beforeend", this.contentTarget.innerHTML) } }
11
Update the Stimulus controllers manifest file
Importmap!
rake stimulus:manifest:update
Components
Component | Built using | Source |
---|---|---|
Sheet | Phlex | |
SheetContent | Phlex | |
SheetDescription | Phlex | |
SheetFooter | Phlex | |
SheetHeader | Phlex | |
SheetMiddle | Phlex | |
SheetTitle | Phlex | |
SheetTrigger | Phlex | |
SheetContentController | Stimulus JS | |
SheetController | Stimulus JS |