• Stars
    star
    199
  • Rank 195,162 (Top 4 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created over 2 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Server side rendering of Github contribution wall API

English | 简体中文

A Nest.js API to render GitHub user's contributions to chart

Just pass GitHub username in route param, you will get the contribution wall render by svg. Support custom output format, color, quality, size and so on


Real-time rendering example:

Playground

Now you can config and preview your contribution wall in the Playground

Principle of 3dbar implementation

Run locally

Configuration

${host}/_/${username}?${queryString}
  • username: Github username
  • queryString

Common parameters:

param type desc default
theme enum Preset themes, avaiable values: random(use random theme) or Theme Enums green
chart enum Chart type, See Charts calendar
format enum Output formats:
  • html : return a html page
  • svg : return an svg file
  • xml : return an svg as xml
  • png : return a png file(transparent background)
  • jpeg : return a jpg file(white background)
html
quality number Image quality, supports numbers from 0.1 to 10. Only works when format is png or jpeg 1
widget_size enum Automatically calculate the number of weeks and size needed for the ios widget by specifying this property, avaiable values:
  • small
  • medium
  • large
medium
weeks number Force specifying how many weeks to render, allow numbers from 1 to 50. This will override weeks calculated by widget_size undefined
colors string | string[] Hex colors value (without # prefix) join with ,.
Or multiple colors.
e.g.
  • colors=f00,0f0,00f,0ff,f0f,ff0
  • colors=f00&colors=0f0
This will override theme property
undefined
dark boolean Enable dark-mode, See DarkMode false

3DBar chart parameters:

param type desc default
gap number Gap size between cubes, allowed numbers from 0 to 20 1.2
scale number Adjust vertical top view, allowed numbers not less than 1 2
light number Adjust light intensity, allowed numbers from 1 to 60 10
gradient boolean Use gradient mode to cube false
flatten number Enable flatten-mode, 2 styles are avaiable:
1: flatten all blocks
2: ignore empty blocks
See flatten-mode examples
0
animation enum Enable animation, See 3dbar Animation undefined

3dbar Animation

Enable animation by passing animation property, available values:

  • fall (apper only)

    chart=3dbar&weeks=20&flatten=1&animation=fall
    
  • raise (apper only)

    chart=3dbar&weeks=20&flatten=1&animation=raise
    
  • wave (loop)

    chart=3dbar&weeks=20&flatten=1&animation=wave
    

Custome animation details: (pass as url query parameters)

fall | raise
  • animation_duration <Number> Animation duration in seconds.
  • animation_delay <Number> Animation delay in seconds.
wave
  • animation_amplitude <Number>
    The extent of the square's movement in pixel(px).
  • animation_frequency <Number>
    Frequency of movement of the square, between [0.01, 0.5],
  • animation_wave_center <Number>_<Number>
    The center of the wave, pass coordinate points x, y as ${x}_${y}(Join x, y with _) for example 0_0.

DarkMode

In fact, the display of the chart is determined by the theme, which is overridden by the color property. Enabling dark mode here affects the display of the built-in theme and the background color when outputting jpeg or html, while the background is transparent in all other output formats. For more details, see Themes

Charts

  • calendar

    • use: chart=calendar

    • e.g.

      https://ssr-contributions-svg.vercel.app/_/CatsJuice?chart=calendar&format=svg
      
  • 3dbar

    • use: chart=3dbar

    • e.g.

      https://ssr-contributions-svg.vercel.app/_/CatsJuice?chart=3dbar&format=svg
      
      3DBar

Themes

All avaiable themes(live update):

  • light

  • dark

Examples

pin to notion

notion

Use as ios widget with Scritable

code example:

let [chart, widgetSize, theme, weeks] = (args.widgetParameter || "")
  .split(",")
  .map((v) => v.trim());
chart = chart || "calendar";
widgetSize = widgetSize || "medium";
theme = theme || "green";
const darkMode = Device.isUsingDarkAppearance();
let url = `https://ssr-contributions-svg.vercel.app/_/CatsJuice?format=jpeg&quality=2&theme=${theme}&widget_size=${widgetSize}&chart=${chart}&dark=${darkMode}`;

if (weeks) url += `&weeks=${weeks}`;

let w = await createWidget();
Script.setWidget(w);

async function createWidget() {
  let w = new ListWidget();
  let random = (Math.random() * 100000000).toFixed(0);
  let data = await new Request(url + "&random=" + random).load();
  let image = Image.fromData(data);
  w.backgroundImage = image;
  return w;
}

Add scritable widget to home screen, and select script in widget configuration.

Note: The above script relies on the input of the parameter parameter, filling in chart, widgetSize, theme, weeks in order using the , division. here are some examples:

  • 3dbar,large,,30

    chart=3dbar&widgetSize=large&weeks=30
    
  • 3dbar,,yellow_wine,20

    chart=3dbar&theme=yellow_wine&weeks=20
    
  • ,,blue

    theme=blue
    
  • ,small,purple

    widgetSize=small&theme=purple
    

iPhone 11 Pro

flatten-mode

  • flatten=1&format=svg

  • flatten=2&format=svg

More Repositories

1

ipad-cursor

● Mouse effect of iPad in browser that can be used in any framework
TypeScript
402
star
2

svg-drawing

A canvas for easy sketching and replay, exportable in SVG format.
Vue
176
star
3

dockbar

A macOS-like dock component made with WebComponents
Vue
144
star
4

quantitative-investment-learning

使用Python进行量化投资的学习报告
86
star
5

quant-on-volume

基于成交量的股票数据分析系统
JavaScript
49
star
6

me

Personal profile
Vue
16
star
7

awesome-effects

online effects
SCSS
13
star
8

css-paper-curve

TypeScript
11
star
9

MACD-Analyze

Python 对 MACD 的计算以及相关投资策略的分析
Python
9
star
10

calliplat-wx-miniPrpgram

社区类微信小程序全栈
PHP
8
star
11

stock-price-num-score

根据《胡立阳股票投资100招》给股票打分的盈利率
Python
5
star
12

ui-collection

Collection of UI/UX,Practice With CSS(3) / Less, Basing On Vue.js
Vue
5
star
13

clock-clock-white

Awesome clock
Vue
5
star
14

noise-maker

Simple svg noise generator
Vue
5
star
15

electron-hero-window-demo

window expansion animation hack with electron
TypeScript
5
star
16

line-of-ma

'老太太炒股法', 一根均线打天下, 利用Python根据均线分析这一策略的可行性
Python
4
star
17

stock-cci

计算股票的cci, 判断cci指标的可行性
Python
2
star
18

CatsJuice

2
star
19

netease-stock-day-line

Python爬虫抓取网易财经日线
Python
2
star
20

eastmoney-yaowen-keyword

Python抓取东方财富要闻的热点词
Python
2
star
21

stock-volume-analyze

Python 量化投资之对分时数据中换手量的分析
Python
1
star
22

python-quantitative-investment

基于python的量化投资学习
Python
1
star
23

low-switch-hand-rate

Python对低换手率股票在脱离低换手率后股价的分析
Python
1
star
24

utils

TypeScript
1
star
25

optional-clip

A web-component to implement css overflow:hidden in specific side
TypeScript
1
star