Sha256: 99405b85d2b57bb077aef298f4ebf9f69408b2625ce9381263500bcb9870b773

Contents?: true

Size: 1.46 KB

Versions: 69

Compression:

Stored size: 1.46 KB

Contents

<%
  models = begin
    ApplicationRecord.descendants
  rescue => exception
    []
  end
%>
<div>
  <h3>Resources</h3>

  <div>The primary goal of Avo is to administer your database records. To do that Avo, uses the concept of a <strong>Resource</strong>. Each Avo <strong>Resource</strong> corresponds to a <strong>Rails Model</strong>.</div>

  <% if models.present? %>
    <div class="mt-2" data-controller="hidden-input">
      It seems you already have <%= models.count %> <%= 'model'.pluralize models.count %> in your app. You can generate resources for each one with the following commands.

      <strong class="cursor-pointer block mt-2" data-action="click->hidden-input#showContent">Generate resources 👇 (click to reveal)</strong>

      <div class="mt-2 hidden" data-hidden-input-target="content">
        <% models.each do |model| %>
          <code class="text-lg"><%= model.to_s %></code>
          <div>
            <code class="p-1 rounded bg-sky-500 text-white">bin/rails generate avo:resource <%= model.to_s %></code>
          </div>
        <% end %>
      </div>
    </div>
  <% else %>
    <div class="mt-2" data-controller="hidden-input">
      You may generate a resource using the following command:
      <br>

      <code class="p-1 rounded bg-sky-500 text-white">bin/rails generate avo:resource post</code>
    </div>
  <% end %>

  <p>
    <a href="https://docs.avohq.io/1.0/resources.html" target="_blank" title="Avo Resources documentation">Docs</a>
  </p>
</div>

Version data entries

69 entries across 69 versions & 1 rubygems

Version Path
avo-1.25.2 app/views/avo/home/_resources.html.erb
avo-2.9.2.pre1 app/views/avo/home/_resources.html.erb
avo-2.9.1.pre7 app/views/avo/home/_resources.html.erb
avo-2.9.1.pre6 app/views/avo/home/_resources.html.erb
avo-2.9.1.pre5 app/views/avo/home/_resources.html.erb
avo-2.9.1.pre4 app/views/avo/home/_resources.html.erb
avo-2.9.1.pre3 app/views/avo/home/_resources.html.erb
avo-2.9.1.pre2 app/views/avo/home/_resources.html.erb
avo-2.9.1.pre1 app/views/avo/home/_resources.html.erb
avo-2.9.0 app/views/avo/home/_resources.html.erb
avo-2.8.0 app/views/avo/home/_resources.html.erb
avo-2.7.1.pre.1 app/views/avo/home/_resources.html.erb
avo-2.7.0 app/views/avo/home/_resources.html.erb
avo-2.6.1.pre.2 app/views/avo/home/_resources.html.erb
avo-2.6.1.pre.1 app/views/avo/home/_resources.html.erb
avo-2.6.0 app/views/avo/home/_resources.html.erb
avo-2.5.2.pre.7 app/views/avo/home/_resources.html.erb
avo-2.5.2.pre.6 app/views/avo/home/_resources.html.erb
avo-2.5.2.pre.5 app/views/avo/home/_resources.html.erb
avo-2.5.2.pre.4 app/views/avo/home/_resources.html.erb