UNPKG

ava-pwar

Version:

Web component that generates markup from manifest

128 lines (97 loc) 4.92 kB
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> <title>ava-pwar demo</title> </head> <body> <div style="width:600px;height:1400px;"> <h3>ava-pwar-simple - One possible View of a PWA Manifest</h3> <ava-pwar-simple href="https://www.polymer-project.org/"></ava-pwar-simple> <ava-pwar-simple href="https://stencilcomponents.com/"></ava-pwar-simple> <ava-pwar-simple href="https://hnpwa.com/"></ava-pwar-simple> <ava-pwar-simple href="https://mobile.twitter.com/"></ava-pwar-simple> <ava-pwar-simple href="https://www.cnet.com/"></ava-pwar-simple> <ava-pwar-simple href="https://slate.com/"></ava-pwar-simple> <ava-pwar-simple href="https://app.destinyitemmanager.com/"></ava-pwar-simple> <ava-pwar-simple href="https://www.metalroofing.com/"></ava-pwar-simple> <ava-pwar-simple href="https://www.facturaelectronicagfa.mx/"></ava-pwar-simple> <ava-pwar-simple href="https://preactjs.com/"></ava-pwar-simple> <!-- <ava-pwar-simple href="https://volcano1.net/"></ava-pwar-simple> Broken link, seems to be on their end--> <!--<ava-pwar-simple href="https://www.tailorman.com/"></ava-pwar-simple> Broken link, seems to be on their end--> <ava-pwar-simple href="https://preactjs.com/"></ava-pwar-simple> <hr> <h3>Minimal PWA Avator support -- build your own UI</h3> <label for="pwaurl">Enter PWA URL (end with slash):</label> <wired-input id="pwaurl" placeholder="Enter PWA url" value="https://www.webcomponents.org/"></wired-input> <p-d on="input" to="{input}"></p-d> <wired-button>Fetch</wired-button> <p-d on="click" if="wired-button" to="{href:target.input}"></p-d> <ava-pwar></ava-pwar> <p-d on="manifest-changed" to="xtal-json-editor{input};create-some-view-of-pwa-manifest-action{input}"></p-d> <script type="module"> import { PDQ } from 'https://unpkg.com/p-d.p-u@0.0.62/PDQ.js?module'; const $ = PDQ.$; // strips html tags PDQ.define('create-some-view-of-pwa-manifest-action', input => { if (!input) return 'Click Fetch Button to see PWA info'; return /* html */` <div class="simple"> <div class="iconLabel">Icon:</div> <div class="icon"><img src="${input.icons ? input.url + input.icons[0].src : 'https://i.4pcdn.org/s4s/1510444672885s.jpg'}"/></div> <div class="nameLabel">Name:</div> <div class="name">${$(input.name)}</div> <div class="shortNameLabel">Short Name:</div> <div class="shortName">${$(input.short_name)}</div> </div> `; }); </script> <create-some-view-of-pwa-manifest-action></create-some-view-of-pwa-manifest-action> <p-d on="value-changed" to="{innerHTML}"></p-d> <div></div> <xtal-json-editor options="{}" height="300px"></xtal-json-editor> <style> .name, .shortName { font-weight: 800; } .iconLabel, .nameLabel, .shortNameLabel, .shortName{ display: none; } .simple { padding: 16px; mix-blend-mode: difference; display: flex; flex-direction: column; align-items: center; transition: all 0.3s cubic-bezier(.25, .8, .25, 1); /* Add shadows to create the "card" effect */ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* transition: 0.3s; */ } a, a:visited, a:hover, a:active { color: inherit; } /* On mouse-over, add a deeper shadow */ .simple:hover { box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); } /* Add some padding inside the card container */ ava-pwar-simple { padding: 2px 16px; margin-top:10px; } </style> <!-- Polyfills needed for red(ge)tro browsers --> <script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script> <!-- End Edge Dependency (sigh) --> <!-- <script type="module" src="https://unpkg.com/ava-pwar@0.0.7/ava-pwar-simple.js?module"></script> --> <script type="module" src="../ava-pwar-simple.js"></script> <script type="module" src="https://unpkg.com/wired-button@0.7.0/wired-button.js?module"></script> <script type="module" src="https://unpkg.com/wired-input@0.6.6/wired-input.js?module"></script> <script type="module" src="https://unpkg.com/p-d.p-u@0.0.61/p-d-x.js?module"></script> <script type="module" src="https://unpkg.com/xtal-json-editor@0.0.29/xtal-json-editor.js"></script> </div> </body> </html>