mirror of
https://github.com/franjsco/tick3t
synced 2025-04-02 20:41:01 +02:00
refactor: Navbar component
This commit is contained in:
parent
e5ff4d781c
commit
4e146f4dd5
@ -6,7 +6,6 @@
|
|||||||
background: -webkit-linear-gradient(#0eaed3, #8346f6);
|
background: -webkit-linear-gradient(#0eaed3, #8346f6);
|
||||||
-webkit-background-clip: text;
|
-webkit-background-clip: text;
|
||||||
-webkit-text-fill-color: transparent;
|
-webkit-text-fill-color: transparent;
|
||||||
|
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
line-height: 0.8;
|
line-height: 0.8;
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
import { connect } from 'react-redux';
|
||||||
|
import { userActions } from '../_actions';
|
||||||
import {
|
import {
|
||||||
Container,
|
Container,
|
||||||
Collapse,
|
Collapse,
|
||||||
@ -10,8 +12,6 @@ import {
|
|||||||
NavItem
|
NavItem
|
||||||
} from 'reactstrap';
|
} from 'reactstrap';
|
||||||
|
|
||||||
import { isLogin } from '../utils/auth';
|
|
||||||
|
|
||||||
import Button from '../components/Button';
|
import Button from '../components/Button';
|
||||||
import './NavBar.css';
|
import './NavBar.css';
|
||||||
import logo from '../assets/admin.svg';
|
import logo from '../assets/admin.svg';
|
||||||
@ -74,7 +74,7 @@ class NavBar extends Component {
|
|||||||
<Nav className="ml-auto" navbar>
|
<Nav className="ml-auto" navbar>
|
||||||
<NavItem>
|
<NavItem>
|
||||||
{
|
{
|
||||||
isLogin() ? (
|
this.props.loggedIn ? (
|
||||||
<Button
|
<Button
|
||||||
onClick={this.closeNavbar}
|
onClick={this.closeNavbar}
|
||||||
tag={Link}
|
tag={Link}
|
||||||
@ -101,4 +101,17 @@ class NavBar extends Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default NavBar;
|
const mapStateToProps = (state) => {
|
||||||
|
return {
|
||||||
|
loggedIn: state.user.loggedIn,
|
||||||
|
error: state.user.error
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const mapDispatchToProps = (dispatch) => {
|
||||||
|
return {
|
||||||
|
logout: () => dispatch(userActions.logout())
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export default connect(mapStateToProps, mapDispatchToProps) (NavBar);
|
Loading…
x
Reference in New Issue
Block a user