Socket
Socket
Sign inDemoInstall

@codersrank/summary

Package Overview
Dependencies
Maintainers
5
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codersrank/summary

Codersrank Summary Widget


Version published
Weekly downloads
391
decreased by-16.63%
Maintainers
5
Weekly downloads
 
Created
Source

Codersrank Summary Widget

  • Install from NPM
  • Install from CDN
  • Usage
  • Widget Attributes
  • Styling
  • Use As Image
  • Contribution
  • Licence

Codersrank Summary Widget is a web component that allows you integrate widget with your CodersRank profile summary to your personal website:

Install from NPM

Widget script available through NPM:

npm i @codersrank/summary --save

After installation you need to import and register web component:

import CodersrankSummary from '@codersrank/summary';

// register web component as <codersrank-summary> element
window.customElements.define('codersrank-summary', CodersrankSummary);

Install from CDN

Widget can also be downloaded or linked directly from CDN:

<!-- replace x.x.x with actual version -->
<script src="https://unpkg.com/@codersrank/summary@x.x.x/codersrank-summary.min.js"></script>

In this case it is not required to register web component, it is already registered as <codersrank-summary> element.

Usage

As it is a web component the usage is pretty simple, just add widget HTML tag with your CodersRank username

<codersrank-summary username="YOUR_USERNAME"></codersrank-summary>

Widget Attributes

Widget supports following properties as HTML element attributes:

NameTypeDefaultDescription
usernamestringYour CodersRank username
layoutstring'auto'Defines the layout of the widget badges. Can be auto, vertical or horizontal. If auto (by default) it will use horizontal layout if it has enough space.
badgesnumber3Number (from 0 to 3) of highlighted badges to display.
show-avatarbooleantrueDefines whether to show avatar or not
show-headerbooleantrueDefines whether to show widget header or not
min-widthnumber300Widget minimum width for auto layout to change widget layout from horizontal to vertical
badge-min-widthnumber100Badge minimal width to change badge inner layout from horizontal to vertical layout
brandingbooleantrueDisplays "Powered by CodersRank" link

For example:

<codersrank-summary username="YOUR_USERNAME" layout="vertical"></codersrank-summary>

Styling

It is possible to customize widget colors with CSS Custom Properties (CSS Variables) by setting them directly on the widget element with style attribute or in CSS.

There are following CSS Custom Properties are available:

PropertyValue
--bg-color#edf1f3
--bordernone
--border-radius4px
--header-padding8px
--header-bg-color#72a0a8
--header-text-color#fff
--avatar-size80px
--name-font-sizeinherit
--name-font-weightbold
--rank-font-sizeinherit
--preloader-color#72a0a8
--badges-padding8px
--badge-border-radius4px
--badge-bg-color#fff
--badge-box-shadow0px 1px 2px rgba(23, 36, 50, 0.3)
--badge-bordernone
--badge-margin8px
--badge-padding4px
--badge-text-color#000
--badge-rank-font-size0.85em
--badge-rank-font-weightbold
--badge-icon-size24px
--badge-technology-font-weight600
--badge-technology-font-sizeinherit
--badge-technology-font-weight600
--badge-technology-font-size12px
--badge-location-font-size0.85em
--badge-location-font-weightnormal
--branding-text-colorinherit

For example, to change header background color to white and name font-size to 20px, add this to CSS stylesheet:

codersrank-summary {
  --header-bg-color: #fff;
  --name-font-size: 20px;
}

Use As Image

It is also possible to insert Summary widget as an image. It is useful in places where you can't integrate web component, or for example on your GitHub profile README.md page.

Image URL is the following:

https://cr-ss-service.azurewebsites.net/api/ScreenShot?widget=summary&username=YOUR_USERNAME

It accepts all widget attributes as query string parameters, plus one extra parameter:

NameTypeDefaultDescription
widthnumber480Width of widget element (generated image). Note that generated image has @2x pixel density, so the PNG image will be actually generated in @2x size from the one specified here
stylestringstyle attribute value (here you can specify all CSS variables)

For example:

<img
  src="https://cr-ss-service.azurewebsites.net/api/ScreenShot?widget=summary&username=YOUR_USERNAME&badges=2&show-avatar=false&style=--header-bg-color:%23000;--border-radius:10px"
/>

Note that you need to URL Encode some of the characters, for example # should be %23 and #ff0 color should be specified as %23ff0 in query.

Contribution

Yes please! See the contributing guidelines for details.

Licence

This project is licensed under the terms of the MIT license.

Keywords

FAQs

Package last updated on 25 Aug 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc