Coder Social home page Coder Social logo

Comments (4)

yairEO avatar yairEO commented on June 18, 2024 1

Hi, please create a minimal test case as per the requirements of opening an issue such as this.

There is a link to a jsbin template when you create a new issue.

from tagify.

KolRah avatar KolRah commented on June 18, 2024 1

ok I understand your point
I didn't get the Validate function behaviour correctly so I had to do all this stuff
Thanks for your kind help

from tagify.

KolRah avatar KolRah commented on June 18, 2024

Hi thanks for your reply
I wasn't aware of how to use jsbin, now it's ok

test case: https://jsbin.com/fejaweveyi/edit?html,js,console,output

add a good tag ( [email protected] )
then add 2 erroneous ones like "something" and "somethingelse"
edit "something" to "[email protected]" and somethingelse becomes valid

from tagify.

yairEO avatar yairEO commented on June 18, 2024
  1. you've included Tagify twice in the demo page
  2. you've mis-used tagify in the way you are validating tags and therefore you created the bug you reported for.
  3. your demo is way too complex. you should have removed 80% of the code to keep it minimal and reproducible.

You should be using the validate settings, as seen in a simplified version of your demo page:

https://jsbin.com/farasel/edit?html,js,output

function isEmail(value) {
  const emailRegex = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/gm
  return emailRegex.test(value)
}

var element = document.querySelector('textarea');
 
let tagify = new Tagify(element,{
  keepInvalidTags: true,
  duplicates: false,
  pasteAsTags: true,
  validate({value}) {
    return isEmail(value)
  }
})

from tagify.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.