forked from wireapp/reminders-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Feat: Use composite messages to improve UX WPB-17856 #27
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
Merged
olanokhin
merged 31 commits into
main
from
feat/Use-Composite-messages-to-improve-UX-WPB-17856
Sep 19, 2025
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
216ce3a
Update: rootProject.name to remind-app;
olanokhin 780ad18
Delete: unused method orEmpty().
olanokhin 776a92b
Update: wire api url to use staging;
olanokhin df9af77
Update: plugins to the latest versions;
olanokhin 2e37683
Remove: unnecessary let usage;
olanokhin fe18a02
Update: test to use own Cron Interpretrer class;
olanokhin dde82d2
Remove: Wire sdk properties with env variables:
olanokhin 6a8b1eb
Add: sendCompositeMessage implementation;
olanokhin 50c329e
Add: sendCompositeMessage declaration;
olanokhin 833dab6
Fix: cron to text interpreter to show working days properly;
olanokhin 2e60dbc
Update: getReminderListMessages to represent list of reminders as sep…
olanokhin bb27a86
Add: quick check for Button confirmation
olanokhin d5e2784
Fix: cron interpreter to fit quarkus crone notation;
olanokhin 454f3b2
Add: sendButtonActionConfirmation interface and implementation;
olanokhin 505f59a
Add: new logic Button Action Event;
olanokhin 3182bd0
Fix: Time parsing test to fit quarkus crone notation;
olanokhin f4d5d91
Update: Constant MAX_REMINDER_JOBS to public bc of external usage in …
olanokhin 6f40a72
Replace eventDTO with proper message od ButtonAction DTO;
olanokhin 69a5bb0
Format: ktlint issue;
olanokhin 4f049fa
Add: fn to get Schedule for reminder;
olanokhin 926d58b
Add: example of env variables required to start Remind-app;
olanokhin 11d0703
Fix: ktlint format issue;
olanokhin 6d646ab
Add: eu-US locale to have consistent test results for gitHub VM;
olanokhin b720a15
Update: Time Parsing test to use independent from locale notation;
olanokhin e58bc70
Fix: cron expression for every hour usecase in quarkus notation;
olanokhin c9734d6
Update: target JDK to 21 as reference;
olanokhin 4961375
Add: editCompositeMessage method and implementation;
olanokhin 73467fa
Update: deleteReminder logic to edit parent msg for delete button wit…
olanokhin f5eca14
Update: comment to keep in mind quarkus protobuf version match Wire SDK;
olanokhin 6276ebc
Refactor: methods that create a text message to BiuldMsg object, send…
olanokhin 98a5f42
Replaced: custom regex fn with UUID.fromString;
olanokhin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,4 +2,4 @@ | |
| !build/*-runner | ||
| !build/*-runner.jar | ||
| !build/lib/* | ||
| !build/quarkus-app/* | ||
| !build/quarkus-app/* | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| WIRE_SDK_API_BOT_KEY=API_TOKEN | ||
| WIRE_SDK_API_URL=ENVIRONMENT_LINK | ||
| WIRE_SDK_EMAIL=EMAIL | ||
| WIRE_SDK_ENVIRONMENT=ENVIRONMENT_NAME | ||
| WIRE_SDK_PASSWORD=PASSWORD | ||
| WIRE_SDK_USER_ID=UUID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,4 +23,4 @@ services: | |
| - reminders_bot-db:/var/lib/postgresql/data/ | ||
|
|
||
| volumes: | ||
| reminders_bot-db: | ||
| reminders_bot-db: | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| #Gradle properties | ||
| quarkusPluginId=io.quarkus | ||
| quarkusPluginVersion=3.22.3 | ||
| quarkusPluginVersion=3.26.3 | ||
| quarkusPlatformGroupId=io.quarkus.platform | ||
| quarkusPlatformArtifactId=quarkus-bom | ||
| quarkusPlatformVersion=3.22.3 | ||
| quarkusPlatformVersion=3.26.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.