Sha256: 7b88c5f9425fdc6813614ba0f6e6e90d2959d624f17d30c48252aac6370706c2

Contents?: true

Size: 1.46 KB

Versions: 199

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/2.0/resources.html" target="_blank" title="Avo Resources documentation">Docs</a>
  </p>
</div>

Version data entries

199 entries across 199 versions & 1 rubygems

Version Path
avo-3.0.0.pre8 app/views/avo/home/_resources.html.erb
avo-3.0.0.pre9 app/views/avo/home/_resources.html.erb
avo-3.0.0.pre7 app/views/avo/home/_resources.html.erb
avo-3.0.0.pre5 app/views/avo/home/_resources.html.erb
avo-3.0.0.pre6 app/views/avo/home/_resources.html.erb
avo-3.0.0.pre4 app/views/avo/home/_resources.html.erb
avo-3.0.0.pre3 app/views/avo/home/_resources.html.erb
avo-3.0.0.pre2 app/views/avo/home/_resources.html.erb
avo-3.0.0.pre1 app/views/avo/home/_resources.html.erb
avo-3.1.3 app/views/avo/home/_resources.html.erb
avo-3.1.2 app/views/avo/home/_resources.html.erb
avo-3.1.1 app/views/avo/home/_resources.html.erb
avo-3.1.0 app/views/avo/home/_resources.html.erb
avo-3.0.8 app/views/avo/home/_resources.html.erb
avo-2.46.0 app/views/avo/home/_resources.html.erb
avo-3.0.7 app/views/avo/home/_resources.html.erb
avo-3.0.6 app/views/avo/home/_resources.html.erb
avo-3.0.5 app/views/avo/home/_resources.html.erb
avo-3.0.4 app/views/avo/home/_resources.html.erb
avo-3.0.3 app/views/avo/home/_resources.html.erb