Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 3384 Rev 3466
Línea 14... Línea 14...
14
import { RiShareForwardLine } from 'react-icons/ri'
14
import { RiShareForwardLine } from 'react-icons/ri'
15
import { TbSend } from "react-icons/tb";
15
import { TbSend } from "react-icons/tb";
16
import { BiDotsVerticalRounded, BiMessage, BiShareAlt } from "react-icons/bi";
16
import { BiDotsVerticalRounded, BiMessage, BiShareAlt } from "react-icons/bi";
17
import styles from "./feedTemplate.module.scss";
17
import styles from "./feedTemplate.module.scss";
18
import styleFeed from "../share-feed/shareFeed.module.scss";
18
import styleFeed from "../share-feed/shareFeed.module.scss";
19
 
-
 
20
import { EmailIcon, EmailShareButton, FacebookIcon, FacebookMessengerIcon, FacebookMessengerShareButton, FacebookShareButton, PinterestIcon, PinterestShareButton, RedditIcon, RedditShareButton, TelegramIcon, TelegramShareButton, TumblrIcon, TumblrShareButton, TwitterIcon, TwitterShareButton, WhatsappIcon, WhatsappShareButton, WorkplaceIcon, WorkplaceShareButton } from "react-share";
19
import { EmailIcon, EmailShareButton, FacebookIcon, FacebookShareButton, RedditIcon, RedditShareButton, TelegramIcon, TelegramShareButton, TwitterIcon, TwitterShareButton, WhatsappIcon, WhatsappShareButton } from "react-share";
Línea 21... Línea 20...
21
 
20
 
22
// Redux actions
21
// Redux actions
23
import { openShareModal } from "../../../redux/share-modal/shareModal.actions";
22
import { openShareModal } from "../../../redux/share-modal/shareModal.actions";
24
import { addNotification } from "../../../redux/notification/notification.actions";
23
import { addNotification } from "../../../redux/notification/notification.actions";
Línea 474... Línea 473...
474
                shareOptions &&
473
                shareOptions &&
475
                <div className="ext_share" ref={shareContainer}>
474
                <div className="ext_share" ref={shareContainer}>
476
                  <FacebookShareButton url={feed_share_external_url}>
475
                  <FacebookShareButton url={feed_share_external_url}>
477
                    <FacebookIcon size={32} round />
476
                    <FacebookIcon size={32} round />
478
                  </FacebookShareButton>
477
                  </FacebookShareButton>
479
                  <FacebookMessengerShareButton url={feed_share_external_url}>
-
 
480
                    <FacebookMessengerIcon size={32} round />
-
 
481
                  </FacebookMessengerShareButton>
-
 
482
                  <TwitterShareButton url={feed_share_external_url}>
478
                  <TwitterShareButton url={feed_share_external_url}>
483
                    <TwitterIcon size={32} round />
479
                    <TwitterIcon size={32} round />
484
                  </TwitterShareButton>
480
                  </TwitterShareButton>
485
                  <TelegramShareButton url={feed_share_external_url}>
481
                  <TelegramShareButton url={feed_share_external_url}>
486
                    <TelegramIcon size={32} round />
482
                    <TelegramIcon size={32} round />
487
                  </TelegramShareButton>
483
                  </TelegramShareButton>
488
                  <WhatsappShareButton url={feed_share_external_url}>
484
                  <WhatsappShareButton url={feed_share_external_url}>
489
                    <WhatsappIcon size={32} round />
485
                    <WhatsappIcon size={32} round />
490
                  </WhatsappShareButton>
486
                  </WhatsappShareButton>
491
                  <PinterestShareButton url={feed_share_external_url}>
-
 
492
                    <PinterestIcon size={32} round />
-
 
493
                  </PinterestShareButton>
-
 
494
                  <RedditShareButton url={feed_share_external_url}>
487
                  <RedditShareButton url={feed_share_external_url}>
495
                    <RedditIcon size={32} round />
488
                    <RedditIcon size={32} round />
496
                  </RedditShareButton>
489
                  </RedditShareButton>
497
                  <TumblrShareButton url={feed_share_external_url}>
-
 
498
                    <TumblrIcon size={32} round />
-
 
499
                  </TumblrShareButton>
-
 
500
                  <WorkplaceShareButton url={feed_share_external_url}>
-
 
501
                    <WorkplaceIcon size={32} round />
-
 
502
                  </WorkplaceShareButton>
-
 
503
                  <EmailShareButton url={feed_share_external_url}>
490
                  <EmailShareButton url={feed_share_external_url}>
504
                    <EmailIcon size={32} round />
491
                    <EmailIcon size={32} round />
505
                  </EmailShareButton>
492
                  </EmailShareButton>
506
                </div>
493
                </div>
507
              }
494
              }