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

r2-soft-simple-emoji

v1.1.4

Published

Editor com emoticons para aplicações baseadas em javascript/vue

Downloads

47

Readme

r2-editor-simple-emoji

Descrição

Projeto feito para aplicações Vue que necessitam de um editor simples com emoticons

Instalação

npm install r2-soft-simple-emoji

Depois importe a pasta da skin do editor e cole em /public. Você vai encontrar ela na lib, o nome é custom_editor_skin

Aí é só importar e registrar o componente nas páginas onde vc quer usar:

<template>
    <div>
        <r2-soft-editor
        ref="r2Editor" 
        editor-id="box-chat"
        :disabled="disabled"
        :message="newMessage"
        @update:message="newMessage = $event"
        @send="sendMessage"
        @attachFile="attachFile($event, true)"
        @keyPress="checkHotkeys($event.key)" 
        />
    </div>
</template>

import R2SoftEditor from 'r2-soft-simple-emoji';

components: {R2SoftEditor}

:Propriedades

Aqui tem uma lista com as propriedades que o editor aceita.

 simpleLabel - tipo: String, default: ''
 Essa propriedade oculta os botões de ação do editor colocando o texto no lugar
 menuOptions - tipo: Array, default: []
 Essa propriedade aceita um array com os botões que deve ficar em um menu de dropdown.
 Exemplo de um botão:
 {
    icon: 'cancel',
    type: 'menuitem',
    text: 'Cancelar',
    onAction: () => this.cancelReply()
 }
editorId - tipo: String, default: 'editor'
É o id do editor, para usar várias instâncias.
disabled - tipo: Boolean, default: false
Habilita ou desabilita o editor.
showWhenType - tipo: Boolean, default: false
Envia um evento sempre que o usuário para ou inicia a digitação.

@Eventos

Lista com os eventos enviados pelo componente.

 send
 Essa evento "envia" a mensagem e limpa o editor, disparado quando o usuário digita Enter.
 update:message
 Essa evento atualiza a mensagem. Deve ser chamado no componente do Editor da seguinte maneira:
 
 :message="newMessage" @update:message="newMessage = $event"
 
 Dessa maneira a sua propriedade local newMessage sempre vai receber o valor de message.
 attachFile
 Essa evento identifica e "envia" um arquivo de imagem quando o usuário cola ele no chat.

Funções()

Para usar as funções é só referenciar a instância do editor e chamar a função nessa referência.

 clearMessage()
 Ex: this.$refs.r2Editor.clearMessage();
 Esse método "limpa" o editor.
 updateMessage(newOtherMessage)
 Ex: this.$refs.r2Editor.updateMessage(newOtherMessage);
 Esse método atribui um novo valor à mensagem.

Desenvolvido por:

R2 Soft

Clique aqui para saber mais