Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Shadow module #1507

Merged
merged 14 commits into from Nov 2, 2020
Merged

New Shadow module #1507

merged 14 commits into from Nov 2, 2020

Conversation

niravasher
Copy link

Fixes #806 (<=== Replace 0000 with the Issue Number)

Make sure these boxes are checked before your pull request (PR) is ready to be reviewed and merged. Thanks!

  • tests pass -- look for a green checkbox ✔️ a few minutes after opening your PR -- or run tests locally with npm test
  • code is in uniquely-named feature branch and has no merge conflicts
  • PR is descriptively titled
  • ask @publiclab/is-reviewers for help, in a comment below
  • Insert-step functionality is working correct as expected.

We're happy to help you get this ready -- don't be afraid to ask for help, and don't be discouraged if your tests fail at first!

If tests do fail, click on the red X to learn why by reading the logs.

Please be sure you've reviewed our contribution guidelines at https://publiclab.org/contributing-to-public-lab-software
Please make sure to get at least two reviews before asking for merging the PR as that would make the PR more reliable on our part
Thanks!

@niravasher
Copy link
Author

niravasher commented Jan 14, 2020

@publiclab/is-reviewers @harshkhandeparkar @jywarren @VibhorCodecianGupta please review this. Made it with the help of canvas resize module.
Screenshot from 2020-01-15 00-46-39

@codecov
Copy link

codecov bot commented Jan 14, 2020

Codecov Report

Merging #1507 into main will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##             main    #1507   +/-   ##
=======================================
  Coverage   64.28%   64.28%           
=======================================
  Files         129      129           
  Lines        2629     2629           
  Branches      421      421           
=======================================
  Hits         1690     1690           
  Misses        939      939

@harshkhandeparkar
Copy link
Member

Did you copy the code of canvas resize or do you use canvas resize module inside this module?

@niravasher
Copy link
Author

This portion is from canvas resize, the rest is similar to that of gradient module. But this cannot be a metamodule of the two because here gradient is present only till 20 pixels. @harshkhandeparkar

for (let i = 0; i < iMax && i < w; i++) {
        for (let j = 0; j < jMax && j < h; j++) {
          let x = i + 20, y = j + 20;
          pixelSetter(x, y, [pixels.get(i, j, 0), pixels.get(i, j, 1), pixels.get(i, j, 2), pixels.get(i, j, 3)], newPixels);
        }
      }

@harshkhandeparkar
Copy link
Member

Don't you think it will be better to use canvas resize inside of this module because if a change is required (to the canvas resize code), ever in the future, we won't have to change it at two places.

Also, duplicate code is not good. Also, the code will be easier to keep track of. And easier to document.

@niravasher
Copy link
Author

niravasher commented Jan 15, 2020

So you want me to create a metamodule with some extra lines of code that make up for the gradient? @harshkhandeparkar

@harshkhandeparkar
Copy link
Member

harshkhandeparkar commented Jan 15, 2020 via email

@niravasher
Copy link
Author

Ohh, looking into it.

@rishabhshuklax
Copy link
Member

Not exactly a meta module. Just import require('../CanvasResize/...'). Have a look at the code of EdgeDetect. It imports blur module in this manner.

We use InternalSequencer in edge detect.

@niravasher you can import resize and any other module in the same way

@harshkhandeparkar
Copy link
Member

We use InternalSequencer in edge detect.

We don't do that anymore. We just use the import the Module.js and use the draw function.

@codecov
Copy link

codecov bot commented Jan 16, 2020

Codecov Report

Merging #1507 into main will decrease coverage by 1.79%.
The diff coverage is 46.48%.

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #1507      +/-   ##
==========================================
- Coverage   66.67%   64.88%   -1.80%     
==========================================
  Files         130      135       +5     
  Lines        2686     2828     +142     
  Branches      433      458      +25     
==========================================
+ Hits         1791     1835      +44     
- Misses        895      993      +98     
Impacted Files Coverage Δ
src/Modules.js 100.00% <ø> (ø)
src/modules/EdgeDetect/Module.js 100.00% <ø> (ø)
src/modules/WebglDistort/Module.js 2.29% <0.00%> (ø)
src/modules/ColorHalftone/Module.js 3.63% <3.63%> (ø)
src/modules/Shadow/Module.js 44.30% <44.30%> (ø)
src/modules/Overlay/Module.js 93.18% <94.11%> (-1.69%) ⬇️
src/modules/ColorHalftone/index.js 100.00% <100.00%> (ø)
src/modules/Colorbar/Module.js 100.00% <100.00%> (ø)
src/modules/Crop/Module.js 88.88% <100.00%> (ø)
src/modules/EdgeDetect/EdgeUtils.js 86.81% <100.00%> (-0.15%) ⬇️
... and 8 more

@rishabhshuklax
Copy link
Member

We don't do that anymore. We just use the import the Module.js and use the draw function.

Yea just saw! I thought we were still using InternalSequencer 😅

@niravasher
Copy link
Author

niravasher commented Jan 16, 2020

In edge detect, all pixels are made blur by using Blur module. Here I am taking a small part of canvasResize and inside pixelManipulation adding extra lines of code for making gradients. I am not sure that can be done by importing canvasResize module. @harshkhandeparkar . In other words I am modifying core pixeSettings inside canvasResize module. Can't be done by importing the module

@harshkhandeparkar
Copy link
Member

harshkhandeparkar commented Jan 16, 2020 via email

@niravasher
Copy link
Author

Datauri it is @harshkhandeparkar

@harshkhandeparkar
Copy link
Member

Ohk. Then your code is good. 👍

@niravasher
Copy link
Author

Please merge the PR @jywarren

@rishabhshuklax
Copy link
Member

Hi! This looks good! Could you write a module test to protect this in future?

Copy link
Member

@harshkhandeparkar harshkhandeparkar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please add a test for this module? Also, does it work with GIFs?

@niravasher
Copy link
Author

Added the test. @harshkhandeparkar

@rishabhshuklax
Copy link
Member

Does this works with Gifs?

@rishabhshuklax
Copy link
Member

At the moment it just adds the shadow to the top and left can we do something to let the user choose where user wants the shadow like css box-shadow property, ref: W3Schools, that would be really cool!!!

@niravasher
Copy link
Author

At the moment it just adds the shadow to the top and left can we do something to let the user choose where user wants the shadow like css box-shadow property, ref: W3Schools, that would be really cool!!!

Yes this can be done @blurry-x-face will do this tmrw.

@niravasher
Copy link
Author

ezgif com-gif-maker
@blurry-x-face

Copy link
Member

@rishabhshuklax rishabhshuklax left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice!

@niravasher
Copy link
Author

Yes this does work with GIF's too.
image_1
@harshkhandeparkar

@niravasher
Copy link
Author

Anything else I need to do here? @harshkhandeparkar ? If not please merge this.

@niravasher
Copy link
Author

Pls merge this @jywarren @harshkhandeparkar

@gitpod-io
Copy link

gitpod-io bot commented Jul 8, 2020

Copy link
Member

@harshkhandeparkar harshkhandeparkar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Everything works but the code has a lot of repetition and is readable. Can that be changed?

src/modules/Shadow/Module.js Show resolved Hide resolved
@jywarren jywarren added this to In Progress in v3.7.0 via automation Nov 1, 2020
@jywarren jywarren requested review from a team as code owners November 2, 2020 05:09
@gitpod-io
Copy link

gitpod-io bot commented Nov 2, 2020

@gitpod-io
Copy link

gitpod-io bot commented Nov 2, 2020

@jywarren jywarren merged commit 1af80b3 into publiclab:main Nov 2, 2020
v3.7.0 automation moved this from In Progress to Done Nov 2, 2020
@jywarren
Copy link
Member

jywarren commented Nov 2, 2020

Awesome!!!! Thanks so much!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
v3.7.0
  
Done
Development

Successfully merging this pull request may close these issues.

Adding a shadow to the image
4 participants