-
-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature: add open attachment without download #3681
base: main
Are you sure you want to change the base?
Conversation
Code Climate has analyzed commit f77cfe3 and detected 0 issues on this pull request. View more on Code Climate. |
app/components/avo/fields/common/files/view_type/grid_item_component.html.erb
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for working on this one, @Nevelito.
The openable
option name is a bit difficult to spell. Let's rename it.
I have a few suggestions: external_preview
, preview_on_click
, or click_to_open
. Something along these lines. Let's discuss a better option name.
Also, let's ensure that the link doesn't trigger any downloads. I've tested it, and while PDFs don't trigger a download, CSV files do.
PS
Hi @Nevelito,
After discussing this with Adrian, I’m editing my review as we noticed some statements in the issue that could be misinterpreted.
The goal is not to provide an option to enable or disable this feature. Instead, let's remove the configuration setting and make it always clickable and "openable."
Additionally, we need to ensure proper authorization is enforced—if a user cannot download the file, they should not be able to open it either.
I think it is done and work like it should |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tested this, and it works fine with PDFs. However, when a new tab opens for CSV files, it simply triggers a download.
Let's ensure we render the link only for previewable file types. I believe representable? handles this check
Hi @Paul-Bob do you have any idea why it can not find css in system spec? Locally everything passes clean. |
<% if file.representable? %>href="<%= helpers.main_app.url_for(file) %>" target="_blank" rel="noopener noreferrer"<% end %> | ||
class="relative flex flex-col justify-evenly items-center px-2 rounded-lg border bg-white border-gray-500 min-h-24 <%= 'hover:bg-gray-100 transition' if file.representable? %>" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's important to check can_download_file?
to enforce authorization properly. Otherwise, users without download permissions could still open and inspect the PDF.
Sometimes, tests may fail in specific environments. You can check each environment using the following command:
Replace Let me know if this is the case or if the tests are still passing locally, even after replicating the failing environment from GitHub Actions. |
@Nevelito I made a small tweak to how the link is built in the |
This PR has been marked as stale because there was no activity for the past 15 days. |
I’ll try to finish my tasks in a few days—I’ve got an important new project to work on. Sorry! |
Description
Fixes # (issue)
#3441
Checklist:
Screenshots & recording
without hover:

with hover:

video (PS: its random pdf file from university):
Screencast from 21.02.2025 14:10:29.webm