| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| |
| import { memo, FC } from 'react'; |
| import { Card, ListGroup } from 'react-bootstrap'; |
| import { Link } from 'react-router-dom'; |
| import { useTranslation } from 'react-i18next'; |
| |
| import { isEmpty } from 'lodash'; |
| |
| import { Icon } from '@/components'; |
| import { useQuestionLink } from '@/services'; |
| import { pathFactory } from '@/router/pathFactory'; |
| |
| interface Props { |
| id: string; |
| } |
| const Index: FC<Props> = ({ id }) => { |
| const { t } = useTranslation('translation', { |
| keyPrefix: 'linked_question', |
| }); |
| const { t: t2 } = useTranslation('translation', { |
| keyPrefix: 'related_question', |
| }); |
| |
| const { data } = useQuestionLink({ |
| question_id: id, |
| page: 1, |
| page_size: 5, |
| }); |
| |
| if (!data || isEmpty(data?.list)) { |
| return null; |
| } |
| |
| return ( |
| <Card className="mb-4"> |
| <Card.Header className="text-nowrap d-flex justify-content-between text-capitalize"> |
| {t('title')} |
| <Link to={`/linked/${id}`} className="btn btn-link p-0"> |
| {t('more', { keyPrefix: 'btns' })} |
| </Link> |
| </Card.Header> |
| <ListGroup variant="flush"> |
| {data.list?.map((item) => ( |
| <ListGroup.Item |
| action |
| key={item.id} |
| as={Link} |
| to={pathFactory.questionLanding(item.id, item.url_title)}> |
| <div className="link-dark text-truncate-3">{item.title}</div> |
| {item.answer_count > 0 && ( |
| <div |
| className={`mt-1 small me-2 ${ |
| item.accepted_answer_id > 0 |
| ? 'link-success' |
| : 'link-secondary' |
| }`}> |
| <Icon |
| name={ |
| item.accepted_answer_id > 0 |
| ? 'check-circle-fill' |
| : 'chat-square-text-fill' |
| } |
| className="me-1" |
| /> |
| <span> |
| {item.answer_count} {t2('answers')} |
| </span> |
| </div> |
| )} |
| </ListGroup.Item> |
| ))} |
| </ListGroup> |
| </Card> |
| ); |
| }; |
| |
| export default memo(Index); |