maciekt07 / random-color

Progressive Web App made using Typescript and Native Web APIs. All data is stored in LocalStorage

Home Page:https://random-color-tool.netlify.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool



icon

Random Color Tool

Random color picker made using Typescript, SCSS and Native Web APIs. All data is stored in LocalStorage

preview


πŸ’‘ Features

πŸ’œ Liked Colors List

Your liked colors list stored in LocalStorage

favlist

⌘ Shortcuts

shortcuts

const shortcut = (key, id) => {
  return document.addEventListener("keyup", (event) => {
    if (event.keyCode == key) {
      document.getElementById(id).click();
    }
  });
};
const r = 82;
shortcut(r, "refresh");

πŸ”” Notifications

Daily notifications about today lucky color (with onclick)

Api: https://aztro.readthedocs.io/en/latest/

Desktop:

// Desktop
const showNotification = () => {
  const notification = new Notification(nHeader, {
    body: nBody,
    icon: luckyImage,
    badge: luckyImage,
    lang: "en-US",
    silent: true,
  });
  notification.onclick = (e) => {
    window.focus();
    location = luckyLink;
  };
};
console.log(Notification.permission);
if (Notification.permission === "granted") {
  console.log("We have permission to send you push notifications!");
  setTimeout(() => {
    showNotification();
  }, 2000);
} else if (Notification.permission !== "denied") {
  Notification.requestPermission().then((permission) => {
    // console.log(permission)
    if (permission === "granted") {
      showNotification();
    }
  });
}

Mobile:

// Mobile
Push.create(nHeader, {
  body: nBody,
  icon: luckyImage,
  tag: "lucky-color",
  // timeout: 4000,
  link: luckyLink,
  vibrate: [200, 200, 200, 200, 200],
  requireInteraction: false,
  onClick: () => {
    window.focus();
    window.open(luckyLink);
    this.close();
  },
});

Custom Notification

if the user blocks the notifications, a custom notification will be displayed

customNotification

πŸ“± Progressive Web App (PWA)

You can install this web app on your device like a normall app

install

tasks

android

πŸ”— Share Button And Changing Color From URL

url

window.addEventListener("hashchange", () => {
  urlLoad();
  clr_name();
});

share

let shareData = {
  title: "Random Color Tool By maciekt07",
  text: `Check out this cool color: ${colorInput.value}`,
  url: location,
};
try {
  await navigator.share(shareData);
  console.log("Shared color successfully");
} catch (err) {
  console.log(`Share Error: ${err}`);
  if (err != "AbortError: Share canceled") {
    // Copy link and show alert if browser does not support sharing
    copyToClipboard(location);
    document.getElementById("alertspan").innerHTML = "<i class='twa twa-lg twa-clipboard'></i> Copied URL to clipboard!";
    showalert(800, 1300);
  }
}

And many more... πŸ‘€

⚑ Performance

performance

πŸ‘¨β€πŸ’» To run this project locally

Download this repository

git clone https://github.com/maciekt07/random-color.git
cd random-color

Install node modules

npm install

Run local server using live server

πŸ’Œ Made With ❀ By maciekt07

πŸ’Έ Donate

About

Progressive Web App made using Typescript and Native Web APIs. All data is stored in LocalStorage

https://random-color-tool.netlify.app

License:MIT License


Languages

Language:TypeScript 45.5%Language:SCSS 30.5%Language:HTML 17.4%Language:JavaScript 6.6%