├── .gitignore ├── LICENSE ├── README.md ├── functions ├── .gitignore ├── index.js └── package.json ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── components ├── Canvas.js ├── CropElement.js ├── CropSection.js ├── Footer.js ├── Header.js ├── InfoSectionFooter.js ├── Navbar.js ├── ResizeSection.js ├── RotateSection.js ├── TextInput.js ├── actions │ └── actionTypes.js ├── canvas.css ├── constants │ └── constants.js ├── cropElement.css ├── cropSection.css ├── footer.css ├── header.css ├── infoSectionFooter.css ├── modals │ ├── WelcomeScreen.js │ └── welcomeScreen.css ├── resizeSection.css ├── rotationSection.css ├── sidebar.css └── sliders │ ├── BlurSlider.js │ ├── BrightnessSlider.js │ ├── ContrastSlider.js │ ├── ReturnDefaultButton.js │ ├── SaturateSlider.js │ ├── ScaleSlider.js │ └── scaleSlider.css ├── images └── UI.png ├── index.js └── reducers └── rootReducer.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/README.md -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/functions/.gitignore -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/functions/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/Canvas.js -------------------------------------------------------------------------------- /src/components/CropElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/CropElement.js -------------------------------------------------------------------------------- /src/components/CropSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/CropSection.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/InfoSectionFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/InfoSectionFooter.js -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/Navbar.js -------------------------------------------------------------------------------- /src/components/ResizeSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/ResizeSection.js -------------------------------------------------------------------------------- /src/components/RotateSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/RotateSection.js -------------------------------------------------------------------------------- /src/components/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/TextInput.js -------------------------------------------------------------------------------- /src/components/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/actions/actionTypes.js -------------------------------------------------------------------------------- /src/components/canvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/canvas.css -------------------------------------------------------------------------------- /src/components/constants/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/constants/constants.js -------------------------------------------------------------------------------- /src/components/cropElement.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/cropElement.css -------------------------------------------------------------------------------- /src/components/cropSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/cropSection.css -------------------------------------------------------------------------------- /src/components/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/footer.css -------------------------------------------------------------------------------- /src/components/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/header.css -------------------------------------------------------------------------------- /src/components/infoSectionFooter.css: -------------------------------------------------------------------------------- 1 | .info-wrapper { 2 | display: flex; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/modals/WelcomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/modals/WelcomeScreen.js -------------------------------------------------------------------------------- /src/components/modals/welcomeScreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/modals/welcomeScreen.css -------------------------------------------------------------------------------- /src/components/resizeSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/resizeSection.css -------------------------------------------------------------------------------- /src/components/rotationSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/rotationSection.css -------------------------------------------------------------------------------- /src/components/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/sidebar.css -------------------------------------------------------------------------------- /src/components/sliders/BlurSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/sliders/BlurSlider.js -------------------------------------------------------------------------------- /src/components/sliders/BrightnessSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/sliders/BrightnessSlider.js -------------------------------------------------------------------------------- /src/components/sliders/ContrastSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/sliders/ContrastSlider.js -------------------------------------------------------------------------------- /src/components/sliders/ReturnDefaultButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/sliders/ReturnDefaultButton.js -------------------------------------------------------------------------------- /src/components/sliders/SaturateSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/sliders/SaturateSlider.js -------------------------------------------------------------------------------- /src/components/sliders/ScaleSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/sliders/ScaleSlider.js -------------------------------------------------------------------------------- /src/components/sliders/scaleSlider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/components/sliders/scaleSlider.css -------------------------------------------------------------------------------- /src/images/UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/images/UI.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnurErtugral/Photo-Editor/HEAD/src/reducers/rootReducer.js --------------------------------------------------------------------------------