Skip to content
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

add support for pasting images from clipboard #3412

Merged
merged 3 commits into from
Mar 21, 2023

Conversation

AFZL210
Copy link

@AFZL210 AFZL210 commented Mar 19, 2023

closes #2410

Backpack.2023-03-19.19-18-20.mp4

@vercel
Copy link

vercel bot commented Mar 19, 2023

@AFZL210 is attempting to deploy a commit to the coral-xyz Team on Vercel.

A member of the Team first needs to authorize it.

@armaniferrante armaniferrante requested a review from hkirat March 20, 2023 14:58
}) {
const classes = useStyles();
const theme = useCustomTheme();
const { type, remoteUsername, activeReply } = useChatContext();
const { activeSearch } = useContext(RichMentionsContext);

const uploadFromClipboard = (e:React.ClipboardEvent<HTMLDivElement>):void => {
if(e.clipboardData.files.length > 0) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are there any security implications here?

Copy link
Author

@AFZL210 AFZL210 Mar 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it takes the file from the clipboard and passes it to the onMediaSelect method, the file drop feature also uses this. however, I may be wrong. could you please suggest some better practices?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you check the mime types of the file that's pasted and ensure it's an image/video format?
Also does this work for videos?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'll check it now

Copy link
Author

@AFZL210 AFZL210 Mar 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, it supports all the file types as it uses the same method that the drop file feature uses and one thing i would like to mention is we can even drop a .js file which is not good. should i add a check in the onMediaSelect function and then only upload it? or it is being handled in the backend?

gif

Backpack.2023-03-20.22-04-03.mp4

video

Backpack.2023-03-20.22-05-32.mp4

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We cant really prevent people from uploading JS. The security policy of the img tag should prevent any JS to be parsed - https://security.stackexchange.com/questions/135513/what-could-an-img-src-xss-do

If you could create a follow up which prevents any non video/image file in both drag and drops and copy/pastes that would be great

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure, i will add it

@hkirat hkirat merged commit a9f0aab into coral-xyz:master Mar 21, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support pasting images from clipboard
3 participants