A .env file is needed in the root with GITHUB_TOKEN='some token' to be able to start app.
Handsome is a dashboard framework written in javascript.
It is currently a work-in-progress.
Handsome is a cousin to Dashing.
You will need node and npm installed before you can do anything.
You'll also need redis installed. Read the quickstart guide to get going quickly.
Clone this repository (or fork it and then clone).
Install dependencies:
$ npm install
This will also build your js bundle and place it in the build
directory.
Start redis:
$ redis-server
Start your Handsome server:
$ npm start
Now visit http://localhost:3000 to see the default dashboard.
Hooray! You're running Handsome.
Behind the scenes, Handsome runs a simple Express app to serve widget data and repeatedly schedule jobs to generate new widget data. The data is stored in redis.
In development, the app will auto-generate and serve the client-side assets. Changing a source file will cause the relevant bundle to be regenerated on the fly.
The default dashboard is a bit boring, so let's add a new one.
Create a new JSX file under the dashboards directory:
$ touch dashboards/my_dashboard.jsx
The skeleton of a dashboard is a simple ReactDOM.render call:
// my_dashboard.jsx
ReactDOM.render(
<div>
//Widgets go here!
</div>,
document.getElementById('content')
);
Now you can populate the dashboard with widgets by simply adding the appropriate React components as children of the existing div.
Each widget needs a name
so that it knows where to call for updates. Each widget type can also have its own properties. The text widget, for example, takes a 'title' property.
Add a text widget to your dashboard:
// my_dashboard.jsx
ReactDOM.render(
<div>
<TextWidget name="reddit_headline" title="Top Reddit Headline" />
</div>,
document.getElementById('content')
);
That's it! You can now navigate to http://localhost:3000/my_dashboard and see your dashboard and widgets.
Your new dashboard is boring. It's got a widget, but there's no data going to it. You can fix that by adding a new job.
Create a new job file:
$ touch jobs/my_job.js
Jobs need to export the following:
- An
interval
, which is the period between each run of the job in milliseconds - A
promise
, which is a function that takes two arguments:fulfill
andreject
. Callfulfill
with the widget data on success orreject
with an error message if the job fails.
This function is used to create a Promise.
Here's an example to go with our new widget above that fetches the title of the top Reddit post every minute:
var request = require("request")
const url = "https://www.reddit.com/r/all.json?limit=1";
exports.interval = 60000;
exports.promise = function(fulfill, reject) {
request(url, function (error, response, body) {
if (!error && response.statusCode == 200) {
var json = JSON.parse(body);
fulfill({
reddit_headline: {text: json["data"]["children"][0]["data"]["title"]},
reddit_score: {number: json["data"]["children"][0]["data"]["score"]}
});
} else {
reject(error);
}
});
};
Create JSX and Sass files for your widget:
$ touch widgets/my_widget.jsx
$ touch widgets/my_widget.scss
The widget itself should be an ES6 class that extends the BaseWidget like so:
import React from 'react';
import BaseWidget from './widget.jsx';
import './my_widget.scss';
export default class MyWidget extends BaseWidget {
constructor(props) {
super(props);
this.state = {title: "init", text: "init"};
}
render() {
return (
<div className={"my_widget widget w" + this.props.width + " h" + this.props.height}>
<h1>{this.props.title}</h1>
<h2>{this.state.text}</h2>
</div>
);
}
}
At a bare minimum it should also implement the render
method and set some initial state in the constructor so that it can be drawn and have some default data to be shown while waiting for the server.
The Sass file should import the variables defined in styles/_variables.scss
and all styles should be scoped to the widget in question:
@import '../styles/variables';
.widget.my_widget {
background-color: $color_4;
.h2 {
font-size: 500%;
}
}
Handsome's front-end is powered by React, while Dashing's is powered by Batman.js
Handsome's back-end is a node/express app, while Dashing runs Sinatra.
Handsome uses a polling model to update dashboards, while Dashing streams data using Server Sent Events.