npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@naari3/react-crossword-ja

v4.5.0

Published

A flexible, responsive, and easy-to-use crossword component for React apps

Downloads

6

Readme

react-crossword: A flexible, responsive, and easy-to-use crossword component for React apps.

npm version build status code coverage known vulnerabilities dependencies license more badges commitizen friendly semantic-release contributors

Please see the complete docs for in-depth details.


Install

npm install --save @naari3/react-crossword-ja
  # or #
yarn add @naari3/react-crossword-ja

Usage

import React from 'react';

import Crossword from '@naari3/react-crossword-ja';

const data = {
  /* ... puzzle data (see below) ... */
};

export default function MyPage() {
  return <Crossword data={data} />;
}

Clue/data format

To make crosswords as easy to create as possible, with the least amount of extraneous and boilerplate typing, the clue/answer format is structured as a set of nested objects:

{
  across: {
    1: {
      clue: 'one plus one',
      answer: 'TWO',
      row: 0,
      col: 0,
    },
  },
  down: {
    2: {
      clue: 'three minus two',
      answer: 'ONE',
      row: 0,
      col: 2,
    },
  },
}

At the top level, the across and down properties group together the clues/answers for their respective directions. Each of those objects is a map, keyed by the answer number rather than an array. (This is done so that the creator has control over the numbering/labelling of the clues/answers.) Each item contains a clue and answer property, as well as row and col for the starting position.

The Crossword component calculates the needed grid size from the data itself, so you don't need to pass an overall size to the component.

Styling

One other major difference (and advantage) to this crossword component is that it is very "stylable"... as many of the styling properties as possible are exposed so that you can create any look you want for the crossword. The Crossword component makes use of styled-components' ThemeProvider and offers the following properties to control colors and layout:

| theme property | default | description | | --------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | columnBreakpoint | '768px' | browser-width at which the clues go from showing beneath the grid to showing beside the grid. | | gridBackground | 'rgb(0,0,0)' | overall background color (fill) for the crossword grid. Can be 'transparent' to show through a page background image. | | cellBackground | 'rgb(255,255,255)' | background for an answer cell | | cellBorder | 'rgb(0,0,0)' | border for an answer cell | | textColor | 'rgb(0,0,0)' | color for answer text (entered by the player) | | numberColor | 'rgba(0,0,0, 0.25)' | color for the across/down numbers in the grid | | focusBackground | 'rgb(255,255,0)' | background color for the cell with focus, the one that the player is typing into | | highlightBackground | 'rgb(255,255,204)' | background color for the cells in the answer the player is working on, helps indicate in which direction focus will be moving; also used as a background on the active clue |

Note that these values can be provided either via ThemeProvider, or directly as a theme property on the Crossword component itself. (And further, if you're not using styled-components, but want to make use of ThemeProvider, this library re-exports ThemeProvider so you can pull it from here.)

Also, several class names are applied to elements in the crossword, in case you want to apply styles that way:

| element | class name | | -------------------------------------------------------------------- | ----------- | | entire crossword component; encompassing grid and clues | crossword | | entire crossword is correct (on same element as crossword) | correct | | answer grid | grid | | all of the clues | clues | | header and clues for one direction | direction | | direction header ('across' or 'down') | header | | an individual clue | clue | | an individual clue with a correct answer (on same element as clue) | correct |

(No class names are currently applied within the grid, as the SVG layout is very layout-sensitive.)

Player progress events

In addition to providing properties for styling, there are some properties to help your application "understand" the player's progress:

| property | description | | -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | onCorrect | callback function that fires when a player answers a clue correctly; called with (direction, number, answer) arguments, where direction is 'across' or 'down', number is the clue number as text (like '1'), and answer is the answer itself | | onLoadedCorrect | callback function that’s called when a crossword is loaded, to batch up correct answers loaded from storage; passed an array of the same values that onCorrect would recieve | | onCrosswordCorrect | callback function that’s called when the overall crossword is completely correct (or not) | | onCellChange | callback function called when a cell changes (e.g. when the user types a letter); passed the row and column and the character typed | | onClueSelected | callback function called when a clue is selected; passed the direction and the “number” |

Imperative methods

The following imperative methods can be called on a "ref" handle to the component:

| method name | parameters | description | | ---------------------- | ---------- | --------------------------------------------------------------------------------------------------- | | focus() | (none) | Sets focus to the crossword component. | | reset() | (none) | Resets the entire crossword; clearing all answers in the grid and also any persisted data. | | fillAllAnswers() | (none) | Fills all the answers in the grid and calls the onLoadedCorrect callback with every answer. | | isCrosswordCorrect() | (none) | Returns whether the crossword is entirely correct or not. |

Background

Initially written as a replacement for @guardian/react-crossword, to make custom styling and puzzle-definition easier.

There are several things about the Crossword component from @guardian/react-crossword that are less than ideal, in my opinion:

  • the styles/formatting are baked in
  • semi-unrelated functionality like the "anagram helper" is baked in
  • the data format for clues/answers is horrendous

This is an attempt to create a less-opinionated component that's much easier to drop in to an arbitrary React page.

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!