Skip to content

Instantly share code, notes, and snippets.

## 🚚 Installation
```sh
npm i @rhds/tokens
```
## 🎭 Usage
We use [style-dictionary](https://amzn.github.io/style-dictionary/) to transform our tokens into multiple formats and helpers.
### Stylelint Plugin
@heyMP
heyMP / countdown.js
Last active November 12, 2022 23:40
A promised based overservable pattern.
// @ts-check
/**
* Countdown timer as an observable.
*
* @param {number} timeout - Specified time to resolve the countdown specified in seconds.
* @param {?(number) => void} callback - Callback that updates on countdown change.
* @returns {{ cancel?: (string) => void, promise: Promise<void>}}
*/
export function countdown(timeout, callback = null) {
const ret = {};
@heyMP
heyMP / gist:cb70262cfbb395f6531a1e87fbd46b35
Last active November 4, 2022 12:18
Good explainer on focus-visible
Chris Coyer's Vid
https://twitter.com/chriscoyier/status/1588241068331786240
Adam A's vids
https://twitter.com/argyleink/status/1588255406375153665
https://twitter.com/ChromiumDev/status/1582786176917774337
@heyMP
heyMP / index.html
Last active November 1, 2022 20:57
RHDS / PatternflyElements Embed Example
<script type="module" id="rhds-bundle">
let e=()=>null;function t(){e("[reveal] web components ready"),e("[reveal] elements ready, revealing the body"),window.document.body.removeAttribute("unresolved")}function r(e){return e.hasOwnProperty("default")&&e.default.constructor===e.type}Array.prototype.includes||Object.defineProperty(Array.prototype,"includes",{value:function(e,t){if(null==this)throw new TypeError('"this" is null or not defined');var r=Object(this),o=r.length>>>0;if(0===o)return!1;var a=0|t,i=Math.max(a>=0?a:o-Math.abs(a),0);function n(e,t){return e===t||"number"==typeof e&&"number"==typeof t&&isNaN(e)&&isNaN(t)}for(;i<o;){if(n(r[i],e))return!0;i++}return!1}}),Object.entries||(Object.entries=function(e){for(var t=Object.keys(e),r=t.length,o=new Array(r);r--;)o[r]=[t[r],e[t[r]]];return o}),String.prototype.startsWith||Object.defineProperty(String.prototype,"startsWith",{value:function(e,t){var r=t>0?0|t:0;return this.substring(r,r+e.length)===e}}),Element.prototype.closest||(Element.prototype.clos
@heyMP
heyMP / bundle.js
Created October 19, 2022 19:50
Example Bundle File
let e=()=>null;function t(){e("[reveal] web components ready"),e("[reveal] elements ready, revealing the body"),window.document.body.removeAttribute("unresolved")}function r(e){return e.hasOwnProperty("default")&&e.default.constructor===e.type}Array.prototype.includes||Object.defineProperty(Array.prototype,"includes",{value:function(e,t){if(null==this)throw new TypeError('"this" is null or not defined');var r=Object(this),o=r.length>>>0;if(0===o)return!1;var a=0|t,i=Math.max(a>=0?a:o-Math.abs(a),0);function n(e,t){return e===t||"number"==typeof e&&"number"==typeof t&&isNaN(e)&&isNaN(t)}for(;i<o;){if(n(r[i],e))return!0;i++}return!1}}),Object.entries||(Object.entries=function(e){for(var t=Object.keys(e),r=t.length,o=new Array(r);r--;)o[r]=[t[r],e[t[r]]];return o}),String.prototype.startsWith||Object.defineProperty(String.prototype,"startsWith",{value:function(e,t){var r=t>0?0|t:0;return this.substring(r,r+e.length)===e}}),Element.prototype.closest||(Element.prototype.closest=function(e){var t=this;do{if(t.match
@heyMP
heyMP / App.js
Created September 23, 2022 21:32
React Fetch Data
import { useEffect } from "react";
const App = ({ placeholder, entry }) => {
const [categories, setCategories] = useState([]);
// useEffect(() => {
// fetch('https://google.com')
// .then(res => res.json())
// .then(res => {
// setCategories(res.data.categories)
@heyMP
heyMP / index.js
Created June 15, 2022 17:17
@btopro shared a cool way of using the Image() API to lazyload images
if (attr === "srcconverted" && this.src != "" && !this.rendering) {
this.rendering = true;
// loads the image in the background in-case of quality change
// also then supports failure events
let i = new Image();
i.onload = () => {
this.render(this.srcconverted);
};
// try loading just the normal one if this bombed
i.onerror = () => {

"@patternfly/pfe-core": major "@patternfly/pfe-sass": major "@patternfly/pfe-styles": minor "@patternfly/pfe-accordion": major "@patternfly/pfe-band": major "@patternfly/pfe-button": patch "@patternfly/pfe-card": major "@patternfly/pfe-clipboard": patch "@patternfly/pfe-collapse": minor

@heyMP
heyMP / inferedTypes.ts
Created March 8, 2022 20:26
Two ways of syncing types and variables.
// This is where we infer Typescript types from JS arrays.
export const states = [
'frame',
'color',
'pedals',
'seat',
'handles',
'wheels',
] as const;
@heyMP
heyMP / machine.js
Last active December 12, 2021 03:54
Generated by XState Viz: https://xstate.js.org/viz
const isNotMin = (context) => context.count > 0;
// Edit your machine(s) here
const counterMachine = Machine({
id: "counter",
initial: "init",
context: {
count: 0,
},
states: {