| Línea 6... |
Línea 6... |
| 6 |
import { openShareModal as OpenShareModalAction } from "../../../redux/share-modal/shareModal.actions";
|
6 |
import { openShareModal as OpenShareModalAction } from "../../../redux/share-modal/shareModal.actions";
|
| 7 |
import { addNotification } from "../../../redux/notification/notification.actions";
|
7 |
import { addNotification } from "../../../redux/notification/notification.actions";
|
| 8 |
import { deleteFeed } from "../../../redux/feed/feed.actions";
|
8 |
import { deleteFeed } from "../../../redux/feed/feed.actions";
|
| 9 |
import { shareModalTypes } from "../../../redux/share-modal/shareModal.types";
|
9 |
import { shareModalTypes } from "../../../redux/share-modal/shareModal.types";
|
| 10 |
import parse from "html-react-parser";
|
10 |
import parse from "html-react-parser";
|
| 11 |
import {axios} from "../../../utils";
|
11 |
import { axios } from "../../../utils";
|
| 12 |
import ConfirmModal from "../../../shared/confirm-modal/ConfirmModal";
|
12 |
import ConfirmModal from "../../../shared/confirm-modal/ConfirmModal";
|
| 13 |
import { Modal } from "react-bootstrap";
|
13 |
import { Modal } from "react-bootstrap";
|
| 14 |
import styles from "./feedTemplate.module.scss";
|
14 |
import styles from "./feedTemplate.module.scss";
|
| 15 |
import { feedTypes } from "../../../redux/feed/feed.types";
|
15 |
import { feedTypes } from "../../../redux/feed/feed.types";
|
| Línea 334... |
Línea 334... |
| 334 |
</span>
|
334 |
</span>
|
| 335 |
</div>
|
335 |
</div>
|
| 336 |
</div>
|
336 |
</div>
|
| 337 |
</div>
|
337 |
</div>
|
| Línea 338... |
Línea 338... |
| 338 |
|
338 |
|
| 339 |
const Content = ({showDescription}) => <div className="job_descp">
|
339 |
const Content = ({ showDescription }) => <div className="job_descp">
|
| 340 |
{
|
340 |
{
|
| 341 |
!!showDescription && (
|
341 |
!!showDescription && (
|
| 342 |
<OwnerDescription />
|
342 |
<OwnerDescription />
|
| 343 |
)
|
343 |
)
|
| Línea 480... |
Línea 480... |
| 480 |
feedType: state.shareModal.feedType,
|
480 |
feedType: state.shareModal.feedType,
|
| 481 |
});
|
481 |
});
|
| Línea 482... |
Línea 482... |
| 482 |
|
482 |
|
| 483 |
const mapDispatchToProps = {
|
483 |
const mapDispatchToProps = {
|
| 484 |
deleteFeed: (feedId) => deleteFeed(feedId),
|
484 |
deleteFeed: (feedId) => deleteFeed(feedId),
|
| 485 |
openShareModal: (postUrl, modalType, feedType) => OpenShareModalAction(postUrl, modalType, feedType),
|
485 |
openShareModal: (postUrl, modalType, feedType, feed_unique) => OpenShareModalAction(postUrl, modalType, feedType, feed_unique),
|
| 486 |
addNotification: (notification) => addNotification(notification),
|
486 |
addNotification: (notification) => addNotification(notification),
|
| Línea 487... |
Línea 487... |
| 487 |
};
|
487 |
};
|