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

vnd-channel-01

v0.0.9

Published

Este é um plugin que adiciona a funcionalidade de produtos favoritos aos projetos GSeller Vendure.

Downloads

25

Readme

GSeller Vendure Nomedoplugin

Este é um plugin que adiciona a funcionalidade de produtos favoritos aos projetos GSeller Vendure.

Dependências

Certifique-se de ter as seguintes dependências instaladas (listadas em peerDependencies no package.json):

  • @nestjs/graphql
  • @vendure/cli
  • @vendure/core
  • graphql-tag
  • reflect-metadata
  • typeorm

Estrutura de Pastas e Arquivos

A estrutura do projeto é organizada para facilitar a compreensão e manutenção.

Pasta entity

A pasta entity contém as definições das entidades usadas no projeto.

Arquivo favorite.entity.ts

Define a entidade Favorite, representando a relação entre um cliente e um produto favorito.

Pasta api

Contém arquivos relacionados à API GraphQL do projeto.

Arquivo api-extensions.ts

Fornece extensões para o esquema GraphQL do Vendure, introduzindo tipos e operações adicionais relacionados à entidade Favorite.

Arquivo customer-entity.resolver.ts

Resolver GraphQL para consultas relacionadas à entidade Customer. Inclui a resolução para o campo favorites, que retorna a lista de favoritos de um cliente.

Arquivo favorite-entity.resolver.ts

Resolver GraphQL para consultas relacionadas à entidade Favorite. Inclui resoluções para os campos product e customer.

Arquivo favorite-shop.resolver.ts

Resolver GraphQL para operações de mutação e consulta relacionadas aos favoritos na loja. Inclui operações como toggleFavorite para adicionar ou remover um produto da lista de favoritos, e activeFavorites para obter a lista de favoritos ativos de um cliente.

Arquivo constants.ts

Contém constantes utilizadas no projeto, incluindo o símbolo PLUGIN_INIT_OPTIONS e o contexto do logger para o plugin.

Arquivo plugin.ts

Ponto central do plugin, responsável por configurar e exportar o FavoritesPlugin. Principais características:

  • Favorite Entity: Adiciona a entidade Favorite ao array de entidades.

  • adminApiExtensions e shopApiExtensions: Define extensões da API GraphQL para administração e loja, utilizando os arquivos api-extensions.ts, CustomerEntityResolver, FavoriteEntityResolver, e FavoriteShopResolver.

  • PluginInitOptions: Define as opções de inicialização do plugin através da interface PluginInitOptions.

  • init() method: Configura as opções do plugin. Este método é chamado durante a inicialização do plugin no Vendure.

Arquivo types.ts

Contém a definição da interface PluginInitOptions, especificando as opções de configuração para o plugin.


Observação: Certifique-se de incluir informações adicionais ou links para documentação específica dentro de cada arquivo, se necessário. Esta estrutura de documentação visa proporcionar uma compreensão clara das responsabilidades de cada arquivo nas pastas src, api, entities do seu projeto.