-
Notifications
You must be signed in to change notification settings - Fork 19
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
Surface Reminder Time Stamp #129
Comments
@HiJohnElliott Thank you for the reminder timestamp idea. That's this field below, right? ![]() I can confirm that this data is not surfaced at this time. I also think your initial idea of a "reminder_time" key makes most sense (to me) to keep things consistent with the app itself and the database. Should you choose to do a pull request, I'm happy to review. Contribution pointers here.
Could you post a couple of examples — maybe I can detect it? |
Hey mikez! Thanks so much for the response! You are totally correct that the Reminder field in your screenshot is the one that I would love to surface with a "reminder_time" key. I took a little time this weekend to take another crack at how the encoding for the reminderTime field works on the TMTask table of the DB. It turns out that it is sort of a sister encoding of the startDate "Things Date" encoding. In those cases, the bits use the "YYYYYYYYYYYMMMMDDDDD0000000" pattern where the year, month, and day are encoded in binary chunks. Near as I can tell, the reminderTime is encoded as "HHHHHHmmmmm00000000000000000000" where m is minutes and H is hours. This simple function seems to be successfully decoding the reminderTime integer in to hours and minutes:
Inputing 1302331392 should result in "19:26:00" or 7:26pm in 12-hour time. Here are a few more integers from the DB and the ISO times they should convert to:
I might have some time this week to put together a pull request that includes a convert_thingstime_sql_expression_to_isodate() function and see if I can tie it in to the rest of the library. That being said, if you feel like this would be an easy add then you can totally run with this. Thanks again mikez! I'm excited to make use of this data! j Ξ |
@HiJohnElliott! Thank you for your analysis. Looks great. Happy to review your pull request. Minor comments:
|
@HiJohnElliott Are you still interested in pursuing this? |
Hey Mikez! I am indeed still interested in putting together a PR for this. My apologies for the long wait. I took some time last weekend to trace back the ways in which the thingsDate goes from the bit-packed integer in the DB to the final product in the API and it has turned out to be a little more complicated than I thought. By my accounting, here is the list of functions that the thingsDates passes through that need to be replicated for reminderTime:
I am adding functions now for:
If any of these are unnecessary or you can think of a shorter route just let me know wha you think and I'd be happy to comply. In each case, I am trying to math the existing code as closely as possible so that everything I am definitely making progress and am shooting to have something ready to submit in the next week. |
@HiJohnElliott I think you can skip the filters and just focus on modifying |
This makes perfect sense! I really appreciate the help here. I am jumping on this now. |
Hey mikez! I have been taking some time with this and have made the suggested changes but I'm not seeing the reminder_time value show up yet when calling any of the Utility API functions. Here's what I've done so far:
I've been polking around to see where the hold up is but haven't had any luck. I have a branch going locally that I would be happy to share if that would be helpful. Apologies that I haven't been able to solve this one on my own yet! |
@HiJohnElliott If you're comfortable putting a forked branch on your local GitHub account, I'll take a look. 👍 |
Hey Mikez! Happy to. Here is the link to the reminder_time branch of my fork of the repo: https://github.com/HiJohnElliott/things.py/tree/reminder_time Thanks again for taking a look at this! I'm sure that I am missing something really easy so your expertise here is greatly appreciated. |
@HiJohnElliott Thank you for the link. |
Hey Mikez, Thanks for pointing out this I'm excited to say that I've been doing some testing and that it looks like the reminder_time values are now showing up as expected for those tasks that have a reminder time set. Now that the code seems to be working, I will have to update the tests and test DB with some valid reminderTime data to verify that everything is working as intended. Would you prefer that I submit the current code and the updates to the tests as separate PR's or would you prefer that I submit them all together as one PR? Thanks Mikez! |
@HiJohnElliott Feel free to submit it all in one PR: code updates and test updates. I'll then do a code review. |
@HiJohnElliott And if you get stuck or need pointers, don't hesitate to reach out! |
Goal
Suggested approach
Ideally, surfacing this data would take place in its own field like the other time stamps as something like 'reminder_time' alongside the other timestamps like 'start_date'. Alternatively, the timestamp could be added to the 'start_date' field in instances where one exists. For example, as of now it shows only the date as '2024-26-24' but could show '2024-26-24 11:00:00' for an 11am reminder time.
Additional context
Near as I can tell, this data is stored in the TMTask table under the
reminderTime
column of the Things DB. I am having a hard time figuring out the encoding and if this is a "Things date" or something else.Sincerest apologies in advance if I am missing something and this data is already accessible in a way I have not yet found!
The text was updated successfully, but these errors were encountered: