0.0.21 • Published 5 years ago

vue-svg-textwrap v0.0.21

Weekly downloads
168
License
MIT
Repository
github
Last release
5 years ago

Vue 2.x text-wrap-directive for svg text elements

Install

npm install --save vue-svg-textwrap

Usage

Import module via

import wrapper from 'vue-svg-textwrap';

... register as directive globally:

Vue.directive('textwrap', wrapper);

... or locally within a component:

directives: {
  wrapper
}

... and then in your vue template:

<svg>
  <text v-wrapper="myTextProperty" />
</svg>

Configuration

For now, there is no text wrapping - how should the directive know the desired maximum width? You can tell it via a numeric modifier (i.e. v-wrapper.250="myTextProperty") which will be interpreted as the maximum width in pixels, 250 here.

The same way you can tell the wrapper about the vertical alignment, which accepts 'top', 'middle', 'bottom', 'baseline' and 'none', defaults to 'baseline'. Caution: As of 0.0.16 the vertical transform for 'middle' is caluclated more precise, keep that in mind when updating. When wrapping only few lines, the more the vertical difference (between this and older versions) becomes.

By default the given value will be interpreted as HTML/SVG, i.e. it will be applied via the innerHTML property of the node. Why that? Uhm... you may set formatted text? Some words bold, some others highlighted? Yes, the wrapper respects your formatting. But if you prefer to set the textContent you can do with the plain-modifier.

...thank you, very good question: What is the line-height? It defaults to 1.125em. Not happy with that? Then you might be interested in setting it yourself, unfortunately this cannot be done via a modifier. Go ahead:

Per-directive configuration

There is not only the directive itself, but also some kind of generator, which allows override the standard-configuration. You can access it via

import { ConfiguredWrapper } from 'vue-svg-textwrap'

which is a function, accepting a configuration object as parameter and returning a configured directive:

directives: {
  wrapper: ConfiguredWrapper({ lineHeight: '2em' })
}

This is how you may override the default line-height, but you can also do so with the other properties. Of course, you can create multiple differently configured wrapper directives this way.

Configuration bindings

Since 0.0.12 you are able to override the settings with dynamic property values (i.e. bind to instance properties). Using the directive as following you can e.g. bind the width for the text-wrapper:

<text v-wrapper="{ text: myTextProperty, width: myWidthProperty }" />

Physical measurement

As of 0.20 you may control how measuring is done. Assume your SVG is having viewBox="0 0 100 100" but with the actual size of 200×200 pixels. The text will now be rendered twice as large, but still wrapped at a given width. When placing elements within the SVG it will be done on viewBox units and then scaled. Measuring the text, however, will be done after it is scaled. This might be wanted, but in most cases, i think, it is not. You may control this using the physicalMeasurement-setting, which defaults to false.

About the wrapper

  • When saying "line-height", I am just talking about the value applied on tspan-elements for the dy-attribute.
  • The wrapper will set or override the attributes/properties tspan.dy = config.lineHeight tspan.y (will be removed) tspan.x (will be set to 0 for the first tspan on each line) tspan.style.display (will be set to 'none' temporarily to ignore too long lines in further measurements)

Be careful with text's transform-property.

... because this will be overwritten, to fit the alignment and (if given) the left padding. If want to set the translation by yourself, use align = 'none'. The transform property will not be touched then. The left padding then will be applied via the tspan's x-property.

Polyfilling

For IE there are two functions which are needed to be polyfilled:

  • SVGElement.innerHTML could be done with innersvg-polyfill (npm-package)
  • Object.assign(...) could be done with core-js/(library/)fn/object/assign

You may want to control your polyfills yourself, therefore the default exported comes without polyfills, but there are also polyfilled versions available: dist/index.pf.js and dist/index.pf.min.js.

One more word on IE

There are cases where the measurement of the actual width of the text-elements does not work in IE11. I considered this (very very strange behavior) only using italic at the at least third tspan in a formatted text (i.e. <tspan>foo</tspan><tspan>foo</tspan><tspan font-style="italic">foo</tspan>). After spending a whole day trying to find the problem I give it up for now. So, the message is: avoid Internet Explorer avoid italic font (or at least test carefully when using italics.)

Different font sizes

Be carful using formatted text with different font-sizes. Relative units refer to the elements font-size, which especially affects the line-height (if given in ems).

Very long words

Currently the wrapper has a problem with too long words, i.e words which are too long to wrap within the desired width (especially when formatting a text about a German Donaudampfschifffahrtsgesellschaftskapitänskajüttenbodenreiniger). Maybe I am just thinking too complicated for now or the problem is really difficult... Whatever, too long words cause unreliable behavior currently :(

0.0.21

5 years ago

0.0.20

5 years ago

0.0.19

5 years ago

0.0.18

5 years ago

0.0.17

5 years ago

0.0.16

5 years ago

0.0.15

5 years ago

0.0.14

5 years ago

0.0.13

6 years ago

0.0.12

6 years ago

0.0.11

6 years ago

0.0.10

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago