Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 7085 Rev 7238
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
2
import { Link } from 'react-router-dom'
2
import { Link } from 'react-router-dom'
Línea 3... Línea -...
3
 
-
 
4
import Badge from '../../UI/Badge'
-
 
5
 
3
 
6
const ListItemDropdown = ({ options = [], isShow }) => {
4
const ListItemDropdown = ({ options = [], isShow }) => {
Línea 7... Línea 5...
7
  if (!options.length) return null
5
  if (!options.length) return null
8
 
6
 
9
  return (
7
  return (
10
    <nav className={`nav__options-dropdown ${isShow && 'show'}`}>
8
    <nav className={`nav__options-dropdown ${isShow && 'show'}`}>
11
      <ul>
9
      <ul>
12
        {options.map(({ label, href, childs, count }, index) => (
10
        {options.map(({ label, href, childs, count }, index) => (
13
          <li key={index}>
11
          <li key={index}>
14
            <Link to={href[0] === '/' ? href : `/${href}`}>
12
            <Link to={href[0] === '/' ? href : `/${href}`}>
15
              {label}
-
 
16
              {Boolean(count) && (
-
 
17
                <Badge count={count} className="position-relative" />
13
              {label}
18
              )}
14
              {Boolean(count) && ` | ${count}`}
19
            </Link>
15
            </Link>
20
            {Boolean(childs?.length) && (
16
            {Boolean(childs?.length) && (
21
              <nav className="navigation-level_three">
17
              <nav className="navigation-level_three">