Co-authored-by: Joren Broekema <Joren.Broekema@ing.com> Co-authored-by: Alex Ghiu <Alex.Ghiu@ing.com> Co-authored-by: Thijs Louisse <Thijs.Louisse@ing.com>
197 lines
4.6 KiB
Text
197 lines
4.6 KiB
Text
import { css } from '@lion/core';
|
|
import { Story, Meta, html } from '@open-wc/demoing-storybook';
|
|
import { formatNumber, formatNumberToParts, formatDate } from '../index.js';
|
|
import allLocales from './all-locales.js';
|
|
|
|
<Meta title="Localize/Dates" />
|
|
|
|
export const formatDateDemoStyle = css`
|
|
.demo-table {
|
|
border-collapse: collapse;
|
|
text-align: right;
|
|
}
|
|
.demo-table thead > tr {
|
|
border-bottom: 1px solid grey;
|
|
}
|
|
.demo-table thead > tr > :first-child,
|
|
.demo-table tbody > tr > :first-child,
|
|
.demo-table tfoot > tr > :first-child {
|
|
text-align: left;
|
|
}
|
|
.demo-table th,
|
|
.demo-table td {
|
|
padding: 8px;
|
|
}
|
|
`;
|
|
|
|
# Date localization
|
|
|
|
## Features
|
|
|
|
- Small file size
|
|
- Uses `Intl.DateFormat` but patches browser inconsistencies
|
|
|
|
## Formatting
|
|
|
|
With the `formatDate` you can safely display dates for all languages.
|
|
|
|
The input value is `new Date('1987/05/12')`.
|
|
|
|
<Story name="Formatting">
|
|
{() => html`
|
|
<style>
|
|
${formatDateDemoStyle}
|
|
</style>
|
|
<table class="demo-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Output</th>
|
|
<th>Options</th>
|
|
<th>Code</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>${formatDate(new Date('1987/05/12'))}</td>
|
|
<td>Default</td>
|
|
<td><code>formatDate(new Date('1987/05/12'))</code></td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
${formatDate(new Date('1987/05/12'), {
|
|
weekday: 'long',
|
|
year: 'numeric',
|
|
month: 'long',
|
|
day: '2-digit',
|
|
})}
|
|
</td>
|
|
<td>Date display</td>
|
|
<td>
|
|
<code
|
|
>formatDate(new
|
|
Date(){weekday:'long',year:'numeric',month:'long',day:'2-digit'})</code
|
|
>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
${formatDate(new Date('1987/05/12'), {
|
|
weekday: 'long',
|
|
month: 'long',
|
|
day: '2-digit',
|
|
})}
|
|
</td>
|
|
<td>Date without year</td>
|
|
<td>
|
|
<code>
|
|
formatDate(new Date('1987/05/12'), {weekday:'long',month:'long',day:'2-digit'})
|
|
</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
${formatDate(new Date('1987/05/12'), {
|
|
weekday: 'long',
|
|
year: 'numeric',
|
|
day: '2-digit',
|
|
})}
|
|
</td>
|
|
<td>Date without month</td>
|
|
<td>
|
|
<code>
|
|
formatDate(new Date('1987/05/12'), {weekday:'long',year:'numeric',day:'2-digit'})
|
|
</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
${formatDate(new Date('1987/05/12'), {
|
|
weekday: 'long',
|
|
month: 'long',
|
|
year: 'numeric',
|
|
})}
|
|
</td>
|
|
<td>Date without day</td>
|
|
<td>
|
|
<code>
|
|
formatDate(new Date('1987/05/12'), { weekday:'long',year:'numeric',month:'long' })
|
|
</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>${formatDate(new Date('1987/05/12'), { locale: 'nl-NL' })}</td>
|
|
<td>Locale</td>
|
|
<td><code>formatDate(new Date('1987/05/12'){ locale:'nl-NL' })</code></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
`}
|
|
</Story>
|
|
|
|
## List common locales
|
|
|
|
The input value is `new Date('1987/05/12')`.
|
|
Formatting happens via
|
|
|
|
```js
|
|
formatDate(new Date('1987/05/12'), { locale });
|
|
```
|
|
|
|
<Story name="List common locales">
|
|
{() => html`
|
|
<style>
|
|
${formatDateDemoStyle}
|
|
</style>
|
|
<table class="demo-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Locale</th>
|
|
<th>Output</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
${['en-GB', 'en-US', 'nl-NL', 'nl-BE', 'fr-FR', 'de-DE'].map(
|
|
locale => html`
|
|
<tr>
|
|
<td>${locale}</td>
|
|
<td>${formatDate(new Date('1987/05/12'), { locale })}</td>
|
|
</tr>
|
|
`,
|
|
)}
|
|
</tbody>
|
|
</table>
|
|
`}
|
|
</Story>
|
|
|
|
## List all locales
|
|
|
|
The following list shows date formatting for all known locales.
|
|
|
|
The input value is `new Date('1987/05/12')`.
|
|
Formatting happens via
|
|
|
|
```js
|
|
formatDate(new Date('1987/05/12'), { locale });
|
|
```
|
|
|
|
<Story name="List all locales">
|
|
{() => html`
|
|
<style>
|
|
${formatDateDemoStyle}
|
|
</style>
|
|
<table class="demo-table">
|
|
<tr>
|
|
<th>Locale</th>
|
|
<th>Output</th>
|
|
</tr>
|
|
${Object.keys(allLocales).map(
|
|
locale => html`
|
|
<tr>
|
|
<td>${locale}</td>
|
|
<td>${formatDate(new Date('1987/05/12'), { locale })}</td>
|
|
</tr>
|
|
`,
|
|
)}
|
|
</table>
|
|
`}
|
|
</Story>
|