diff --git a/app/assets/javascripts/discourse/templates/components/topic-map.hbs b/app/assets/javascripts/discourse/templates/components/topic-map.hbs deleted file mode 100644 index 59be8972ba..0000000000 --- a/app/assets/javascripts/discourse/templates/components/topic-map.hbs +++ /dev/null @@ -1,88 +0,0 @@ - - {{d-button action="toggleMap" title="topic.toggle_information" icon=toggleMapClass}} - - - - - - {{i18n 'created_lowercase'}} - {{avatar details.created_by imageSize="tiny"}} - {{format-date topic.created_at}} - - - - {{i18n 'last_reply_lowercase'}} - {{avatar details.last_poster imageSize="tiny"}} - {{format-date topic.last_posted_at}} - - - - {{number topic.replyCount}} - {{i18n 'replies_lowercase' count=topic.replyCount}} - - - {{number topic.views class=topic.viewsHeat}} - {{i18n 'views_lowercase' count=topic.views}} - - - {{number topic.participant_count}} - {{i18n 'users_lowercase' count=topic.participant_count}} - - {{#if topic.like_count}} - - {{number topic.like_count}} - {{i18n 'likes_lowercase' count=topic.like_count}} - - {{/if}} - {{#if details.links.length}} - - {{number details.links.length}} - {{i18n 'links_lowercase' count=details.links.length}} - - {{/if}} - {{#if showPosterAvatar}} - - {{#each details.fewParticipants as |p|}} - {{topic-participant participant=p}} - {{/each}} - - {{/if}} - - - -{{#unless mapCollapsed}} - - {{i18n 'topic_map.participants_title'}} - {{#each details.participants as |p|}} - {{topic-participant participant=p}} - {{/each}} - - - {{#if infoLinks}} - - {{i18n 'topic_map.links_title'}} - - {{#each infoLinks as |link|}} - - - {{link.clicks}} - - - - {{#if link.title}}{{link.title}}{{else}}{{shorten-url link.url}}{{/if}} - - {{link-domain link}} - - - {{/each}} - - - {{#if showAllLinksControls}} - - {{i18n 'topic_map.links_shown' totalLinks=details.links.length}} - - {{/if}} - - - {{/if}} -{{/unless}}