Skip to content

Repository files navigation

@rr0/place

RR0

Places representation API.

Installation

npm install @rr0/place --save

Design

Once place are represented using assembled business objects (City, State, Country, or several Place subtypes), they can be provided as parameters to some Renderer, which will use a Translator to convert them to text (or HTML markup, etc.).

Example

Say we want to render the timeline of some people:

import{grammar_fr,Translation}from"@rr0/lang"import{messages_fr}from"lang/Messages_fr"import{City,States,HTMLPlaceRenderer}from'@rr0/place';consttranslation=newTranslation('fr',grammar_fr,messages_fr)constrenderer=newHTMLPlaceRenderer(translation)constcity=newCity('Chicago',States.illinois)consthtml=renderer.renderCity(city)

will return in html:

Chicago (Illinois, États-Unis)

Change the parameters of the Translator to a en locale and to use messages_en, and grammar_en and change the custom translation to:

then you will get instead:

Chicago (Illinois, USA)

About

Place representation API

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Used by

Contributors

Languages