Module: Deployed::ApplicationHelper

Defined in:
app/helpers/deployed/application_helper.rb

Instance Method Summary collapse

Instance Method Details

#config_iconObject



15
16
17
18
19
20
21
22
23
# File 'app/helpers/deployed/application_helper.rb', line 15

def config_icon
  output = <<~ICON
    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
      <path stroke-linecap="round" stroke-linejoin="round" d="M10.5 6h9.75M10.5 6a1.5 1.5 0 11-3 0m3 0a1.5 1.5 0 10-3 0M3.75 6H7.5m3 12h9.75m-9.75 0a1.5 1.5 0 01-3 0m3 0a1.5 1.5 0 00-3 0m-3.75 0H7.5m9-6h3.75m-3.75 0a1.5 1.5 0 01-3 0m3 0a1.5 1.5 0 00-3 0m-9.75 0h9.75" />
    </svg>
  ICON

  output.html_safe
end

#kamal_abort_buttonObject



58
59
60
61
62
63
64
65
66
67
68
69
# File 'app/helpers/deployed/application_helper.rb', line 58

def kamal_abort_button
  button_tag(
    'Abort',
    type: 'button',
    onclick: "abortDeployed()",
    class: 'rounded-md bg-red-600 px-3 py-1.5 text-sm text-white shadow-sm hover:bg-red-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-red-600',
    'x-bind:disabled' => '$store.process.abortInProgress',
    'x-bind:class' => "{'opacity-50': $store.process.abortInProgress}",
    'x-text' => "$store.process.abortInProgress ? 'Aborting' : 'Abort'",
    'x-data' => ''
  )
end

#kamal_exec_button(label:, command:) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
# File 'app/helpers/deployed/application_helper.rb', line 46

def kamal_exec_button(label:, command:)
  button_tag(
    label,
    type: 'button',
    onclick: "execDeployed('#{command}')",
    class: 'rounded-md bg-white px-3.5 py-2.5 text-sm font-semibold text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 hover:bg-gray-50',
    'x-bind:disabled' => '$store.process.running',
    'x-bind:class' => "{'opacity-50': $store.process.running}",
    'x-data' => ''
  )
end

#right_arrowObject



36
37
38
39
40
41
42
43
44
# File 'app/helpers/deployed/application_helper.rb', line 36

def right_arrow
  output = <<~ICON
    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
      <path stroke-linecap="round" stroke-linejoin="round" d="M17.25 8.25L21 12m0 0l-3.75 3.75M21 12H3" />
    </svg>
  ICON

  output.html_safe
end

#rocket_iconObject



5
6
7
8
9
10
11
12
13
# File 'app/helpers/deployed/application_helper.rb', line 5

def rocket_icon
  output = <<~ICON
    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
      <path stroke-linecap="round" stroke-linejoin="round" d="M15.59 14.37a6 6 0 01-5.84 7.38v-4.8m5.84-2.58a14.98 14.98 0 006.16-12.12A14.98 14.98 0 009.631 8.41m5.96 5.96a14.926 14.926 0 01-5.841 2.58m-.119-8.54a6 6 0 00-7.381 5.84h4.8m2.581-5.84a14.927 14.927 0 00-2.58 5.84m2.699 2.7c-.103.021-.207.041-.311.06a15.09 15.09 0 01-2.448-2.448 14.9 14.9 0 01.06-.312m-2.24 2.39a4.493 4.493 0 00-1.757 4.306 4.493 4.493 0 004.306-1.758M16.5 9a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z" />
    </svg>
  ICON

  output.html_safe
end

#tools_iconObject



25
26
27
28
29
30
31
32
33
34
# File 'app/helpers/deployed/application_helper.rb', line 25

def tools_icon
  output = <<~ICON
    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
      <path stroke-linecap="round" stroke-linejoin="round" d="M21.75 6.75a4.5 4.5 0 01-4.884 4.484c-1.076-.091-2.264.071-2.95.904l-7.152 8.684a2.548 2.548 0 11-3.586-3.586l8.684-7.152c.833-.686.995-1.874.904-2.95a4.5 4.5 0 016.336-4.486l-3.276 3.276a3.004 3.004 0 002.25 2.25l3.276-3.276c.256.565.398 1.192.398 1.852z" />
      <path stroke-linecap="round" stroke-linejoin="round" d="M4.867 19.125h.008v.008h-.008v-.008z" />
    </svg>
  ICON

  output.html_safe
end