@rr0/place
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

@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';

const translation = new Translation('fr', grammar_fr, messages_fr)
const renderer = new HTMLPlaceRenderer(translation)
const city = new City('Chicago', States.illinois)
const html = 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)

Readme

Keywords

Package Sidebar

Install

npm i @rr0/place

Weekly Downloads

0

Version

0.1.0

License

MIT

Unpacked Size

173 kB

Total Files

52

Last publish

Collaborators

  • javarome