Skip to content

Instantly share code, notes, and snippets.

View ndugger's full-sized avatar

Nick Dugger ndugger

  • Minneapolis, MN
View GitHub Profile
import { Component, createElement } from 'cortex'
import { createStyleSheet } from 'cortex-css'
import { Theme } from '~/contexts/Theme'
/**
* Element which is intentionally 'pressable'
*/
export class Button extends Component {
@ndugger
ndugger / FeaturedPostsFragment.tsx
Last active February 7, 2021 00:15
Cortex Example Component
import { Component, createElement, getContext } from 'cortex'
import { Route } from 'cortex-router'
import { Article } from '~/models/Article'
import { Poster } from '~/views/components/Poster'
export const FeaturedPostsFragment: Component.Fn<FeaturedPostsFragment.Props> = props => {
const route = getContext(Route)
use wasm_bindgen::prelude::*;
/// Engine
#[wasm_bindgen(module = "@babylonjs/core")]
extern "C" {
pub type Engine;
#[wasm_bindgen(constructor)]
pub fn new(canvas: &web_sys::Element) -> Engine;
import { Component, Theme } from 'yuzu'
export class Button extends Component implements Button.Props {
public color = Theme.Palette.Primary
public shape = Button.Shape.Rounded
public size = Theme.Size.Medium
public variant = Button.Variant.Contained
public render(): Component.Element[] {
/*************************************************************/
// File: map.js
// Purpose: Generate the map editor HTML, and load the map
// Author: Nick Dugger
// Notes: This file is long and messy, because it does a lot.
/*************************************************************/
var editor;
function mapEditor(project, maps, map, loadTiles) {
// Lots of variables...
var mapWidth = map.width * map.grid;
import Character from 'forge/Character';
import Item from 'forge/Item';
import Quest from 'forge/Quest';
const GOBLIN_TOOTH_ID = 13;
const GOBLIN_RACE_ID = 7;
const WOODEN_SHOVEL_ID = 4;
export default new Quest('Farm Pests', workflow => {
workflow.describe(`
import { Client } from 'fusion/Client';
import { Session } from 'fusion/Session';
import { Socket } from 'fusion/Socket';
import { UI } from 'fusion/core';
import { LoginScreen } from 'this/client/components/screens/LoginScreen';
/**
* Defines the root of the player UI.
*/
@ndugger
ndugger / example.cs
Last active February 21, 2020 15:05
If I were to design a UI library in C# for the Unity engine... just a code sketch
public static class BackButton {
public static Component = new ComponentDelegate(BackButton.Render);
public struct Props {
public String Label;
public Integer Padding;
}
public static Render(BackButton.Props props) {
@ndugger
ndugger / Application.tsx
Last active November 13, 2019 15:44
react-cli & react-commander are internally built libraries, so you won't find them on NPM (yet)
import * as React from 'react';
import * as Commander from 'react-commander';
import { Logo } from 'this/components/Logo';
import { CreateAction } from 'this/components/actions/CreateAction';
import { LaunchAction } from 'this/components/actions/LaunchAction';
import { UpdateAction } from 'this/components/actions/UpdateAction';
export const Application: React.FC = () => {
return (
@ndugger
ndugger / readme.md
Last active October 29, 2019 18:13
Custom React Hook: useWorkflow

Custom React Hook: useWorkflow

Used to organize code into groups of related hooks; have your component depend on a single workflow instead of its potentially many dependent hooks.

For ordered workflows, make sure to supply an order to each workflow step. If ordered, activeStep can be used to check which step the workflow is still waiting on.