Socket
Socket
Sign inDemoInstall

ampersand-chess-view

Package Overview
Dependencies
31
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ampersand-chess-view

An ampersand-view for playing chess games.


Version published
Weekly downloads
8
Maintainers
1
Install size
2.23 MB
Created
Weekly downloads
 

Readme

Source

ampersand-chess-view

Build Status NPM

Install

npm install ampersand-chess-view

What?

ampersand-chess-view is an ampersand-view that uses ampersand-chess-state to render most of the things necessary for a playable chess board.

Demo

Clone the repo and run npm install && npm run demo.

Try opening up these three windows to see a game that is playable as white, black, and a watcher.

black, white, watcher

API

props

boardConfig (object, optional)
Chessboard (function, optional)

These are the config and the constructor for the draggable, playable chessboard. It has been tested with chessboard.js. See the options for the config on the documentation page.

This library isn't bundled with ampersand-chess-view in case you only want to use other parts of it.

role (string, ['black', 'white', 'watcher', 'analysis'], default: 'watcher')

This is either the color that you want to be the active player for the board. Here's what each does:

  • white White is the currently playable color
  • black Black is the currently playable color
  • analysis Both colors are playable
  • watcher neither color is playable. This is useful if you want to have the board be playable for two players and watchable by the rest.
computer (boolean, false)

Set to true to have a computer player initialized for the unplayed role. By default the computer will play a random move in 1 second. Extend the playComputer() method to change this behavior.

chess (object)

This object will be passed directly to ampersand-chess-state. See the documentation there for more details. You can use this to set the initial position with its pgn or fen properties.

data-hooks

Out of the box, this view provides bindings and derived properties to bind some of the helpful ampersand-chess-state values with elements in the default template. Most of the time you'ree going to want to supply your own template, but you can populate it with the following data-hooks and they'll be populated and auto-upadte with the necessary values.

[data-hook=board]

The element that will house the chessboard.js board.

[data-hook=status]

The element will be populated with the current text status. This includes the current color's turn if the game is still going or the end result of the game if it is finished. Also changes to include "you/your" in place of the color based on the user's role.

[data-hook=ascii]

This will set the innerHTML of the elment to an ascii version of the position. Works best with a <pre> element.

[data-hook=pgn]

This element will have its text set to the PGN of the game. It is based on a derived property of the view which parses the pgnArray from ampersand-chess-state.

[data-hook=fen]

This will be set to the text of the FEN of the current position.

[data-hook=first]
[data-hook=undo]
[data-hook=redo]
[data-hook=last]

These are bound with click events which will call the data-hook's method on the ampersand-chess-state object.

These will be disabled based on if there is the ability to undo/redo moves in the game. Watchers can always undo/redo but the current players cannot.

[data-hook=black-time]
[data-hook=white-time]

These will be updated with the current time left for each side. Will be displayed as mm:ss with the milliseconds visible if the time is below 60 seconds.

Tests

Run npm test for the command line tests (using phantomjs) or npm start to open a browser with the tests. Could use some more.

LICENSE

MIT

Keywords

FAQs

Last updated on 06 Aug 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc