How these work? Make.com automation looks for updates on these items, if it sees any updates, it adds dynamic covers/icons.
✅ Dynamic cover with todo
- Define dynamic page icons by using checked and unchecked text fields. Add an emoji to each.
- Define dynamic page covers by using cover-checked and cover-unchecked fields. Add an URL to each field.
- Set up the Make automation
ㅤ
ㅤ
Here is what the automation does:
- Watches updates of database items
- If an item has status (checkbox field) set to true
- thumbnail icon emoji will be changed to the emoji in the checked field
- cover image will be changed to whatever image url that is in the cover-checked field
- If an item has status (checkbox field) set to false
- thumbnail icon emoji will be changed to the emoji in the unchecked field
- cover image will be changed to whatever image url that is in the cover-unchecked field
- Updates the Last updated timestamp with the current timestamp (in ms)
ㅤ
ㅤ
🕑 Dynamic cover with progress bar
- Make a Completed % rollup property that counts the percent of finished tasks
- Set up the Make automation
ㅤ
Here’s what the automation does:
- Watches updates of database items
- Selects the Completed %
- Generates the cover via Cloudinary.com
URL breakdown:
https://res.cloudinary.com/mchlkucera/image/upload/ # Selects cloud l_colors:3448C5,c_crop,h_1,g_west,w_{{13.progress}}/ # Background bar l_text:Helvetica_312_bold_stroke:{{(13.progress * 100)}}%25, # Text overlay bo_10px_solid_black/ # Added text outline colors/ffffff.png # White background
ㅤ
- Updates the Last updated timestamp with the current timestamp (in ms)
ㅤ
ㅤ