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

react-selector-by-ar-mauger

v1.0.12

Published

A simple react selector for my OC project

Downloads

4

Readme

React-selector-by-ar-mauger

npm version

Présentation

react-selector-by-ar-mauger est un composant React pour afficher un sélecteur personnalisé. Simple à utiliser ce composant est particulièrement adapté aux projets nécessitant une interface personnalisée avec des options sélectionnables sous forme de liste déroulante. L'utilisation de balise <ul> et <li> offre un meilleur contrôle sur le style css du sélecteur.

Installation

Vous pouvez installer le composant via npm :

npm install react-selector-by-ar-mauger

Prérequis

  • React : Ce composant nécessite React en version 18 ou supérieure.
  • React-DOM : En version 18 ou supérieure.
  • Typescript : Utilisé pour la typage du composant. Si votre projet est en TypeScript, assurez-vous d'avoir les définitions types appropriées.

Voici les versions spécifiques recommandées :

  • react: ^18.3.1
  • react-dom: ^18.3.1
  • typescript: ^5.5.4

Exemple de configuration tsconfig.json

Voici un exemple de configuration tsconfig.json pour s'assurer que le projet est compatible avec React et TypeScript :

{
  "compilerOptions": {
    "target": "ESNext",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "react-jsx"
  },
  "include": ["src"]
}

Explication des options importantes :

  • target : Définit la version ECMAScript cible pour la compilation. ESNext permet d'utiliser les dernières fonctionnalités.
  • lib : Indique les bibliothèques utilisées dans le projet. Ici, on utilise le DOM et ECMAScript Next.
  • jsx : Spécifie que le projet utilise JSX avec la configuration React (important pour les composants React).
  • esModuleInterop et allowSyntheticDefaultImports : Permettent d'importer correctement les modules CommonJS et ESModule, nécessaires pour React.
  • strict : Active des vérifications strictes de type, garantissant un code TypeScript plus robuste.

Exemple d'utilisation

Voici un exemple de base montrant comment utiliser le composant SimpleReactSelector dans un projet React.

import { useState } from 'react';
import SimpleReactSelector from 'react-selector-by-ar-mauger/dist/SimpleReactSelector';
import 'react-selector-by-ar-mauger/dist/SimpleReactSelector.css'; 

interface Option {
  value: string;
  label: string;
}

const options: Option[] = [
  { value: 'CH', label: 'Chinese' },
  { value: 'EN', label: 'English' },
  { value: 'FR', label: 'French' },
  { value: 'RU', label: 'Russian' },
  { value: 'ES', label: 'Spanish' },

];

const App = () => {
  const [selectedOption, setSelectedOption] = useState<Option | null>(null);

  const handleSelectionChange = (option: Option | null) => {
    setSelectedOption(option);
  };

  return (
    <div>
      <h1>Example with languages</h1>
      <SimpleReactSelector 
        options={options} 
        onChange={handleSelectionChange} 
        placeholder="Choose an option"
      />
      {selectedOption && <p>Selected: {selectedOption.label}</p>}
    </div>
  );
};

export default App;

Props

  • options : [Option[]] (obligatoire) - Une liste d'objets avec une value et un label pour chaque option.
  • onChange : (selectedOption: Option | null) => void (obligatoire) - Fonction appelée lorsque l'utilisateur sélectionne une option.
  • value : Option | null (optionnel) - Option sélectionnée par défaut.
  • placeholder : string (optionnel) - Placeholder affiché lorsque aucune option n'est sélectionnée.
  • id : string (optionnel) - Identifiant HTML optionnel pour le conteneur du composant.

Développement

Pour développer localement ce composant, clonez le dépôt et installez les dépendances avec :

git clone https://github.com/AroldMauger/react-selector-by-ar-mauger.git
cd react-selector-by-ar-mauger
npm install

Pour construire le projet :

npm run build

Liens