Code Monkey home page Code Monkey logo

Comments (4)

wout avatar wout commented on May 21, 2024

In which scenario can this.lines be empty? I suppose only if no text is supplied when creating a text element:

draw.text()

But that is bad practice because the first argument is required. It would be like ordering a glass of water but asking the waiter to leave the glass empty. If one would like to create an empty text element, this is the proper way to do it:

draw.text('')

from svg.js.

jfgodoy avatar jfgodoy commented on May 21, 2024

That's true, I wasn't using the api provided in the documentation, but my scenario is this:

I fetch objects from the server in json format, like

var obj = {
  type: "Text",
  attrs: {...},
  transforms: {...},
  styles: {...}
}

so in order to create a new object, I do the next

var foo = draw.put(new SVG[obj.type]())
foo.attr(obj.attrs)
foo.transform(obj.transforms)
foo.style(obj.styles)

from svg.js.

wout avatar wout commented on May 21, 2024

Ok, I see where you're getting at. In this case it might be better do a little bit more coding:

var element = obj.type == 'rect' || obj.type == 'ellipse' ?
  draw[obj.type](0,0) :
obj.type == 'image' || obj.type == 'text' ?
  draw[obj.type]('') :
obj.type == 'line' ?
  draw.line(0,0,0,0) :
obj.type == 'g' ?
  draw.group() :
  draw[obj.type]()

element.attr(obj.attrs)

from svg.js.

wout avatar wout commented on May 21, 2024

An additional thought, it is always safer to work with the official api because it is much less likely to change.

from svg.js.

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.