From 8947d7c7b7c45b03b85594ab7668a887b25b81d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kuna?= <1282324+codecalm@users.noreply.github.com> Date: Wed, 23 Jul 2025 19:16:47 +0200 Subject: [PATCH] Update activity messages in JSON data (#2452) --- .changeset/modern-dots-bathe.md | 5 ++ preview/pages/activity.html | 4 +- shared/data/activity.json | 142 ++++++++++++++++++++++++++++---- 3 files changed, 131 insertions(+), 20 deletions(-) create mode 100644 .changeset/modern-dots-bathe.md diff --git a/.changeset/modern-dots-bathe.md b/.changeset/modern-dots-bathe.md new file mode 100644 index 000000000..fe7e07a0c --- /dev/null +++ b/.changeset/modern-dots-bathe.md @@ -0,0 +1,5 @@ +--- +"@tabler/preview": patch +--- + +Update activity messages diff --git a/preview/pages/activity.html b/preview/pages/activity.html index 31c36e560..39a5e5735 100644 --- a/preview/pages/activity.html +++ b/preview/pages/activity.html @@ -6,12 +6,12 @@ layout: default permalink: activity.html --- -
+
{% include "parts/activity.html" %}
-
+
\ No newline at end of file diff --git a/shared/data/activity.json b/shared/data/activity.json index 44997fe74..30ec1f8c4 100644 --- a/shared/data/activity.json +++ b/shared/data/activity.json @@ -1,56 +1,162 @@ [ { - "text": "%p commented on your \"I'm not a witch.\" post." + "text": "%p commented on your post: Not everything is what it seems", + "icon": "message-circle" }, { - "text": "It's %p's birthday. Wish him well!" + "text": "It's %p's birthday today", + "icon": "cake" }, { - "text": "%p posted \"Well, what do you want?\"." + "text": "%p posted a status: Trying to figure things out one step at a time.", + "icon": "pencil" }, { - "text": "%p created a new project Morning alarm clock." + "text": "%p created a new project: Smart Morning Alarm", + "icon": "alarm" }, { - "text": "%p liked your photo." + "text": "%p liked your photo", + "icon": "heart" }, { - "text": "%p registered new client as %c." + "text": "%p registered a new client: Trilia Solutions", + "icon": "user-plus" }, { - "text": "%p closed a new deal on project Pen Pineapple Apple Pen." + "text": "%p closed a new deal on project: PPAP Campaign Strategy", + "icon": "handshake" }, { - "text": "%p created a new project for %c." + "text": "%p created a new project: Wikibox Knowledge Platform", + "icon": "folder-plus" }, { - "text": "%p change status of Tabler Icons from open to closed." + "text": "%p changed project status of Tabler Icons from open to closed", + "icon": "check" }, { - "text": "%p liked Tabler UI Kit." + "text": "%p liked the Tabler UI Kit", + "icon": "thumb-up" }, { - "text": "%p posted new video." + "text": "%p shared a new video: Design Tips for Busy Creators", + "icon": "video" }, { - "text": "%p and 3 others followed you." + "text": "%p and 3 others followed you", + "icon": "user-plus" }, { - "text": "%p upload 3 new photos to category Inspirations." + "text": "%p uploaded 3 new photos to category: Creative Inspirations", + "icon": "photo" }, { - "text": "%p made a $10 donation." + "text": "%p made a $10 donation", + "icon": "coin" }, { - "text": "%p created a profile." + "text": "%p created a profile", + "icon": "id" }, { - "text": "%p hosted the event Tabler UI Birthday." + "text": "%p hosted the event: Tabler UI Anniversary", + "icon": "calendar-event" }, { - "text": "%p mentioned you on Best of 2020." + "text": "%p mentioned you in Best of 2020 Highlights", + "icon": "at" }, { - "text": "%p sent a Review Request to Amanda Blake." + "text": "%p sent a review request to Amanda Blake", + "icon": "send" + }, + { + "text": "%p posted a photo from her vacation in Tuscany", + "icon": "camera" + }, + { + "text": "%p shared an article: Top 10 productivity hacks", + "icon": "book" + }, + { + "text": "%p commented on your photo", + "icon": "message-circle" + }, + { + "text": "%p joined the group: UX Designers Hub", + "icon": "users" + }, + { + "text": "%p uploaded new design mockups", + "icon": "layout" + }, + { + "text": "%p reacted with ❤️ to your story", + "icon": "emoji-heart-eyes" + }, + { + "text": "%p posted a video: Building Better Dashboards", + "icon": "video" + }, + { + "text": "%p joined your webinar: Intro to TypeScript", + "icon": "presentation" + }, + { + "text": "%p commented: This is so helpful!", + "icon": "message-circle" + }, + { + "text": "%p updated her profile photo", + "icon": "user-edit" + }, + { + "text": "%p posted a job listing: Frontend Developer", + "icon": "briefcase" + }, + { + "text": "%p started following your project: Clean Code Patterns", + "icon": "code" + }, + { + "text": "%p gave feedback on your latest design", + "icon": "message-check" + }, + { + "text": "%p shared a playlist: Coding Flow", + "icon": "music" + }, + { + "text": "%p joined the event: Night UI Meetup", + "icon": "calendar-plus" + }, + { + "text": "%p shared a memory: 2 years at Tabler!", + "icon": "history" + }, + { + "text": "%p retweeted your latest post", + "icon": "repeat" + }, + { + "text": "%p shared your story to their network", + "icon": "share" + }, + { + "text": "%p invited you to collaborate on her workspace", + "icon": "user-plus" + }, + { + "text": "%p published a new blog post: Dark Mode for All", + "icon": "article" + }, + { + "text": "%p mentioned you in a comment", + "icon": "at" + }, + { + "text": "%p shared a new design: Modern Dashboard UI", + "icon": "layout" } ] \ No newline at end of file