This is a Frontend UI intended for use with a machine learning image recognition/classification backend. The goal is to allow users to upload images to be classified/tagged (with adjustable sensitivity settings) and to display the results in an interactive environment where corrections can be made to tags and notes can be added.
There is currently no publically available backend for use with this App. This github repo only contains the frontend code.
- Implement image upload/render capabilities.
- Implement Konva and shape-drawing on canvas.
- Implement UI for classified image boxes within the render menu.
- Implement multiple file uploading capability and drag/drop functionality.
- Implement canvas features: click-and-drag, zoom.
- Implement console with relevant logging of request statuses and classification information.
- Migrate React state handling to Redux and add tests for Redux reducers.
- Create mock Express server for testing requests.
- Create boilerplate machine learning backend for users to train and use for classifying.
-
See Initial Machine Setup below if you don't have node or git installed, or if you're experiencing issues during Installation
-
Clone the project
git clone https://github.com/Dynatos/Canvas-Photo-Viewer.git
. -
Install node dependencies (make sure you're inside the folder with the
'package.json'
file).npm install
-
Run the app
npm start -s
This will run the automated build process, start up a webserver, and open the application in your default browser. When doing development with this kit, this command will continue watching all your files. Every time you hit save the code is rebuilt, linting runs, and tests run automatically.
Note: The -s flag is optional. It enables silent mode which suppresses unnecessary messages during the build.
-
Install Node 4.0.0 or greater
(5.0 or greater is recommended for optimal build performance) Need to run multiple versions of Node? Use nvm.
-
Install Git.
-
Disable safe write in your editor to assure hot reloading works properly.
-
Complete the steps below for your operating system:
- Install watchman via
brew install watchman
or fswatch viabrew install fswatch
to avoid this issue which occurs if your macOS has no appropriate file watching service installed.
-
Run this to increase the limit on the number of files Linux will watch. Here's why.
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
.
-
Install Python 2.7. Some node modules may rely on node-gyp, which requires Python on Windows.
-
Install C++ Compiler. Browser-sync requires a C++ compiler on Windows.
Visual Studio Express comes bundled with a free C++ compiler.
If you already have Visual Studio installed: Open Visual Studio and go to File -> New -> Project -> Visual C++ -> Install Visual C++ Tools for Windows Desktop. The C++ compiler is used to compile browser-sync (and perhaps other Node modules).
- Install watchman via
-
Make sure you ran all steps in Installation including the initial machine setup.
-
Run
npm install
- If you forget to do this, you'll see this:babel-node: command not found
. -
Install the latest version of Node. Or install Node 5.12.0 if you're having issues on Windows. Node 6 has issues on some Windows machines.
-
Make sure files with names that begin with a dot (.editorconfig, .gitignore, .npmrc) are copied to the project directory root. This is easy to overlook if you copy this repository manually.
-
Don't run the project from a symbolic link. It may cause issues with file watches.
-
Delete any .eslintrc that you're storing in your user directory. Also, disable any ESLint plugin / custom rules that you've enabled within your editor. These will conflict with the ESLint rules defined in this project.
-
Make sure you don't have NODE_ENV set to production on your machine. If you do then the development dependencies won't be installed. Here's how to check.
-
Install watchman with
brew install watchman
if you are having the following error after an initialnpm start -s
:2017-09-05 00:44 node[68587] (FSEvents.framework) FSEventStreamStart: register_with_server: ERROR: f2d_register_rpc() => (null) (-22) 2017-09-05 00:44 node[68587] (FSEvents.framework) FSEventStreamStart: register_with_server: ERROR: f2d_register_rpc() => (null) (-22) events.js:160 throw er; // Unhandled 'error' event ^ Error: Error watching file for changes: EMFILE at exports._errnoException (util.js:1022:11) at FSEvent.FSWatcher._handle.onchange (fs.js:1406:11)
-
Tip: Things to check if you get an
npm run lint
error or build error:-
If ESW found an error or warning in your project (e.g. console statement or a missing semi-colon), the lint thread will exit with
Exit status 1
. To fix:- Change the
npm run lint
script to"esw webpack.config.* src tools; exit 0"
- Change the
npm run lint:watch
script to"esw webpack.config.* src tools --watch; exit 0"
Note: Adding
exit 0
will allow the npm scripts to ignore the status 1 and allow ESW to print all warnings and errors. - Change the
-
Ensure the
eslint
/esw
globally installed version matches the version used in the project. This will ensure theesw
keyword is resolved.
-
-
Rebuild node-sass with
npm rebuild node-sass
if you are having and error likeNode Sass does not yet support your current environment on macOS XXX
after an initialnpm start -s
.
This app is built on top of the React slingshot boilerplate (https://github.com/coryhouse/react-slingshot) and includes the following technologies:
Tech | Description | Learn More |
---|---|---|
React | Fast, composable client-side components. | Pluralsight Course |
Redux | Enforces unidirectional data flows and immutable, hot reloadable store. Supports time-travel debugging. Lean alternative to Facebook's Flux. | Getting Started with Redux, Building React Applications with Idiomatic Redux, Pluralsight Course |
React Router | A complete routing library for React | Pluralsight Course |
Babel | Compiles ES6 to ES5. Enjoy the new version of JavaScript today. | ES6 REPL, ES6 vs ES5, ES6 Katas, Pluralsight course |
Webpack | Bundles npm packages and our JS into a single file. Includes hot reloading via react-transform-hmr. | Quick Webpack How-to Pluralsight Course |
Browsersync | Lightweight development HTTP server that supports synchronized testing and debugging on multiple devices. | Intro vid |
Jest | Automated tests with built-in expect assertions and Enzyme for DOM testing without a browser using Node. | Pluralsight Course |
TrackJS | JavaScript error tracking. | Free trial |
ESLint | Lint JS. Reports syntax and style issues. Using eslint-plugin-react for additional React specific linting rules. | |
SASS | Compiled CSS styles with variables, functions, and more. | Pluralsight Course |
PostCSS | Transform styles with JS plugins. Used to autoprefix CSS | |
Editor Config | Enforce consistent editor settings (spaces vs tabs, etc). | IDE Plugins |
npm Scripts | Glues all this together in a handy automated build. | Pluralsight course, Why not Gulp? |