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

component-with-path

v0.1.1

Published

コンポーネントに対してidを連結したパスを自動的に埋め込むことができる

Downloads

6

Readme

component-with-path

コンポーネントに対してidを連結したパスを自動的に埋め込むことができる

インストール

   npm i --save component-with-path

使用方法

基本の使用方法

import React from "react";
import ReactDOM from "react-dom";
import { createRoot } from "component-with-path";

// 任意の名前で初期化する
const Root = createRoot("root");

// サンプル用コンポーネント
// 受け取ったidとpathを書き出すだけ
const SampleComponent = ({ id, usePath, children }) => {
    const path = usePath();
    return <div>
        <div>
            {"My path is : " + path + " / My id is : " + id }
        </div>
            {
                children && <div>
                {
                    children
                }
                </div>
            }
        </div>;
    };

// Rootを使用してラップする
const SampleComponentWithPath = Root.withPath(SampleComponent);

// ネストしてレンダリングする
ReactDOM.render(
    <React.StrictMode>
        <SampleComponentWithPath id="hoge">               // -> root.hoge
            <SampleComponentWithPath id="fuga">           // -> root.hoge.fuga
                <SampleComponentWithPath id="foo">        // -> root.hoge.fuga.foo
                    <SampleComponentWithPath id="bar" />  // -> root.hoge.fuga.foo.bar
                </SampleComponentWithPath>
            </SampleComponentWithPath>
        </SampleComponentWithPath>
    </React.StrictMode>,
    document.getElementById("root")
);

複数のルート / 複数のコンポーネント

// 複数のルートを使用可能
const Root1 = createRoot("root1");
const Root2 = createRoot("root2");

// Root毎、コンポーネントごとにラップする
const SampleComponent1WithRoot1 = Root1.withPath(SampleComponent1);
const SampleComponent2WithRoot1 = Root1.withPath(SampleComponent2);

const SampleComponent1WithRoot2 = Root2.withPath(SampleComponent1);
const SampleComponent2WithRoot2 = Root1.withPath(SampleComponent2);

// ルート毎のパスを得ることができる
ReactDOM.render(
    <React.StrictMode>
        <SampleComponent1WithRoot1 id="hoge">               // -> root1.hoge
            <SampleComponent1WithRoot2 id="fuga">           // -> root2.fuga
                <SampleComponent2WithRoot1 id="foo">        // -> root1.hoge.foo
                    <SampleComponent2WithRoot2 id="bar" />  // -> root2.fuga.bar
                </SampleComponent2WithRoot1>
            </SampleComponent1WithRoot2>
        </SampleComponent1WithRoot1>
    </React.StrictMode>,
    document.getElementById("root")
);

各種オプション

  • 使い方
    // createRootの第2引数にオプションオブジェクトを渡すことが可能
    const Root = createRoot("root", {separator : "_"})
  • プロパティ |プロパティ名|型|デフォルト| |-|-|-| |separator|string|"."|