-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathsheet_content.rb
More file actions
77 lines (70 loc) · 3.08 KB
/
sheet_content.rb
File metadata and controls
77 lines (70 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# 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 overflow-scroll",
@side_classes
]
}
end
def close_button
button(
type: "button",
class: "absolute end-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