ActionText: 첨부 파일의 기본 렌더링 수정
3956 단어 actiontextrailswebdevruby
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 가이드로 업스트림할 수 있기를 바랍니다!
Reference
이 문제에 관하여(ActionText: 첨부 파일의 기본 렌더링 수정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/paramagicdev/actiontext-modify-the-default-rendering-of-attachments-26g6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)