Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1193 Rev 1194
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
2
import { useState } from 'react';
2
import { useState } from 'react';
3
/* import { useDispatch } from 'react-redux'; */
3
/* import { useDispatch } from 'react-redux'; */
4
/* import { addNotification } from '../../../../redux/notification/notification.actions'; */
4
/* import { addNotification } from '../../../../redux/notification/notification.actions'; */
Línea 5... Línea 5...
5
 
5
 
Línea 6... Línea 6...
6
const LikeButton = ({ likeUrl }) => {
6
const LikeButton = ({ likeUrl, showCounter = false }) => {
7
 
7
 
8
    const [isLike, setIsLike] = useState(false);
8
    const [isLike, setIsLike] = useState(false);
Línea 36... Línea 36...
36
            type="button"
36
            type="button"
37
            className={isLike ? "btn-unlike" : "btn-like"}
37
            className={isLike ? "btn-unlike" : "btn-like"}
38
            onClick={() => handleClick(likeUrl)}
38
            onClick={() => handleClick(likeUrl)}
39
        >
39
        >
40
            <i className={isLike ? "fas fa-heart" : "far fa-heart"}></i>
40
            <i className={isLike ? "fas fa-heart" : "far fa-heart"}></i>
41
            {likesState}
41
            {showCounter && likesState}
42
        </button>
42
        </button>
43
    )
43
    )
44
}
44
}
Línea 45... Línea 45...
45
 
45
 
46
export default LikeButton
46
export default LikeButton