lightning_ui_kit 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/app/assets/builds/{lightning_ui.css → lightning_ui_kit.css} +422 -100
  4. data/app/assets/builds/lightning_ui_kit.js +6 -0
  5. data/app/assets/builds/{lightning_ui.js.map → lightning_ui_kit.js.map} +4 -4
  6. data/app/components/{lightning_ui → lightning_ui_kit}/alert_component.rb +1 -1
  7. data/app/components/{lightning_ui → lightning_ui_kit}/avatar_component.rb +1 -1
  8. data/app/components/lightning_ui_kit/badge_component.rb +68 -0
  9. data/app/components/{lightning_ui → lightning_ui_kit}/banner_component.rb +2 -2
  10. data/app/components/{lightning_ui → lightning_ui_kit}/base_component.rb +2 -2
  11. data/app/components/{lightning_ui → lightning_ui_kit}/button_component.rb +1 -1
  12. data/app/components/{lightning_ui → lightning_ui_kit}/checkbox_component.html.erb +1 -1
  13. data/app/components/{lightning_ui → lightning_ui_kit}/checkbox_component.rb +1 -1
  14. data/app/components/{lightning_ui → lightning_ui_kit}/description_list/item_component.rb +1 -1
  15. data/app/components/lightning_ui_kit/description_list_component.rb +5 -0
  16. data/app/components/lightning_ui_kit/dropdown/item_component.rb +5 -0
  17. data/app/components/{lightning_ui → lightning_ui_kit}/dropdown_component.rb +1 -1
  18. data/app/components/lightning_ui_kit/dropzone_component.html.erb +82 -0
  19. data/app/components/lightning_ui_kit/dropzone_component.rb +61 -0
  20. data/app/components/lightning_ui_kit/errors.rb +34 -0
  21. data/app/components/lightning_ui_kit/file_input_component.html.erb +50 -0
  22. data/app/components/lightning_ui_kit/file_input_component.rb +62 -0
  23. data/app/components/{lightning_ui → lightning_ui_kit}/input_component.html.erb +21 -14
  24. data/app/components/{lightning_ui → lightning_ui_kit}/input_component.rb +18 -3
  25. data/app/components/{lightning_ui → lightning_ui_kit}/link_component.rb +1 -1
  26. data/app/components/{lightning_ui → lightning_ui_kit}/modal_component.rb +1 -1
  27. data/app/components/{lightning_ui → lightning_ui_kit}/pagination_component.rb +1 -1
  28. data/app/components/lightning_ui_kit/select_component.html.erb +40 -0
  29. data/app/components/lightning_ui_kit/select_component.rb +55 -0
  30. data/app/components/lightning_ui_kit/sidebar_component.rb +4 -0
  31. data/app/components/{lightning_ui → lightning_ui_kit}/skeleton_component.rb +1 -1
  32. data/app/components/lightning_ui_kit/spinner_component.rb +4 -0
  33. data/app/components/{lightning_ui → lightning_ui_kit}/switch_component.html.erb +8 -1
  34. data/app/components/{lightning_ui → lightning_ui_kit}/switch_component.rb +13 -2
  35. data/app/components/{lightning_ui → lightning_ui_kit}/table/action_component.rb +1 -1
  36. data/app/components/{lightning_ui → lightning_ui_kit}/table/column_component.rb +1 -1
  37. data/app/components/{lightning_ui → lightning_ui_kit}/table_component.rb +3 -3
  38. data/app/components/{lightning_ui → lightning_ui_kit}/text_component.rb +1 -1
  39. data/app/components/{lightning_ui → lightning_ui_kit}/textarea_component.html.erb +15 -8
  40. data/app/components/{lightning_ui → lightning_ui_kit}/textarea_component.rb +18 -3
  41. data/app/helpers/lightning_ui_kit/application_helper.rb +7 -0
  42. data/app/helpers/{lightning_ui → lightning_ui_kit}/heroicon_helper.rb +1 -1
  43. data/app/javascript/lightning_ui_kit/controllers/dropzone_controller.js +76 -0
  44. data/app/javascript/{lightning_ui → lightning_ui_kit}/index.js +5 -0
  45. data/config/locales/en.yml +3 -0
  46. data/lib/{lightning_ui → lightning_ui_kit}/engine.rb +5 -6
  47. data/lib/lightning_ui_kit/version.rb +3 -0
  48. data/lib/lightning_ui_kit.rb +6 -0
  49. metadata +78 -72
  50. data/app/assets/builds/lightning_ui.js +0 -6
  51. data/app/components/lightning_ui/badge_component.rb +0 -43
  52. data/app/components/lightning_ui/description_list_component.rb +0 -5
  53. data/app/components/lightning_ui/dropdown/item_component.rb +0 -5
  54. data/app/components/lightning_ui/select_component.html.erb +0 -20
  55. data/app/components/lightning_ui/select_component.rb +0 -25
  56. data/app/components/lightning_ui/sidebar_component.rb +0 -4
  57. data/app/components/lightning_ui/spinner_component.rb +0 -4
  58. data/app/helpers/lightning_ui/application_helper.rb +0 -7
  59. data/lib/lightning_ui/version.rb +0 -3
  60. data/lib/lightning_ui.rb +0 -6
  61. data/lib/tasks/lightning_ui_tasks.rake +0 -4
  62. /data/app/assets/stylesheets/{lightning_ui → lightning_ui_kit}/application.css +0 -0
  63. /data/app/components/{lightning_ui → lightning_ui_kit}/alert_component.html.erb +0 -0
  64. /data/app/components/{lightning_ui → lightning_ui_kit}/avatar_component.html.erb +0 -0
  65. /data/app/components/{lightning_ui → lightning_ui_kit}/badge_component.html.erb +0 -0
  66. /data/app/components/{lightning_ui → lightning_ui_kit}/banner_component.html.erb +0 -0
  67. /data/app/components/{lightning_ui → lightning_ui_kit}/button_component.html.erb +0 -0
  68. /data/app/components/{lightning_ui → lightning_ui_kit}/description_list/item_component.html.erb +0 -0
  69. /data/app/components/{lightning_ui → lightning_ui_kit}/description_list_component.html.erb +0 -0
  70. /data/app/components/{lightning_ui → lightning_ui_kit}/dropdown_component.html.erb +0 -0
  71. /data/app/components/{lightning_ui → lightning_ui_kit}/link_component.html.erb +0 -0
  72. /data/app/components/{lightning_ui → lightning_ui_kit}/modal_component.html.erb +0 -0
  73. /data/app/components/{lightning_ui → lightning_ui_kit}/pagination_component.html.erb +0 -0
  74. /data/app/components/{lightning_ui → lightning_ui_kit}/sidebar_component.html.erb +0 -0
  75. /data/app/components/{lightning_ui → lightning_ui_kit}/skeleton_component.html.erb +0 -0
  76. /data/app/components/{lightning_ui → lightning_ui_kit}/spinner_component.html.erb +0 -0
  77. /data/app/components/{lightning_ui → lightning_ui_kit}/table_component.html.erb +0 -0
  78. /data/app/components/{lightning_ui → lightning_ui_kit}/text_component.html.erb +0 -0
  79. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/accordion_controller.js +0 -0
  80. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/banner_controller.js +0 -0
  81. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/checkbox_controller.js +0 -0
  82. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/clipboard_controller.js +0 -0
  83. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/dropdown_controller.js +0 -0
  84. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/main_controller.js +0 -0
  85. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/modal_controller.js +0 -0
  86. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/reveal_controller.js +0 -0
  87. /data/app/javascript/{lightning_ui → lightning_ui_kit}/controllers/switch_controller.js +0 -0
@@ -0,0 +1,40 @@
1
+ <%= tag.div data:, class:"[&>[data-slot=label]+[data-slot=control]]:mt-3 [&>[data-slot=label]+[data-slot=description]]:mt-1 [&>[data-slot=description]+[data-slot=control]]:mt-3 [&>[data-slot=control]+[data-slot=description]]:mt-3 [&>[data-slot=control]+[data-slot=error]]:mt-3 *:data-[slot=label]:font-medium" do %>
2
+ <% if @label %>
3
+ <label data-slot="label" class="text-base/6 text-zinc-950 select-none data-disabled:opacity-50 sm:text-sm/6">
4
+ <%= @label %>
5
+ </label>
6
+ <% end %>
7
+ <% if @description %>
8
+ <p data-slot="description" class="text-base/6 text-zinc-500 data-disabled:opacity-50 sm:text-sm/6">
9
+ <%= @description %>
10
+ </p>
11
+ <% end %>
12
+ <span data-slot="control"
13
+ class="group relative block w-full before:absolute before:inset-px before:rounded-[calc(var(--radius-lg)-1px)] before:bg-white before:shadow-sm after:pointer-events-none after:absolute after:inset-0 after:rounded-lg after:ring-transparent after:ring-inset focus:after:ring-2 focus:after:ring-blue-500 has-data-disabled:opacity-50 has-data-disabled:before:bg-zinc-950/5 has-data-disabled:before:shadow-none">
14
+ <% if @form %>
15
+ <%= @form.select(
16
+ @name,
17
+ @options_for_select,
18
+ {multiple: @multiple},
19
+ class: "relative block w-full appearance-none rounded-lg py-[calc(--spacing(2.5)-1px)] sm:py-[calc(--spacing(1.5)-1px)] pr-[calc(--spacing(10)-1px)] pl-[calc(--spacing(3.5)-1px)] sm:pr-[calc(--spacing(9)-1px)] sm:pl-[calc(--spacing(3)-1px)] [&_optgroup]:font-semibold text-base/6 text-zinc-950 placeholder:text-zinc-500 sm:text-sm/6 border border-zinc-950/10 hover:border-zinc-950/20 bg-transparent focus:outline-hidden data-invalid:border-red-500 data-invalid:hover:border-red-500 data-disabled:border-zinc-950/20 data-disabled:opacity-100",
20
+ data: select_data
21
+ ) %>
22
+ <% else %>
23
+ <%= select_tag(
24
+ @name,
25
+ @options_for_select,
26
+ multiple: @multiple,
27
+ class: "relative block w-full appearance-none rounded-lg py-[calc(--spacing(2.5)-1px)] sm:py-[calc(--spacing(1.5)-1px)] pr-[calc(--spacing(10)-1px)] pl-[calc(--spacing(3.5)-1px)] sm:pr-[calc(--spacing(9)-1px)] sm:pl-[calc(--spacing(3)-1px)] [&_optgroup]:font-semibold text-base/6 text-zinc-950 placeholder:text-zinc-500 sm:text-sm/6 border border-zinc-950/10 hover:border-zinc-950/20 bg-transparent focus:outline-hidden data-invalid:border-red-500 data-invalid:hover:border-red-500 data-disabled:border-zinc-950/20 data-disabled:opacity-100",
28
+ data: select_data
29
+ ) %>
30
+ <% end %>
31
+ <span class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2"><svg class="size-5 stroke-zinc-500 group-has-data-disabled:stroke-zinc-600 sm:size-4 forced-colors:stroke-[CanvasText]" viewBox="0 0 16 16" aria-hidden="true" fill="none"><path d="M5.75 10.75L8 13L10.25 10.75" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path><path d="M10.25 5.25L8 3L5.75 5.25" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
32
+ </span>
33
+ <% if has_errors? %>
34
+ <%= tag.p(
35
+ error_messages,
36
+ class: "text-base/6 text-red-600 data-disabled:opacity-50 sm:text-sm/6",
37
+ data: error_data
38
+ ) %>
39
+ <% end %>
40
+ <% end %>
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ class LightningUiKit::SelectComponent < LightningUiKit::BaseComponent
4
+ include LightningUiKit::Errors
5
+
6
+ def initialize(name:, form: nil, label: nil, errors: nil, description: nil, disabled: false, options_for_select: [], multiple: false, **options)
7
+ @name = name
8
+ @form = form
9
+ @label = label
10
+ @errors = errors
11
+ @multiple = multiple
12
+ @description = description
13
+ @disabled = disabled
14
+ @options_for_select = options_for_select
15
+ @options = options
16
+ end
17
+
18
+ def data
19
+ default_data = {
20
+ slot: "field",
21
+ action: "click->switch#toggle",
22
+ controller: "select",
23
+ disabled: @disabled
24
+ }
25
+
26
+ default_data.merge(@options[:data] || {})
27
+ end
28
+
29
+ def select_data
30
+ {}.tap do |data|
31
+ if has_errors?
32
+ data[:invalid] = "true"
33
+ end
34
+ end
35
+ end
36
+
37
+ def control_data
38
+ {slot: "control"}.merge(@options[:control_data] || {}).tap do |data|
39
+ if @disabled
40
+ data[:disabled] = "true"
41
+ end
42
+ if has_errors?
43
+ data[:invalid] = "true"
44
+ end
45
+ end
46
+ end
47
+
48
+ def error_data
49
+ {slot: "error"}.merge(@options[:error_data] || {}).tap do |data|
50
+ if @disabled
51
+ data[:disabled] = "true"
52
+ end
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ class LightningUiKit::SidebarComponent < LightningUiKit::BaseComponent
4
+ end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class LightningUi::SkeletonComponent < LightningUi::BaseComponent
3
+ class LightningUiKit::SkeletonComponent < LightningUiKit::BaseComponent
4
4
  def initialize(with_title: false, lines: 3)
5
5
  @with_title = with_title
6
6
  @lines = lines
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ class LightningUiKit::SpinnerComponent < LightningUiKit::BaseComponent
4
+ end
@@ -14,7 +14,7 @@
14
14
  </p>
15
15
  <% end %>
16
16
  <%= tag.button(
17
- class: "group relative isolate inline-flex h-6 w-10 cursor-default rounded-full p-[3px] sm:h-5 sm:w-8 transition duration-0 ease-in-out data-changing:duration-200 forced-colors:outline forced-colors:[--switch-bg:Highlight] ] bg-zinc-200 ring-1 ring-black/5 ring-inset data-checked:bg-(--switch-bg) data-checked:ring-(--switch-bg-ring) ) ) focus:outline-hidden data-focus:outline-2 data-focus:outline-offset-2 data-focus:outline-blue-500 data-hover:ring-black/15 data-hover:data-checked:ring-(--switch-bg-ring) ) data-disabled:bg-zinc-200 data-disabled:opacity-50 data-disabled:data-checked:bg-zinc-200 data-disabled:data-checked:ring-black/5 [--switch-bg-ring:var(--color-zinc-950)]/90 [--switch-bg:var(--color-zinc-900)] ] [--switch-ring:var(--color-zinc-950)]/90 [--switch-shadow:var(--color-black)]/10 [--switch:white]",
17
+ class: "group relative isolate inline-flex h-6 w-10 cursor-default rounded-full p-[3px] sm:h-5 sm:w-8 transition duration-0 ease-in-out data-changing:duration-200 forced-colors:outline forced-colors:[--switch-bg:Highlight] ] bg-zinc-200 ring-1 ring-black/5 ring-inset data-checked:bg-(--switch-bg) data-checked:ring-(--switch-bg-ring) ) ) focus:outline-hidden data-focus:outline-2 data-focus:outline-offset-2 data-focus:outline-blue-500 hover:ring-black/15 hover:data-checked:ring-(--switch-bg-ring) ) data-disabled:bg-zinc-200 data-disabled:opacity-50 data-disabled:data-checked:bg-zinc-200 data-disabled:data-checked:ring-black/5 [--switch-bg-ring:var(--color-zinc-950)]/90 [--switch-bg:var(--color-zinc-900)] ] [--switch-ring:var(--color-zinc-950)]/90 [--switch-shadow:var(--color-black)]/10 [--switch:white]",
18
18
  aria: { checked: @enabled },
19
19
  role: "switch",
20
20
  type: "button",
@@ -35,4 +35,11 @@
35
35
  ) %>
36
36
  <% end %>
37
37
  <% end %>
38
+ <% if has_errors? %>
39
+ <%= tag.p(
40
+ error_messages,
41
+ class: "text-base/6 text-red-600 data-disabled:opacity-50 sm:text-sm/6",
42
+ data: error_data
43
+ ) %>
44
+ <% end %>
38
45
  </div>
@@ -1,10 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class LightningUi::SwitchComponent < LightningUi::BaseComponent
4
- def initialize(name:, form: nil, label: nil, description: nil, enabled: false, disabled: false, **options)
3
+ class LightningUiKit::SwitchComponent < LightningUiKit::BaseComponent
4
+ include LightningUiKit::Errors
5
+
6
+ def initialize(name:, form: nil, label: nil, error: nil, description: nil, enabled: false, disabled: false, **options)
5
7
  @name = name
6
8
  @form = form
7
9
  @label = label
10
+ @error = error
8
11
  @description = description
9
12
  @enabled = enabled
10
13
  @disabled = disabled
@@ -28,4 +31,12 @@ class LightningUi::SwitchComponent < LightningUi::BaseComponent
28
31
  end
29
32
  end
30
33
  end
34
+
35
+ def error_data
36
+ {slot: "error"}.merge(@options[:error_data] || {}).tap do |data|
37
+ if @disabled
38
+ data[:disabled] = "true"
39
+ end
40
+ end
41
+ end
31
42
  end
@@ -1,4 +1,4 @@
1
- class LightningUi::Table::ActionComponent < LightningUi::BaseComponent
1
+ class LightningUiKit::Table::ActionComponent < LightningUiKit::BaseComponent
2
2
  def initialize(&block)
3
3
  @block = block
4
4
  end
@@ -1,4 +1,4 @@
1
- class LightningUi::Table::ColumnComponent < LightningUi::BaseComponent
1
+ class LightningUiKit::Table::ColumnComponent < LightningUiKit::BaseComponent
2
2
  attr_reader :title
3
3
 
4
4
  def initialize(title, &block)
@@ -1,11 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class LightningUi::TableComponent < LightningUi::BaseComponent
3
+ class LightningUiKit::TableComponent < LightningUiKit::BaseComponent
4
4
  renders_many :columns, ->(title, &block) do
5
- LightningUi::Table::ColumnComponent.new(title, &block)
5
+ LightningUiKit::Table::ColumnComponent.new(title, &block)
6
6
  end
7
7
  renders_many :actions, ->(&block) do
8
- LightningUi::Table::ActionComponent.new(&block)
8
+ LightningUiKit::Table::ActionComponent.new(&block)
9
9
  end
10
10
 
11
11
  def initialize(data:, actions_title: "Actions", empty_message: "No data available")
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class LightningUi::TextComponent < LightningUi::BaseComponent
3
+ class LightningUiKit::TextComponent < LightningUiKit::BaseComponent
4
4
  def initialize(size: :md, **options)
5
5
  @size = size
6
6
  @options = options
@@ -2,12 +2,12 @@
2
2
  class: "[&>[data-slot=label]+[data-slot=control]]:mt-3 [&>[data-slot=label]+[data-slot=description]]:mt-1 [&>[data-slot=description]+[data-slot=control]]:mt-3 [&>[data-slot=control]+[data-slot=description]]:mt-3 [&>[data-slot=control]+[data-slot=error]]:mt-3 *:data-[slot=label]:font-medium",
3
3
  data:
4
4
  ) do %>
5
- <% if @label %>
6
- <%= tag.label(
7
- @label,
8
- class: "text-base/6 text-zinc-950 select-none data-disabled:opacity-50 sm:text-sm/6",
9
- data: label_data
10
- ) %>
5
+ <% if @label %>
6
+ <%= tag.label(
7
+ @label,
8
+ class: "text-base/6 text-zinc-950 select-none data-disabled:opacity-50 sm:text-sm/6",
9
+ data: label_data
10
+ ) %>
11
11
  <% end %>
12
12
  <% if @description %>
13
13
  <%= tag.p(
@@ -25,7 +25,7 @@
25
25
  cols: @cols,
26
26
  multiple: @multiple,
27
27
  data: input_data,
28
- class: "relative block w-full appearance-none rounded-lg px-[calc(--spacing(3.5)-1px)] py-[calc(--spacing(2.5)-1px)] sm:px-[calc(--spacing(3)-1px)] sm:py-[calc(--spacing(1.5)-1px)] text-base/6 text-zinc-950 placeholder:text-zinc-500 sm:text-sm/6 border border-zinc-950/10 data-hover:border-zinc-950/20 bg-transparent focus:outline-hidden data-invalid:border-red-500 data-invalid:data-hover:border-red-500 dark:data-invalid:data-hover:border-red-500 data-disabled:border-zinc-950/20",
28
+ class: "relative block w-full appearance-none rounded-lg px-[calc(--spacing(3.5)-1px)] py-[calc(--spacing(2.5)-1px)] sm:px-[calc(--spacing(3)-1px)] sm:py-[calc(--spacing(1.5)-1px)] text-base/6 text-zinc-950 placeholder:text-zinc-500 sm:text-sm/6 border border-zinc-950/10 hover:border-zinc-950/20 bg-transparent focus:outline-hidden data-invalid:border-red-500 data-invalid:hover:border-red-500 dark:data-invalid:hover:border-red-500 data-disabled:border-zinc-950/20",
29
29
  disabled: @disabled,
30
30
  autofocus: @autofocus
31
31
  ) %>
@@ -39,10 +39,17 @@
39
39
  cols: @cols,
40
40
  multiple: @multiple,
41
41
  data: input_data,
42
- class: "relative block w-full appearance-none rounded-lg px-[calc(--spacing(3.5)-1px)] py-[calc(--spacing(2.5)-1px)] sm:px-[calc(--spacing(3)-1px)] sm:py-[calc(--spacing(1.5)-1px)] text-base/6 text-zinc-950 placeholder:text-zinc-500 sm:text-sm/6 border border-zinc-950/10 data-hover:border-zinc-950/20 bg-transparent focus:outline-hidden data-invalid:border-red-500 data-invalid:data-hover:border-red-500 dark:data-invalid:data-hover:border-red-500 data-disabled:border-zinc-950/20",
42
+ class: "relative block w-full appearance-none rounded-lg px-[calc(--spacing(3.5)-1px)] py-[calc(--spacing(2.5)-1px)] sm:px-[calc(--spacing(3)-1px)] sm:py-[calc(--spacing(1.5)-1px)] text-base/6 text-zinc-950 placeholder:text-zinc-500 sm:text-sm/6 border border-zinc-950/10 hover:border-zinc-950/20 bg-transparent focus:outline-hidden data-invalid:border-red-500 data-invalid:hover:border-red-500 dark:data-invalid:hover:border-red-500 data-disabled:border-zinc-950/20",
43
43
  disabled: @disabled,
44
44
  autofocus: @autofocus
45
45
  ) %>
46
46
  </span>
47
47
  <% end %>
48
+ <% if has_errors? %>
49
+ <%= tag.p(
50
+ error_messages,
51
+ class: "text-base/6 text-red-600 data-disabled:opacity-50 sm:text-sm/6",
52
+ data: error_data
53
+ ) %>
54
+ <% end %>
48
55
  <% end %>
@@ -1,7 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class LightningUi::TextareaComponent < LightningUi::BaseComponent
4
- def initialize(name:, value: nil, autofocus: false, label: nil, form: nil, type: :text, description: nil, disabled: false, multiple: false, rows: 3, cols: nil, **options)
3
+ class LightningUiKit::TextareaComponent < LightningUiKit::BaseComponent
4
+ include LightningUiKit::Errors
5
+
6
+ def initialize(name:, value: nil, autofocus: false, label: nil, form: nil, type: :text, error: nil, description: nil, disabled: false, multiple: false, rows: 3, cols: nil, **options)
5
7
  @name = name
6
8
  @value = value
7
9
  @disabled = disabled
@@ -9,6 +11,7 @@ class LightningUi::TextareaComponent < LightningUi::BaseComponent
9
11
  @rows = rows
10
12
  @multiple = multiple
11
13
  @cols = cols
14
+ @error = error
12
15
  @label = label
13
16
  @form = form
14
17
  @type = type
@@ -21,7 +24,11 @@ class LightningUi::TextareaComponent < LightningUi::BaseComponent
21
24
  end
22
25
 
23
26
  def input_data
24
- @options[:input_data] || {}
27
+ (@options[:input_data] || {}).tap do |data|
28
+ if has_errors?
29
+ data[:invalid] = "true"
30
+ end
31
+ end
25
32
  end
26
33
 
27
34
  def label_data
@@ -39,4 +46,12 @@ class LightningUi::TextareaComponent < LightningUi::BaseComponent
39
46
  end
40
47
  end
41
48
  end
49
+
50
+ def error_data
51
+ {slot: "error"}.merge(@options[:error_data] || {}).tap do |data|
52
+ if @disabled
53
+ data[:disabled] = "true"
54
+ end
55
+ end
56
+ end
42
57
  end
@@ -0,0 +1,7 @@
1
+ module LightningUiKit
2
+ module ApplicationHelper
3
+ def lui_asset_path(file)
4
+ "/lightning_ui_kit-assets/#{file}".gsub("//", "/")
5
+ end
6
+ end
7
+ end
@@ -1,6 +1,6 @@
1
1
  # require "heroicon"
2
2
 
3
- module LightningUi
3
+ module LightningUiKit
4
4
  module HeroiconHelper
5
5
  def heroicon(name, variant: Heroicons.configuration.variant, options: {}, path_options: {})
6
6
  raw Heroicons::Icon.render(
@@ -0,0 +1,76 @@
1
+ import { Controller } from "@hotwired/stimulus"
2
+ import { DirectUpload } from "@rails/activestorage"
3
+
4
+ class Upload {
5
+ constructor(file, controller) {
6
+ this.controller = controller
7
+ this.file = file;
8
+ this.directUpload = new DirectUpload(file, this.controller.inputTarget.dataset.directUploadUrl, this);
9
+ }
10
+
11
+ process() {
12
+ this.insertUpload();
13
+
14
+ this.directUpload.create((error, blob) => {
15
+ if (error) {
16
+ const fileContainer = this.controller.filesTarget.querySelector(`#upload_${this.directUpload.id}`)
17
+ const status = fileContainer.querySelector("[data-lui-dropzone-target='status']")
18
+ status.textContent = "Failed. " + error
19
+ status.classList.add("text-red-500")
20
+ } else {
21
+ const hiddenField = document.createElement('input')
22
+ hiddenField.setAttribute("type", "hidden");
23
+ hiddenField.setAttribute("value", blob.signed_id);
24
+ hiddenField.name = this.controller.inputTarget.name
25
+ this.controller.filesTarget.querySelector(`#upload_${this.directUpload.id}`).appendChild(hiddenField)
26
+ }
27
+ });
28
+ }
29
+
30
+ insertUpload() {
31
+ const template = this.controller.templateTarget.content.cloneNode(true)
32
+ template.querySelector('#\\#NEW_FILE').id = `upload_${this.directUpload.id}`
33
+ template.querySelector("[data-lui-dropzone-target='filename']").textContent = this.file.name
34
+ template.querySelector("[data-lui-dropzone-target='status']").textContent = "Uploading..."
35
+
36
+ this.controller.filesTarget.appendChild(template)
37
+ }
38
+
39
+ directUploadWillStoreFileWithXHR(request) {
40
+ request.upload.addEventListener("progress", (event) => this.updateProgress(event));
41
+ }
42
+
43
+ updateProgress(event) {
44
+ const progress = ((event.loaded / event.total) * 100).toFixed(0)
45
+ const status = progress == 100 ? "Uploaded" : "Uploading..."
46
+
47
+ const fileContainer = this.controller.filesTarget.querySelector(`#upload_${this.directUpload.id}`)
48
+ fileContainer.querySelector("[data-lui-dropzone-target='status']").textContent = status
49
+ fileContainer.querySelector("[data-lui-dropzone-target='progressbar']").style.width = `${progress}%`
50
+ fileContainer.querySelector("[data-lui-dropzone-target='percentage-progress']").textContent = `${progress}%`
51
+ }
52
+ }
53
+
54
+ export default class extends Controller {
55
+ static targets = ["input", "template", "files"]
56
+
57
+ selectFiles(_event) {
58
+ this.inputTarget.click()
59
+ }
60
+
61
+ uploadFiles(event) {
62
+ event.preventDefault();
63
+ const files = event.dataTransfer ? event.dataTransfer.files : event.target.files;
64
+ [...files].forEach(f => new Upload(f, this).process())
65
+ }
66
+
67
+ activate(event) {
68
+ event.preventDefault()
69
+ }
70
+
71
+ removeFile(event) {
72
+ event.preventDefault()
73
+ const container = event.target.closest("[data-lui-dropzone-target='file']")
74
+ container.remove()
75
+ }
76
+ }
@@ -2,6 +2,9 @@ const namespace = 'lui'
2
2
 
3
3
  import { Application } from "@hotwired/stimulus"
4
4
 
5
+ import * as ActiveStorage from "@rails/activestorage"
6
+ ActiveStorage.start()
7
+
5
8
  const application = Application.start()
6
9
  window.Stimulus = application
7
10
 
@@ -14,6 +17,7 @@ import ModalController from './controllers/modal_controller'
14
17
  import RevealController from './controllers/reveal_controller'
15
18
  import SwitchController from './controllers/switch_controller'
16
19
  import DropdownController from './controllers/dropdown_controller'
20
+ import DropzoneController from './controllers/dropzone_controller'
17
21
 
18
22
  export function registerLuiControllers(application) {
19
23
  application.register(`${namespace}-clipboard`, ClipboardController)
@@ -25,6 +29,7 @@ export function registerLuiControllers(application) {
25
29
  application.register(`${namespace}-reveal`, RevealController)
26
30
  application.register(`${namespace}-switch`, SwitchController)
27
31
  application.register(`${namespace}-dropdown`, DropdownController)
32
+ application.register(`${namespace}-dropzone`, DropzoneController)
28
33
  }
29
34
  registerLuiControllers(application)
30
35
 
@@ -0,0 +1,3 @@
1
+ en:
2
+ dropzone:
3
+ default_message: "Drag and Drop your files here"
@@ -1,19 +1,18 @@
1
1
  require "view_component"
2
- require "stimulus-rails"
3
2
 
4
- module LightningUi
3
+ module LightningUiKit
5
4
  class Engine < ::Rails::Engine
6
- isolate_namespace LightningUi
5
+ isolate_namespace LightningUiKit
7
6
 
8
7
  config.autoload_paths = %W[
9
8
  #{root}/app/components
10
9
  #{root}/app/helpers
11
10
  ]
12
11
 
13
- initializer "lightning_ui.helpers" do
12
+ initializer "lightning_ui_kit.helpers" do
14
13
  ActiveSupport.on_load(:action_controller_base) do
15
- helper LightningUi::ApplicationHelper
16
- helper LightningUi::HeroiconHelper
14
+ helper LightningUiKit::ApplicationHelper
15
+ helper LightningUiKit::HeroiconHelper
17
16
  end
18
17
  end
19
18
  end
@@ -0,0 +1,3 @@
1
+ module LightningUiKit
2
+ VERSION = "0.1.3"
3
+ end
@@ -0,0 +1,6 @@
1
+ require "lightning_ui_kit/version"
2
+ require "lightning_ui_kit/engine"
3
+
4
+ module LightningUiKit
5
+ # Your code goes here...
6
+ end