| Línea 6... |
Línea 6... |
| 6 |
import { shareModalTypes } from "../../../redux/share-modal/shareModal.types";
|
6 |
import { shareModalTypes } from "../../../redux/share-modal/shareModal.types";
|
| 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 styles from "./feedTemplate.module.scss";
|
- |
|
| 12 |
import { feedTypes } from "../../../redux/feed/feed.types";
|
11 |
import { feedTypes } from "../../../redux/feed/feed.types";
|
| 13 |
import { BsFillChatDotsFill, BsFillTrashFill, BsHeart, BsHeartFill } from 'react-icons/bs'
|
12 |
import { BsFillChatDotsFill, BsFillTrashFill, BsHeart, BsHeartFill } from 'react-icons/bs'
|
| 14 |
import { FaShare } from 'react-icons/fa'
|
13 |
import { FaShare } from 'react-icons/fa'
|
| - |
|
14 |
import styles from "./feedTemplate.module.scss";
|
| - |
|
15 |
import styleFeed from "../share-feed/shareFeed.module.scss";
|
| Línea 15... |
Línea 16... |
| 15 |
|
16 |
|
| 16 |
// Redux actions
|
17 |
// Redux actions
|
| 17 |
import { openShareModal } from "../../../redux/share-modal/shareModal.actions";
|
18 |
import { openShareModal } from "../../../redux/share-modal/shareModal.actions";
|
| 18 |
import { addNotification } from "../../../redux/notification/notification.actions";
|
19 |
import { addNotification } from "../../../redux/notification/notification.actions";
|
| - |
|
20 |
import { deleteFeed } from "../../../redux/feed/feed.actions";
|
| Línea 19... |
Línea 21... |
| 19 |
import { deleteFeed } from "../../../redux/feed/feed.actions";
|
21 |
import { TbSend } from "react-icons/tb";
|
| Línea 20... |
Línea 22... |
| 20 |
|
22 |
|
| 21 |
const FeedTemplate = ({ feed, owner_shared, image }) => {
|
23 |
const FeedTemplate = ({ feed, owner_shared, image }) => {
|
| Línea 414... |
Línea 416... |
| 414 |
value: "true",
|
416 |
value: "true",
|
| 415 |
message: "El campo es requerido",
|
417 |
message: "El campo es requerido",
|
| 416 |
},
|
418 |
},
|
| 417 |
})}
|
419 |
})}
|
| 418 |
/>
|
420 |
/>
|
| 419 |
<button type="submit" className="btn btn-primary" style={{ padding: '2px 10px' }}>
|
421 |
<button className={`${styleFeed.shareIconContainer} ${styleFeed.iconActive}`} >
|
| 420 |
Comentar
|
422 |
<TbSend className={styleFeed.shareIcon} />
|
| 421 |
</button>
|
423 |
</button>
|
| 422 |
{/* Falta multilenguaje */}
|
424 |
{/* Falta multilenguaje */}
|
| 423 |
</div>
|
425 |
</div>
|
| 424 |
</form>
|
426 |
</form>
|
| 425 |
{
|
427 |
{
|