Sha256: 07ef5630a99e5c747916064c1bd7a08df8d83900e43d36da98f801f59ecded9c

Contents?: true

Size: 1.46 KB

Versions: 91

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

Version data entries

91 entries across 91 versions & 1 rubygems

Version Path
avo-3.16.4 app/views/avo/home/_resources.html.erb
avo-3.16.3 app/views/avo/home/_resources.html.erb
avo-3.16.2 app/views/avo/home/_resources.html.erb
avo-3.16.1 app/views/avo/home/_resources.html.erb
avo-3.16.0 app/views/avo/home/_resources.html.erb
avo-3.15.7 app/views/avo/home/_resources.html.erb
avo-3.15.6 app/views/avo/home/_resources.html.erb
avo-3.15.5 app/views/avo/home/_resources.html.erb
avo-3.15.4 app/views/avo/home/_resources.html.erb
avo-3.15.3 app/views/avo/home/_resources.html.erb
avo-3.15.2 app/views/avo/home/_resources.html.erb
avo-3.15.1 app/views/avo/home/_resources.html.erb
avo-3.15.0 app/views/avo/home/_resources.html.erb
avo-3.14.5 app/views/avo/home/_resources.html.erb
avo-3.14.4 app/views/avo/home/_resources.html.erb
avo-3.14.3 app/views/avo/home/_resources.html.erb
avo-3.14.2 app/views/avo/home/_resources.html.erb
avo-3.14.1 app/views/avo/home/_resources.html.erb
avo-3.14.0 app/views/avo/home/_resources.html.erb
avo-3.13.7 app/views/avo/home/_resources.html.erb