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

[FEATURE] Possible to add emoji reaction information from messages? #77

Open
tlcameron3 opened this issue Dec 11, 2023 · 11 comments
Open
Labels
enhancement New feature or request

Comments

@tlcameron3
Copy link

Would it be possible to add information regarding the reactions on a message? This may require adding an extra attribute that includes every reaction done, and who reacted with it. This piece of information would be useful, I wonder why it was decided to leave it omitted from this project so far.

@KnugiHK KnugiHK added the enhancement New feature or request label Dec 11, 2023
@KnugiHK
Copy link
Owner

KnugiHK commented Dec 11, 2023

I will look into it.

It's omitted because I rarely use reaction and it never comes to my mind when I develop this tool.

@wef0rm
Copy link

wef0rm commented Jan 17, 2024

Emojis are for many a vital part of text communications these days, so thats pretty important imho. UTF-8 should support it out of the box.

@KnugiHK
Copy link
Owner

KnugiHK commented Jan 18, 2024

Emojis are for many a vital part of text communications these days, so thats pretty important imho. UTF-8 should support it out of the box.

Emojis in the message are supported at the beginning of this project. The missing peice is the emoji in reactions.

@wef0rm
Copy link

wef0rm commented Jan 18, 2024

Aha, never mind me then. :)

@KnugiHK
Copy link
Owner

KnugiHK commented Jan 18, 2024

Aha, never mind me then. :)

If you ever find any bugs related to emojis, feel free to open another issue for that.

@KnugiHK
Copy link
Owner

KnugiHK commented Feb 12, 2024

Same implementation timeline with #69.

@gabrielnogueiracsc
Copy link

Any updates about this?

@KnugiHK
Copy link
Owner

KnugiHK commented Apr 26, 2024

Any updates about this?

We now know where to find the related data from the database. The next step will be to include it in the template.

Here comes the problem... I have no idea on how to display them. I am bad at frontend and UI/UX.

@KnugiHK
Copy link
Owner

KnugiHK commented Apr 26, 2024

Also, the #79 is still in the blocking state, and I don't have much time for development now.

@gabrielnogueiracsc
Copy link

Any updates about this?

We now know where to find the related data from the database. The next step will be to include it in the template.

Here comes the problem... I have no idea on how to display them. I am bad at frontend and UI/UX.

Any updates about this?

We now know where to find the related data from the database. The next step will be to include it in the template.

Here comes the problem... I have no idea on how to display them. I am bad at frontend and UI/UX.

I managed to solve this problem by creating an alternative script in node.js. I used your WhatsApp-Chat-Exporter to export the conversations in .json and from there I searched the database and cross-referenced the information.

It worked very well! But unfortunately I don't know how to do this in Python to add to the project.

@gabrielnogueiracsc
Copy link

gabrielnogueiracsc commented Apr 27, 2024

Here an example from the format of .json i got:

"559105": { "from_me": false, "timestamp": 1712450860, "time": "00:47", "media": false, "key_id": "3A4AACJJKAE7500D7879", "meta": false, "data": "good morning!", "sender": "551154774544", "safe": false, "mime": null, "reply": "ALKE15BAF55LA3124C", "quoted_author": "551120054578", "quoted_data": "Hi Group, i'm a new user.", "caption": null, "thumb": null, "sticker": false, "reactions": [ { "id": "👍", "timestamp": 1712450910000, "senderId": "551120054578" } ] },

I also added the "quoted_author" information to the .json containing the number of the user who had the message mentioned. This helped me a lot to develop the logic of my project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants