Upgrade to Pro — share decks privately, control downloads, hide ads and more …

What's going on with Project Fugu? at DevTalks Reimagined

What's going on with Project Fugu? at DevTalks Reimagined

The fugu, or pufferfish, is a toxic, potentially lethal delicacy that, prepared correctly, is a culinary masterpiece.

The web platform is less deadly, but still requires careful preparation when incubating new features. Project Fugu is the Chrome team's initiative to bring more power to the platform. Many of the experiments are trials or behind flags to ensure they are being prepared correctly.

In this session we'll investigate the features that are coming out of the Fugu kitchen, have a taste of some that are nearly ready and take a peek into the future to see what's in store for 2020. By the end you'll be equipped with the features to make your web application a masterpiece too.

---

Links:

All the open Origin Trials: https://developers.chrome.com/origintrials/#/trials/active

Wake Lock API:
https://web.dev/wakelock/
https://wake-lock-demo.glitch.me

Contact Picker API:
https://www.twilio.com/blog/web-contact-picker-api
https://github.com/philnash/contact-picker-twilio-client
https://web.dev/contact-picker/
https://contact-picker.glitch.me/

Native File System API:
https://web.dev/native-file-system/
https://googlechromelabs.github.io/text-editor/

Shape Detection API:
https://web.dev/shape-detection/
https://shape-detection-demo.glitch.me

Phil Nash

June 10, 2020
Tweet

More Decks by Phil Nash

Other Decks in Programming

Transcript

  1. The bad old days var requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame

    || window.webkitRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame; 01. 02. 03. 04. 05. @philnash
  2. Origin Trials • Fixed time limit • Canceled if usage

    > 0.5% • Feature may or may not ship @philnash
  3. Acquiring a lock let wakeLock; try { wakeLock = await

    navigator.wakeLock.request('screen'); } catch(e) { console.log('Could not attach WakeLock'); } 01. 02. 03. 04. 05. 06. @philnash
  4. Releasing the lock let wakeLock; try { wakeLock = await

    navigator.wakeLock.request('screen'); wakeLock.addEventListener('release', () => { console.log('WakeLock released!'); }); } catch(e) { console.log('Could not attach WakeLock'); } window.setTimeout(() => wakeLock.release(), 5000); 01. 02. 03. 04. 05. 06. 07. 08. 09. @philnash
  5. Contact Picker API async function getContact() { const props =

    ['name', 'tel', 'email']; const opts = { multiple: false }; const contacts = await navigator.contacts.select(props, opts); return contacts[0]; } 01. 02. 03. 04. 05. 06. @philnash
  6. Contact Picker API const contact = getContact() // => {

    // "email": [], // "name": ["Phil Nash"], // "tel": ["+61 455 123456", "+44 7712 345678"] // } 01. 02. 03. 04. 05. 06. @philnash
  7. Contact Picker API: Links Make phone calls with the Contact

    Picker API: https://www.twilio.com/blog/web-contact-picker-api Contact Picker API introduction: https://web.dev/contact-picker/ Contact Picker demo: https://contact-picker.glitch.me/ @philnash
  8. Native File System API const getFileHandle = async function() {

    return await window.chooseFileSystemEntries(); } 01. 02. 03. @philnash
  9. Native File System API const getFileTextContents = async function(fileHandle) {

    const file = await fileHandle.getFile(); return await file.text(); } 01. 02. 03. 04. @philnash
  10. Native File System API async function getNewFileHandle() { const opts

    = { type: 'save-file', accepts: [{ extensions: ['txt'], mimeTypes: ['text/plain'], }], }; return await window.chooseFileSystemEntries(opts); } 01. 02. 03. 04. 05. 06. 07. 08. 09. 10. @philnash
  11. Native File System API: Links Native File System API introduction:

    https://web.dev/native-file-system/ Native File System demo: https://googlechromelabs.github.io/text-editor/ @philnash
  12. Shape Detection API async function getFaces() { const faces =

    await faceDetector.detect(canvasOrImage); } 01. 02. 03. @philnash
  13. Shape Detection API: Links Shape Detection API introduction: https://web.dev/shape-detection/ Shape

    Detection API demo: https://shape-detection-demo.glitch.me/ @philnash