Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 7238 Rev 7273
Línea 5... Línea 5...
5
  if (!options.length) return null
5
  if (!options.length) return null
Línea 6... Línea 6...
6
 
6
 
7
  return (
7
  return (
8
    <nav className={`nav__options-dropdown ${isShow && 'show'}`}>
8
    <nav className={`nav__options-dropdown ${isShow && 'show'}`}>
9
      <ul>
9
      <ul>
-
 
10
        {options.map(({ label, href, childs, count }, index) => {
-
 
11
          const redirect = Boolean(childs.length)
-
 
12
          const to = href[0] === '/' ? href : `/${href}`
-
 
13
 
10
        {options.map(({ label, href, childs, count }, index) => (
14
          return (
11
          <li key={index}>
15
            <li key={index}>
12
            <Link to={href[0] === '/' ? href : `/${href}`}>
16
              <Link to={to} onClick={(e) => redirect && e.preventDefault()}>
13
              {label}
17
                {label}
14
              {Boolean(count) && ` | ${count}`}
18
                {Boolean(count) && ` | ${count}`}
15
            </Link>
19
              </Link>
16
            {Boolean(childs?.length) && (
20
              {Boolean(childs?.length) && (
17
              <nav className="navigation-level_three">
21
                <nav className="navigation-level_three">
18
                <ul>
22
                  <ul>
19
                  {childs?.map((optionsChild, index) => (
23
                    {childs?.map((optionsChild, index) => (
20
                    <li key={index}>
24
                      <li key={index}>
21
                      <Link to={`/${optionsChild.href}`}>
25
                        <Link to={`/${optionsChild.href}`}>
22
                        {optionsChild.label}
26
                          {optionsChild.label}
23
                      </Link>
27
                        </Link>
24
                    </li>
28
                      </li>
25
                  ))}
29
                    ))}
26
                </ul>
30
                  </ul>
27
              </nav>
31
                </nav>
28
            )}
32
              )}
-
 
33
            </li>
29
          </li>
34
          )
30
        ))}
35
        })}
31
      </ul>
36
      </ul>
32
    </nav>
37
    </nav>
33
  )
38
  )