ActionText: 첨부 파일의 기본 렌더링 수정

아직 실행하지 않은 경우 ActiveStorage 및 ActionText 설치 프로그램을 각각 실행해야 합니다.

ActiveStorage 생성기는 다음과 같은 파일을 생성해야 합니다.
app/views/active_storage/blobs/_blob.html.erb
<figure class="attachment attachment--<%= blob.representable? ? "preview" : "file" %> attachment--<%= blob.filename.extension %>">
  <% if blob.representable? %>
    <%= image_tag blob.representation(resize_to_limit: local_assigns[:in_gallery] ? [ 800, 600 ] : [ 1024, 768 ]) %>
  <% end %>

  <figcaption class="attachment__caption">
    <% if caption = blob.try(:caption) %>
      <%= caption %>
    <% else %>
      <span class="attachment__name"><%= blob.filename %></span>
      <span class="attachment__size"><%= number_to_human_size blob.byte_size %></span>
    <% end %>
  </figcaption>
</figure>


이 파일을 수정할 수 있지만 적절하다고 생각합니다. 예를 들어 레티나 렌더링 또는 기타 최적화와 같은 작업을 위해 이러한 차원에 대한 사용자 지정 재정의를 제공할 수 있습니다.

이것을 문서화하는 데 시간을 들인 이유는 부분 렌더링을 위해 파일 주석을 켰을 때 다음과 같은 결과가 나타났기 때문입니다.

<!-- BEGIN /Users/konnorrogers/.asdf/installs/ruby/3.1.2/lib/ruby/gems/3.1.0/gems/actiontext-7.0.4/app/views/action_text/contents/_content.html.erb -->


다른 사용 사례로는 tailwind와 같은 것을 사용하고 생성된 마크업을 조정하는 것이 있습니다!

계속 진행하면서 ActionText에서 더 많은 문서화되지 않은 내용을 문서화하고 공식 Rails 가이드로 업스트림할 수 있기를 바랍니다!

좋은 웹페이지 즐겨찾기