vue-svg-autosize-text
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

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

Based in vue-svg-textwrap 0.0.21

https://www.npmjs.com/package/vue-svg-textwrap https://github.com/lmeysel/vue-svg-textwrap

Install

npm install --save vue-svg-autosize-text

Usage

Import module via

import wrapper from 'vue-svg-autosize-text';

... register as directive globally:

Vue.directive('textwrap', wrapper);

... or locally within a component:

directives: {
  wrapper
}

... or import with fontSize var type int

import { wrapper, fontSize } from 'vue-svg-autosize-text';

... and use in data:

data () {
    return {
      fs: fontSize
    }
}

... 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.

FieldTypeDefaultDescription
plain boolean false True, to apply given text as textContent instead of innerHTML.
width int (null) The maximum width of the text-element.
height int (null) The maximum height of the text-element.
align string 'baseline' The vertical alignment of the node.
lineHeight string|int '1.125em' The line height.
padding int 0 Padding on left and right side. This has lesser priority when set with paddingLeft and/or paddingRight. (Since 0.8)
paddingLeft int 0 Padding on the left side. Overwrites eventually given option 'padding'. (Since 0.8)
paddingRight int 0 Padding on the right side. Overwrites eventually given option 'padding'. (Since 0.8)
afterReflow (SVGTextElement, configuration) => any Callback routine to call after text is updated and wrapping calculation is done. `this` is the owning Vue component within the callback. (Since 0.14)
physicalMeasurement boolean false Indicates whether to measure in phyiscal width or in viewBox-units. (Since 0.20)

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, height: myHeightProperty, x: myXtextProperty }" />

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 :(

Package Sidebar

Install

npm i vue-svg-autosize-text

Weekly Downloads

1

Version

0.0.3

License

MIT

Unpacked Size

38.4 kB

Total Files

10

Last publish

Collaborators

  • drummerzzz