npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

yb-menu

v1.0.17

Published

Универсальное настраиваемое меню для любого сайта

Downloads

13

Readme

Menu

Универсальное настраиваемое меню для любого сайта Посмотреть как работает

Пропсы

  • Object menu
  • String ruleForCompare
  • Boolean isRouter default=false

Объект настроек menu

Примеры подключения и использования

// подключение собственно модуля
import Menu from "yb-menu";
// здесь же подключаем файл с ВАШИМИ стилями для меню
// (пример содержимого такого файла будет ниже)
import '../CustomMenu.less';
// самый простой вариант
<Menu
    menu={this.menuData}
/>
// вариант с использованием правил сравнения: для показа некоторых блоков
// (например, спец.разделов для авторизованных пользователей)
<Menu
    menu={this.menuData}
    ruleForCompare="iAmLoggedIn"
/>
this.menuData = {
    data : [
        {
            label : "level1 Клик",
            children : {
                showType : "click",
                data : [
                    {
                        label : "level2 Ссылка",
                        href : "/npm/ybashanov/yb-menu/#some_path2"
                    },
                    {
                        label : "level2 isDisabled",
                        isDisabled : true
                    }
                ]
            }
        },
        {
            label : "level1 Ссылка",
            href : "/npm/ybashanov/yb-menu/#some_path11",
            //rules : ["rule1", "rule2", "rule3"],
            children : {
                showType : "hover",
                className : "boldHref",
                data : [
                    {
                        label : "level2 Нет ссылки (bold)",
                        children : {
                            showType : "view",
                            data : [
                                {
                                    label : "level3 Ссылка",
                                    href : "/npm/ybashanov/yb-menu/#some_path3"
                                },
                                {
                                    label : "level3 Ссылка",
                                    href : "/npm/ybashanov/yb-menu/#some_path4"
                                }
                            ]
                        }
                    },
                    {
                        label : "level2 Нет ссылки (bold)",
                        children : {
                            showType : "view",
                            data : [
                                {
                                    label : "level3 Нет ссылки"
                                },
                                {
                                    label : "level3 Ссылка",
                                    href : "/npm/ybashanov/yb-menu/#some_path5"
                                }
                            ]
                        }
                    }
                ]
            }
        }
    ]
};
// Параметры
@text-color: #111111;
@text-hover-color: #498dff;
@text-disable: #aaaaaa;
@line-hover-color: #777777;

.Tahoma_16 {
  font-family: Tahoma, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}
.Tahoma_16_bold {
  font-family: Tahoma, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}
.box-shadow(@params){
  -webkit-box-shadow: @params;
  -moz-box-shadow: @params;
  box-shadow: @params;
}


// реализация пользовательских стилей
// верстка и шрифты
.Menu {
  // растяжка
  position: relative;

  // ---------- 1й уровень ----------
  .level.level_1 {
    background-color: #FFFFFF;
    // растяжка
    width: 100%;

    > .item {
      display: inline-block;
      padding:0 30px;

      &:nth-child(3) {
        padding-left: 0;
      }
      &:last-child  {
        padding-right: 0;
      }

      > .label {
        padding: 12px 0 10px 0;
        cursor: pointer;
        .Tahoma_16;
        color: @text-color;
      }

      &:hover > .label {
        border-bottom: 2px solid @line-hover-color;
      }



      // ---------- 2й уровень ----------
      .level.level_2 {
        // растяжка
        width: 100%;
        position: absolute;
        left: 0;
        border-top: 1px solid #E6E6E6;
        .box-shadow(0 4px 8px -5px rgba(0, 0, 0, 0.16));


        background-color: #FFFFFF;
        padding-top: 24px;
        padding-bottom: 24px;


        // левая и правая стороны - если требуется выйти за пределы центральной области верстки
        > .wings {
          display: block;
          top: 0;
          height: 100%;
          background-color: #fff;

          .box-shadow(0 4px 8px -5px rgba(0, 0, 0, 0.16));
        }


        // имя className в объекте menu (жирный текст)
        &.boldHref {
          > .item {
            display: inline-block;
            margin: 0 30px;

            &:nth-child(3) {
              margin-left: 0;
            }
            &:last-child  {
              margin-right: 0;
            }

            > .label {
              .Tahoma_16_bold;

              &:hover {
                cursor: default;
                color: @text-color;
              }
            }

          }
        }

        // без дополнительного className (обычный текст)
        > .item {
          display: block;
          margin-bottom: 12px;

          color: @text-color;

          > .label {
            .Tahoma_16;

            &:hover {
              cursor: pointer;
              color: @text-hover-color;
            }
          }
          > .label.isDisabled_true {
            color: @text-disable;

            &:hover {
              cursor: default;
              color: @text-disable;
            }
          }


          // ---------- 3й уровень ----------
          .level.level_3 {
            padding-top: 12px;

            > .item {
              display: block;
              margin-bottom: 12px;

              > .label {
                .Tahoma_16;

                &:hover {
                  cursor: pointer;
                  color: @text-hover-color;
                }
              }
            }
          }
        }
      }
    }
  }
}