Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2838 | Rev 2849 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2838 Rev 2839
Línea 7... Línea 7...
7
import parse from "html-react-parser";
7
import parse from "html-react-parser";
8
import { axios } from "../../../utils";
8
import { axios } from "../../../utils";
9
import ConfirmModal from "../../../shared/confirm-modal/ConfirmModal";
9
import ConfirmModal from "../../../shared/confirm-modal/ConfirmModal";
10
import { Modal } from "react-bootstrap";
10
import { Modal } from "react-bootstrap";
11
import { feedTypes } from "../../../redux/feed/feed.types";
11
import { feedTypes } from "../../../redux/feed/feed.types";
12
import { BsFillChatDotsFill, BsFillTrashFill, BsHeart, BsHeartFill } from 'react-icons/bs'
12
import { BsFillTrashFill, BsHeart, BsHeartFill } from 'react-icons/bs'
-
 
13
import { RiShareForwardLine } from 'react-icons/ri'
13
import { FaShare } from 'react-icons/fa'
14
import { TbSend } from "react-icons/tb";
-
 
15
import { BiMessage } from "react-icons/bi";
14
import styles from "./feedTemplate.module.scss";
16
import styles from "./feedTemplate.module.scss";
15
import styleFeed from "../share-feed/shareFeed.module.scss";
17
import styleFeed from "../share-feed/shareFeed.module.scss";
Línea 16... Línea 18...
16
 
18
 
17
// Redux actions
19
// Redux actions
18
import { openShareModal } from "../../../redux/share-modal/shareModal.actions";
20
import { openShareModal } from "../../../redux/share-modal/shareModal.actions";
19
import { addNotification } from "../../../redux/notification/notification.actions";
21
import { addNotification } from "../../../redux/notification/notification.actions";
20
import { deleteFeed } from "../../../redux/feed/feed.actions";
-
 
Línea 21... Línea 22...
21
import { TbSend } from "react-icons/tb";
22
import { deleteFeed } from "../../../redux/feed/feed.actions";
Línea 22... Línea 23...
22
 
23
 
23
const FeedTemplate = ({ feed, owner_shared, image }) => {
24
const FeedTemplate = ({ feed, owner_shared, image }) => {
Línea 376... Línea 377...
376
              <button
377
              <button
377
                type="button"
378
                type="button"
378
                id={`btn-comments-${feed_unique}`}
379
                id={`btn-comments-${feed_unique}`}
379
                className="btn-indicator"
380
                className="btn-indicator"
380
              >
381
              >
381
                <BsFillChatDotsFill className="mr-1" />
382
                <BiMessage className="mr-1" />
382
                {totalComments}
383
                {totalComments}
383
              </button>
384
              </button>
384
            </li>
385
            </li>
385
            <li>
386
            <li>
386
              <button
387
              <button
387
                type="button"
388
                type="button"
388
                id={`btn-share-${feed_unique}`}
389
                id={`btn-share-${feed_unique}`}
389
                className="btn-indicator"
390
                className="btn-indicator"
390
                onClick={btnShareHandler}
391
                onClick={btnShareHandler}
391
              >
392
              >
392
                <FaShare className="mr-1" />
393
                <RiShareForwardLine className="mr-1" />
393
                {sharedState}
394
                {sharedState}
394
              </button>
395
              </button>
395
            </li>
396
            </li>
396
          </ul>
397
          </ul>
397
        </div>
398
        </div>