local-storage allows to read and write its value to the key in localStorage. The type attribute allows to place the validation constrains to the value: when the value does not match the expected type, it would not be assigned, keeping empty value instead.

0. read localStorage text value

click should set text-key slice via localStorage change.

        <custom-element>
            <template>
                <local-storage key="textKey" slice="text-key" type="text" live="live"></local-storage>
                <button onclick="localStorage.setItem('textKey','text value')">text value</button>
                <button onclick="localStorage.setItem('textKey','another value')">another value</button>
                //text-key: <code>{//text-key}</code>
            </template>
        </custom-element>
    
//text-key:

1. always override

value in localStorage[] should be always reset to ABC. click should set text-key slice via localStorage change.

        <custom-element>
            <template>
                <!-- always reset -->
                <local-storage slice="override-key" key="overrideKey" type="text" value="ABC"></local-storage>
                <button onclick="localStorage.setItem(   'overrideKey','text value')">text value</button>
                <button onclick="localStorage.removeItem('overrideKey'             )">clear key</button>
                //override-key: <code>{                 //override-key      }</code>
            </template>
        </custom-element>
    
//override-key: ABC

2. from storage with default

default overridden by button, refresh should preserve updated value

        <custom-element>
            <template>
                <!-- initially set value to DEF and update by button. On reload the value picked from localStorage -->
                <local-storage key="attr2Key" slice="attr2-key" type="text" live="live" slice-value="@value ?? 'DEF'"></local-storage>
                <button onclick="localStorage.clear()">clear localStorage</button>
                <button onclick="localStorage.removeItem('attr2Key')">clear key</button>
                <button onclick="localStorage.setItem('attr2Key','text value')">updated value</button>
                //attr2-key: <code>{//attr2-key}</code>
            </template>
        </custom-element>
    
//attr2-key: DEF

3. localStorage type

type validation happy path. Invalid for type value in storage would be treated as null

        <custom-element>
            <template>
                <local-storage key="dateKey" slice="date-key" type="date" live="live"></local-storage>
                <local-storage key="timeKey" slice="time-key" type="time" live="live"></local-storage>
                <local-storage key="localDateTimeKey" slice="local-date-time" type="datetime-local" live="live"></local-storage>
                <local-storage key="numberKey" slice="number-key" type="number" live="live"></local-storage>
                <local-storage key="jsonKey" slice="json-key" type="json" live="live"></local-storage>
                <input id="typesinput" placeholder="set value"><button onclick="
                        'dateKey,timeKey,localDateTimeKey,numberKey,jsonKey'.split(',')
                            .map( k=> localStorage.setItem(k, typesinput.value) )
                    "> set to all</button><br>
                <hr>
                date-key:
                    <button onclick="localStorage.setItem('dateKey', '2024-04-20T03:58:42.131Z')">2024-04-21T03:58:42.131Z           </button>
                    <button onclick="localStorage.setItem('dateKey', new Date(Date.now()).toISOString())">now                                </button>
                    <button onclick="localStorage.setItem('dateKey', 'ABC'  )">date ABC - invalid                 </button>
                    <code>{//date-key       }</code><br>
                time-key:
                    <button onclick="localStorage.setItem('timeKey', '13:30')">13:30                              </button>
                    <code>{//time-key       }</code><br>
                local-date-time:
                    <button onclick="localStorage.setItem('localDateTimeKey', '1977-04-01T14:00:30')">21977-04-01T14:00:30 - local       </button>
                    <code>{//local-date-time}</code><br>
                number-key:
                    <button onclick="localStorage.setItem('numberKey', '2024'       )">2024 - number                      </button>
                    <button onclick="localStorage.setItem('numberKey', '24'         )">24   - number                      </button>
                    <button onclick="localStorage.setItem('numberKey', '1.23456e+5' )">1.23456e+5                         </button>
                    <button onclick="localStorage.setItem('numberKey', '0001'       )">0001                               </button>
                    <button onclick="localStorage.setItem('numberKey', '000'        )">000                                </button>
                    <button onclick="localStorage.setItem('numberKey', '0'          )">0                                  </button>
                    <button onclick="localStorage.setItem('numberKey', 'ABC'        )">ABC - invalid, NaN                 </button>
                    <code>{//number-key     }</code> <br>
                <fieldset>
                    <legend>json-key: </legend>

                    <button onclick="localStorage.setItem('jsonKey', JSON.stringify('ABC'))">'ABC'   - string  </button>
                    <button onclick="localStorage.setItem('jsonKey', JSON.stringify(12.345))">12.345  - number  </button>
                    <button onclick="localStorage.setItem('jsonKey', JSON.stringify(window.JsonSample) )">a:1,b:'B'  -json  </button>
                    <button onclick="localStorage.setItem('jsonKey', 'ABC'  )">ABC - invalid     </button><br>
                    json-key:<code><xsl:apply-templates select="//json-key/value/@*|//json-key/text()|//json-key/value/text()" mode="json"></xsl:apply-templates></code>
                </fieldset>
                <xsl:template mode="json" match="*|@*">
                    <div>{name()} : {.}</div>
            </xsl:template>
            </template>
        </custom-element>
    


date-key:
time-key:
local-date-time:
number-key:
json-key:
json-key:

3. localStorage simplest

local-storage read only during initial and only render, does not track the changes.

Has to produce 12πŸ’


        <custom-element tag="dce-1" hidden="">
            {//slice/fruits/text()}
            <slot>πŸ€”</slot>
            <local-storage key="cherries" slice="fruits"></local-storage>
        </custom-element>
        <dce-1>πŸ’</dce-1>
    
12πŸ’

2. localStorage basket JSON

local-storage tracks changes

Click the fruits button to add into cart


        <custom-element tag="dce-2" hidden="">
            <template>
                <local-storage key="basket" slice="basket" live="" type="json"></local-storage>
                <xhtml:table xmlns:xhtml="http://www.w3.org/1999/xhtml">
                    <xhtml:tbody>
                        <for-each select="//basket/value/@*">
                            <xhtml:tr>
                                <xhtml:th> {name()} </xhtml:th>
                                <xhtml:td> {.}      </xhtml:td>
                            </xhtml:tr>
                        </for-each>
                    </xhtml:tbody>
                    <xhtml:tfoot>
                        <xhtml:tr>
                            <xhtml:td><slot>πŸ€”</slot></xhtml:td>
                            <xhtml:th> {sum(//slice/basket/value/@*)} </xhtml:th>
                        </xhtml:tr>
                    </xhtml:tfoot>
                </xhtml:table>
            </template>
        </custom-element>
        <dce-2>πŸ›’total</dce-2>
    
cherries 12
lemons 1
πŸ›’total 13
localStorage content

The demo should display count 1πŸ‹ and 12πŸ’ initially. The value in localStorage is incremented when clicked on matching button

Click to add the localStorage value
keyvalue
lemons1
basket{"cherries":12,"lemons":1}
apple
cherries12
banana
overrideKeyABC