@Lisa testing Double Click to Like with our new compound actions
This is next-level
Compound actions are making everything better!
Increment on the like number column + show notification, it seems.
I might be wrong but it looks like the first tap doesnât actually increase the like. The second tap seems to be the one increasing it as well as showing the notification. I might be wrong though.
Edit: This is what I think itâs happening. The first tap is prolly setting a user specific date and time. Then there is a condition in which of the user-specific value is not empty then increment the likes.
- First Condition:
If âincr_Likesâ column doesnt equal to 1
Will increment âincr_Likesâ column by 1 (first tap glide just recognize the touch, incrementing only the second tap)
- Second condition:
If âincr_Likesâ column equals to 2 and Time Stamp column (user-specific) is empty
will:
-
Show Notification: Liked!
-
Increment a âLikesâ column (not user-specific) by 1
-
and Set Columns:
- "is favorite?" to âincr_Likesâ (the number 1 will makes it be true)
- "Time Stamp" to current date/time
Set Column:
@Lisa @SantiagoPerez, and everyone
I studied better this situation, and updated the action above.
Before I was using the increment till 2, but the first tap glide just recognizes the touch, incrementing only the second tap
The older action, incrementing till 2, glide was recognizing 3 taps as @SantiagoPerez said too.
Now, itâs just slick!
Test the double click: https://harmonious-trick-7630.glideapp.io/
That happens because in your previous life you created a glidegram account
Updated template pending!
With all of the new features Glide team has released, Glidegram was due for an update. Main updates below:
- Removed Google formulas - aside from array column for row owner security
- Follow and unfollow users - finally! (also has a âFollow Backâ indication if a user follows the logged-in user
- Create chats with new custom actions feature - no need for forms
- New explore tab with a custom search bar
- Change and update usernames without duplicating usernames
- Unread messages indicator - a new message appears that the user has not read, a green dot will appear in the chat listing
If there are any other features youâd like to see, just reply!
Great work
@lisa Apologies in advance for this, but Iâm a stickler for detailâŚ
I noticed in one of your screenshots the text â1 Chat Requests PendingâŚâ
That would bug the bejeebus out of me, so Iâd probably have an ITE column:
If ChatRequests = 1
"Chat Request Pending..."
Else
"Chat Requests Pending..."
LOL I canât hate on facts! I will update this. I have it for followers, (IF 1 follower THEN âFollowerâ, ESLEâŚ) but missed this one.
Is this done by comparing the last opened time to the timestamp of the last comment made?