init
This commit is contained in:
224
extension/src/mockData.ts
Normal file
224
extension/src/mockData.ts
Normal file
@@ -0,0 +1,224 @@
|
||||
import { Comment } from './types';
|
||||
|
||||
const mockComments: Comment[] = [
|
||||
{
|
||||
id: 'comment-1',
|
||||
author: '王小明',
|
||||
content: '這個產品真的很好用!我已經推薦給我的朋友們了。希望未來能有更多顏色選擇。',
|
||||
timestamp: '2小時前',
|
||||
likes: 24,
|
||||
platform: 'facebook',
|
||||
sentiment: 'positive',
|
||||
keywords: ['好用', '推薦', '顏色'],
|
||||
category: '產品讚美',
|
||||
replies: [
|
||||
{
|
||||
id: 'reply-1-1',
|
||||
author: '品牌官方',
|
||||
content: '謝謝您的支持!我們正在開發更多顏色,敬請期待!',
|
||||
timestamp: '1小時前',
|
||||
likes: 5,
|
||||
platform: 'facebook',
|
||||
sentiment: 'positive'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'comment-2',
|
||||
author: '林美玲',
|
||||
content: '請問這個產品適合敏感肌膚使用嗎?我之前用類似的產品會過敏。',
|
||||
timestamp: '3小時前',
|
||||
likes: 7,
|
||||
platform: 'facebook',
|
||||
sentiment: 'neutral',
|
||||
keywords: ['敏感肌膚', '過敏', '適合'],
|
||||
category: '產品詢問'
|
||||
},
|
||||
{
|
||||
id: 'comment-3',
|
||||
author: 'Jason Chen',
|
||||
content: 'The quality is amazing! Worth every penny. Will definitely buy again.',
|
||||
timestamp: '5小時前',
|
||||
likes: 18,
|
||||
platform: 'instagram',
|
||||
sentiment: 'positive',
|
||||
keywords: ['quality', 'worth', 'buy again'],
|
||||
category: '產品讚美'
|
||||
},
|
||||
{
|
||||
id: 'comment-4',
|
||||
author: '陳大華',
|
||||
content: '收到產品了,包裝很精美,但是尺寸比我想像中小一點。總體來說還是很滿意的。',
|
||||
timestamp: '昨天',
|
||||
likes: 12,
|
||||
platform: 'facebook',
|
||||
sentiment: 'neutral',
|
||||
keywords: ['包裝', '尺寸', '滿意'],
|
||||
category: '產品評價'
|
||||
},
|
||||
{
|
||||
id: 'comment-5',
|
||||
author: 'Sarah Wong',
|
||||
content: '我有個問題,請問這個產品可以國際運送嗎?我現在在美國。',
|
||||
timestamp: '昨天',
|
||||
likes: 3,
|
||||
platform: 'instagram',
|
||||
sentiment: 'neutral',
|
||||
keywords: ['國際運送', '美國'],
|
||||
category: '物流詢問'
|
||||
},
|
||||
{
|
||||
id: 'comment-6',
|
||||
author: '黃小琳',
|
||||
content: '價格有點貴,但品質確實不錯。希望能有折扣活動。',
|
||||
timestamp: '2天前',
|
||||
likes: 9,
|
||||
platform: 'facebook',
|
||||
sentiment: 'neutral',
|
||||
keywords: ['價格', '品質', '折扣'],
|
||||
category: '價格評論'
|
||||
},
|
||||
{
|
||||
id: 'comment-7',
|
||||
author: 'Mike Li',
|
||||
content: 'Just received my order. The shipping was super fast! Great service.',
|
||||
timestamp: '2天前',
|
||||
likes: 15,
|
||||
platform: 'twitter',
|
||||
sentiment: 'positive',
|
||||
keywords: ['shipping', 'fast', 'service'],
|
||||
category: '物流評價'
|
||||
},
|
||||
{
|
||||
id: 'comment-8',
|
||||
author: '張小菲',
|
||||
content: '我的訂單顯示已發貨,但追蹤號碼似乎不正確。能幫我確認一下嗎?訂單號:TW20250615001',
|
||||
timestamp: '3天前',
|
||||
likes: 0,
|
||||
platform: 'facebook',
|
||||
sentiment: 'negative',
|
||||
keywords: ['訂單', '追蹤號碼', '不正確'],
|
||||
category: '物流問題'
|
||||
},
|
||||
{
|
||||
id: 'comment-9',
|
||||
author: 'David Wang',
|
||||
content: '這是我第三次購買了,每次都很滿意。客服也很棒!',
|
||||
timestamp: '4天前',
|
||||
likes: 27,
|
||||
platform: 'youtube',
|
||||
sentiment: 'positive',
|
||||
keywords: ['購買', '滿意', '客服'],
|
||||
category: '客戶體驗',
|
||||
replies: [
|
||||
{
|
||||
id: 'reply-9-1',
|
||||
author: '品牌官方',
|
||||
content: '感謝您的持續支持!我們非常重視每一位顧客的體驗。',
|
||||
timestamp: '4天前',
|
||||
likes: 8,
|
||||
platform: 'youtube',
|
||||
sentiment: 'positive'
|
||||
},
|
||||
{
|
||||
id: 'reply-9-2',
|
||||
author: 'Lisa Chen',
|
||||
content: '我也很喜歡他們的客服,總是很有耐心解答問題。',
|
||||
timestamp: '3天前',
|
||||
likes: 5,
|
||||
platform: 'youtube',
|
||||
sentiment: 'positive'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'comment-10',
|
||||
author: '李小明',
|
||||
content: '產品收到了,但有一個小零件好像壞了。請問如何申請售後服務?',
|
||||
timestamp: '5天前',
|
||||
likes: 2,
|
||||
platform: 'facebook',
|
||||
sentiment: 'negative',
|
||||
keywords: ['零件', '壞了', '售後服務'],
|
||||
category: '產品問題'
|
||||
},
|
||||
{
|
||||
id: 'comment-11',
|
||||
author: 'Emma Chang',
|
||||
content: '我很喜歡你們的環保包裝!希望更多品牌能這樣做。',
|
||||
timestamp: '1週前',
|
||||
likes: 42,
|
||||
platform: 'instagram',
|
||||
sentiment: 'positive',
|
||||
keywords: ['環保包裝', '喜歡'],
|
||||
category: '包裝評價',
|
||||
replies: [
|
||||
{
|
||||
id: 'reply-11-1',
|
||||
author: '品牌官方',
|
||||
content: '謝謝您的支持!環保是我們的核心價值之一,我們會繼續努力做得更好。',
|
||||
timestamp: '1週前',
|
||||
likes: 12,
|
||||
platform: 'instagram',
|
||||
sentiment: 'positive'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'comment-12',
|
||||
author: '陳小華',
|
||||
content: '請問有沒有實體店面可以試用產品?',
|
||||
timestamp: '1週前',
|
||||
likes: 5,
|
||||
platform: 'facebook',
|
||||
sentiment: 'neutral',
|
||||
keywords: ['實體店面', '試用'],
|
||||
category: '銷售詢問'
|
||||
},
|
||||
{
|
||||
id: 'comment-13',
|
||||
author: 'Kevin Wu',
|
||||
content: 'Great product but the app needs improvement. Sometimes it crashes when I try to connect to the device.',
|
||||
timestamp: '1週前',
|
||||
likes: 8,
|
||||
platform: 'twitter',
|
||||
sentiment: 'neutral',
|
||||
keywords: ['product', 'app', 'crashes'],
|
||||
category: '應用問題'
|
||||
},
|
||||
{
|
||||
id: 'comment-14',
|
||||
author: '林小芳',
|
||||
content: '我在官網看到的價格和這裡不一樣,為什麼?',
|
||||
timestamp: '2週前',
|
||||
likes: 3,
|
||||
platform: 'youtube',
|
||||
sentiment: 'negative',
|
||||
keywords: ['價格', '官網', '不一樣'],
|
||||
category: '價格問題'
|
||||
},
|
||||
{
|
||||
id: 'comment-15',
|
||||
author: 'Sophia Lin',
|
||||
content: '剛剛在朋友家看到這個產品,效果真的很驚人!請問現在有什麼促銷活動嗎?',
|
||||
timestamp: '2週前',
|
||||
likes: 19,
|
||||
platform: 'facebook',
|
||||
sentiment: 'positive',
|
||||
keywords: ['效果', '驚人', '促銷活動'],
|
||||
category: '產品讚美',
|
||||
replies: [
|
||||
{
|
||||
id: 'reply-15-1',
|
||||
author: '品牌官方',
|
||||
content: '您好!我們目前有限時折扣活動,購買任兩件產品即可享85折優惠。詳情請查看我們的官網。',
|
||||
timestamp: '2週前',
|
||||
likes: 4,
|
||||
platform: 'facebook',
|
||||
sentiment: 'positive'
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
export default mockComments;
|
||||
Reference in New Issue
Block a user