From e4a34cc4d4dcd882e8a546813215dcac95e4ceab Mon Sep 17 00:00:00 2001 From: Maxim Filippov Date: Thu, 13 Dec 2018 19:57:11 +0300 Subject: Use 'userProfileLink' to generate user-profile link --- src/components/user_card_content/user_card_content.js | 4 ++++ src/components/user_card_content/user_card_content.vue | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'src/components/user_card_content') diff --git a/src/components/user_card_content/user_card_content.js b/src/components/user_card_content/user_card_content.js index d22d4ec1..abdac58e 100644 --- a/src/components/user_card_content/user_card_content.js +++ b/src/components/user_card_content/user_card_content.js @@ -1,5 +1,6 @@ import StillImage from '../still-image/still-image.vue' import { hex2rgb } from '../../services/color_convert/color_convert.js' +import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator' export default { props: [ 'user', 'switcher', 'selected', 'hideBio', 'activatePanel' ], @@ -40,6 +41,9 @@ export default { const days = Math.ceil((new Date() - new Date(this.user.created_at)) / (60 * 60 * 24 * 1000)) return Math.round(this.user.statuses_count / days) }, + userProfileLink (user) { + return generateProfileLink(user.id, user.screen_name) + }, userHighlightType: { get () { const data = this.$store.state.config.highlight[this.user.screen_name] diff --git a/src/components/user_card_content/user_card_content.vue b/src/components/user_card_content/user_card_content.vue index bde1d139..6e48f3f9 100644 --- a/src/components/user_card_content/user_card_content.vue +++ b/src/components/user_card_content/user_card_content.vue @@ -9,13 +9,13 @@
- +
{{user.name}}
- + @{{user.screen_name}} {{dailyAvg}} {{ $t('user_card.per_day') }} -- cgit v1.2.3-70-g09d2