wip
This commit is contained in:
parent
498a562b07
commit
d9e7202e3b
|
@ -24,26 +24,32 @@
|
||||||
|
|
||||||
<Subject heading="Dates as Numbers">
|
<Subject heading="Dates as Numbers">
|
||||||
<Section>
|
<Section>
|
||||||
A date can be used in place of a numeric value, but it will be converted to a <Block>UNIX time</Block> timestamp, which is the number of milliseconds since Jan 1st 1970. A more recent moment in time will be a higher number.
|
A datetime value can be used in place of a numeric value, but it will be converted to a <Block>UNIX time</Block> timestamp, which is the number of milliseconds since Jan 1st 1970. A more recent moment in time will be a higher number.
|
||||||
</Section>
|
</Section>
|
||||||
|
|
||||||
<ExampleSection
|
<ExampleSection
|
||||||
heading="Examples:"
|
heading="Examples:"
|
||||||
>
|
>
|
||||||
<ExampleLine>
|
<ExampleLine>
|
||||||
1st Jan 2000<span class="separator">: </span><Block>946684800000</Block>
|
<Block>
|
||||||
|
{(new Date(946684800000).toLocaleString())}
|
||||||
|
</Block>
|
||||||
|
<span class="separator">{"->"} </span><Block>946684800000</Block>
|
||||||
</ExampleLine>
|
</ExampleLine>
|
||||||
<ExampleLine>
|
<ExampleLine>
|
||||||
1st Jan 2020<span class="separator">: </span><Block>1577836800000</Block>
|
<Block>
|
||||||
|
{(new Date(1577836800000).toLocaleString())}
|
||||||
|
</Block>
|
||||||
|
<span class="separator">{"->"} </span><Block>1577836800000</Block>
|
||||||
</ExampleLine>
|
</ExampleLine>
|
||||||
<ExampleLine>
|
<ExampleLine>
|
||||||
Now<span class="separator">:</span> <Block>{timestamp}</Block>
|
<Block>Now</Block><span class="separator">{"->"} </span><Block>{timestamp}</Block>
|
||||||
</ExampleLine>
|
</ExampleLine>
|
||||||
</ExampleSection>
|
</ExampleSection>
|
||||||
</Subject>
|
</Subject>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.separator {
|
.separator {
|
||||||
margin-right: 5px;
|
margin: 0 5px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,9 +1,60 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { onMount } from "svelte"
|
||||||
|
import { ExampleSection, ExampleLine, Block, Subject, Section } from './components'
|
||||||
|
|
||||||
|
let timestamp = Date.now();
|
||||||
|
|
||||||
|
onMount(() => {
|
||||||
|
let run = true;
|
||||||
|
|
||||||
|
const updateTimeStamp = () => {
|
||||||
|
timestamp = Date.now();
|
||||||
|
console.log(timestamp);
|
||||||
|
if (run) {
|
||||||
|
setTimeout(updateTimeStamp, 200)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
updateTimeStamp();
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
run = false;
|
||||||
|
}
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div>
|
<Subject heading="Numbers as Dates">
|
||||||
</div>
|
<Section>
|
||||||
|
A number value can be used in place of a datetime value, but it will be parsed as a <Block>UNIX time</Block> timestamp, which is the number of milliseconds since Jan 1st 1970. A more recent moment in time will be a higher number.
|
||||||
|
</Section>
|
||||||
|
|
||||||
|
<ExampleSection
|
||||||
|
heading="Examples:"
|
||||||
|
>
|
||||||
|
<ExampleLine>
|
||||||
|
<Block>946684800000</Block>
|
||||||
|
<span class="separator">{"->"}</span>
|
||||||
|
<Block>
|
||||||
|
{(new Date(946684800000).toLocaleString())}
|
||||||
|
</Block>
|
||||||
|
</ExampleLine>
|
||||||
|
<ExampleLine>
|
||||||
|
<Block>1577836800000</Block>
|
||||||
|
<span class="separator">{"->"}</span>
|
||||||
|
<Block>
|
||||||
|
{(new Date(1577836800000).toLocaleString())}
|
||||||
|
</Block>
|
||||||
|
</ExampleLine>
|
||||||
|
<ExampleLine>
|
||||||
|
<Block>{timestamp}</Block>
|
||||||
|
<span class="separator">{"->"}</span>
|
||||||
|
<Block>Now</Block>
|
||||||
|
</ExampleLine>
|
||||||
|
</ExampleSection>
|
||||||
|
</Subject>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
.separator {
|
||||||
|
margin: 0 5px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
import { ExampleSection, ExampleLine, Block, Subject, Section } from './components'
|
import { ExampleSection, ExampleLine, Block, Subject, Section } from './components'
|
||||||
|
|
||||||
let timestamp = Date.now();
|
let timestamp = Date.now();
|
||||||
|
$: iso = (new Date(timestamp)).toISOString();
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
let run = true;
|
let run = true;
|
||||||
|
|
||||||
const updateTimeStamp = () => {
|
const updateTimeStamp = () => {
|
||||||
timestamp = Date.now();
|
timestamp = Date.now();
|
||||||
console.log(timestamp);
|
|
||||||
if (run) {
|
if (run) {
|
||||||
setTimeout(updateTimeStamp, 200)
|
setTimeout(updateTimeStamp, 200)
|
||||||
}
|
}
|
||||||
|
@ -23,28 +23,79 @@
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Subject heading="Dates as Numbers">
|
<Subject heading="Strings as Dates">
|
||||||
<Section>
|
<Section>
|
||||||
A date can be used in place of a numeric value, but it will be parsed as a <Block>UNIX epoch</Block> timestamp, which is the number of milliseconds since Jan 1st 1970. A more recent moment in time will be a higher number.
|
A string value can be used in place of a datetime value, but it will be parsed as:
|
||||||
|
</Section>
|
||||||
|
<Section>
|
||||||
|
A <Block>UNIX time</Block> timestamp, which is the number of milliseconds since Jan 1st 1970. A more recent moment in time will be a higher number.
|
||||||
</Section>
|
</Section>
|
||||||
|
|
||||||
<ExampleSection
|
<ExampleSection
|
||||||
heading="Examples:"
|
heading="Examples:"
|
||||||
>
|
>
|
||||||
<ExampleLine>
|
<ExampleLine>
|
||||||
1st Jan 2000<span class="separator">: </span><Block>946684800000</Block>
|
<Block>946684800000</Block>
|
||||||
|
<span class="separator">{"->"}</span>
|
||||||
|
<Block>
|
||||||
|
{(new Date(946684800000).toLocaleString())}
|
||||||
|
</Block>
|
||||||
</ExampleLine>
|
</ExampleLine>
|
||||||
<ExampleLine>
|
<ExampleLine>
|
||||||
1st Jan 2020<span class="separator">: </span><Block>1577836800000</Block>
|
<Block>1577836800000</Block>
|
||||||
|
<span class="separator">{"->"}</span>
|
||||||
|
<Block>
|
||||||
|
{(new Date(1577836800000).toLocaleString())}
|
||||||
|
</Block>
|
||||||
</ExampleLine>
|
</ExampleLine>
|
||||||
<ExampleLine>
|
<ExampleLine>
|
||||||
Now<span class="separator">:</span> <Block>{timestamp}</Block>
|
<Block>{timestamp}</Block>
|
||||||
|
<span class="separator">{"->"}</span>
|
||||||
|
<Block>Now</Block>
|
||||||
</ExampleLine>
|
</ExampleLine>
|
||||||
</ExampleSection>
|
</ExampleSection>
|
||||||
|
<Section>
|
||||||
|
An <Block>ISO 8601</Block> datetime string. which is the number of milliseconds since Jan 1st 1970. A more recent moment in time will be a higher number.
|
||||||
|
</Section>
|
||||||
|
<div class="isoExamples">
|
||||||
|
<ExampleSection
|
||||||
|
heading="Examples:"
|
||||||
|
>
|
||||||
|
<ExampleLine>
|
||||||
|
<Block>2000-01-01T00:00:00.000Z</Block>
|
||||||
|
<span class="separator">{"->"}</span>
|
||||||
|
<Block>
|
||||||
|
{(new Date(946684800000).toLocaleString())}
|
||||||
|
</Block>
|
||||||
|
</ExampleLine>
|
||||||
|
<ExampleLine>
|
||||||
|
<Block>2000-01-01T00:00:00.000Z</Block>
|
||||||
|
<span class="separator">{"->"}</span>
|
||||||
|
<Block>
|
||||||
|
{(new Date(1577836800000).toLocaleString())}
|
||||||
|
</Block>
|
||||||
|
</ExampleLine>
|
||||||
|
<ExampleLine>
|
||||||
|
<Block>{iso}</Block>
|
||||||
|
<span class="separator">{"->"}</span>
|
||||||
|
<Block>Now</Block>
|
||||||
|
</ExampleLine>
|
||||||
|
</ExampleSection>
|
||||||
|
</div>
|
||||||
|
|
||||||
</Subject>
|
</Subject>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.separator {
|
.separator {
|
||||||
margin-right: 5px;
|
flex-shrink: 0;
|
||||||
|
margin: 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.isoExamples :global(.block) {
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.isoExamples :global(.exampleLine) {
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue