Skip to content

React App to manage dictionaries (a key/value mapping or sometimes also called a synonym table). Usually, dictionaries are used to clean or normalise values in dataset columns.

Notifications You must be signed in to change notification settings

asherccohen/dictionary-react-app

Repository files navigation

React Dictionary management App

Built with React and deployed on Heroku, through Circle CI.

Build Setup

npm start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

npm test

Launches the test runner in the interactive watch mode.
See the section about running tests for more information.

npm run build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

Assignment

Before start, you have to install production dependencies with npm: npm install.

E-commerce companies like online stores and market places need datasets to be standardised, so that they correspond to filters and get properly picked up by the search engine. Each company has their own set of applicable values and requires product data to be in a certain language.

In order to transform the dataset into the desired format, a dictionary is needed.

Web Engineering Frontend Onsite Day Task Introduction

The Domain of a dictionary represents the original value to transform, the Range of a dictionary represents the desired value. If we apply this dictionary to the Color column of the Original Dataset and replace the values by the corresponding Range value in the dictionary, we get the Desired Dataset.

A dictionary is said to be consistent, if none of the following problems occur:

Duplicate Domains/Ranges: Two rows in the dictionary map to the same value, simply resulting in duplicate content.

Forks or Duplicate Domains with different Ranges: Two rows in the dictionary map to different values, resulting in an ambiguous transformation.

Cycles: Two or more rows in a dictionary result in cycles, resulting in a never-ending transformation.

Chains: A chain structure in the dictionary (a value in Range column also appears in Domain column of another entry), resulting in inconsistent transformation.

When using dictionaries for data normalisation or other purposes, all these inconsistencies must not occur, otherwise the result of the transformation is ambiguous or not defined.

Requirements

With this introduction and slightly theoretical background in mind, you are now going to create a dictionary management application.

The application must satisfy the following requirements:

  • Creating and deleting dictionaries
  • Showing available dictionaries in an overview
  • Editing dictionaries (adding, updating and removing rows)
  • Validating the entire dictionary regarding consistency (see above)
  • Validations should be shown as some kind of problem markers next to the offending part of the dictionary.
  • Problem markers have different severities, e.g. a Duplicate Domains/Ranges problem is less severe than a Cycle (in which case you cannot go on processing such a dictionary).

License

This repo is available under the MIT license.

Contact

Copyright (C) 2016 Snake

@asherccohen @asherccohen

About

React App to manage dictionaries (a key/value mapping or sometimes also called a synonym table). Usually, dictionaries are used to clean or normalise values in dataset columns.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published