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

Resize Month Events and Resize Week/Day Events on Both Ends #578

Merged
merged 50 commits into from
Jan 12, 2018
Merged

Resize Month Events and Resize Week/Day Events on Both Ends #578

merged 50 commits into from
Jan 12, 2018

Commits on May 20, 2017

  1. Configuration menu
    Copy the full SHA
    d498d63 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    06e8eb4 View commit details
    Browse the repository at this point in the history
  3. Make resize anchor draggable

    jnmandal committed May 20, 2017
    Configuration menu
    Copy the full SHA
    dbeb301 View commit details
    Browse the repository at this point in the history
  4. Make resize anchor droppable

    jnmandal committed May 20, 2017
    Configuration menu
    Copy the full SHA
    0d2208a View commit details
    Browse the repository at this point in the history
  5. Use isOver prop to resize

    jnmandal committed May 20, 2017
    Configuration menu
    Copy the full SHA
    587cd1c View commit details
    Browse the repository at this point in the history
  6. Rename and refactor

    jnmandal committed May 20, 2017
    Configuration menu
    Copy the full SHA
    ec059ae View commit details
    Browse the repository at this point in the history

Commits on May 21, 2017

  1. Configuration menu
    Copy the full SHA
    b0c2c74 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e44034b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c84f2a4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7d3c6df View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2017

  1. Update Examples and Fix Errors

    Summary: There were errors in my branch because importing the .default was not pulling in the correct default whereas when I removed it, it seemed to work fine. This might be some kind of change in React 15.6 for how default modules are imported/required.
    arecvlohe committed Oct 3, 2017
    Configuration menu
    Copy the full SHA
    7d8f922 View commit details
    Browse the repository at this point in the history
  2. Pass Down Resizable Prop to Event Cell

    Summary: For <EventCell /> to know that it can be resized I am passing down the resize prop to that component. This is because, unlike in the previous implementation, I am not passing down what would be the eventWrapper from the dragAndDrop addon. I didn't know how to pass down multiple components based on whether the calendar was resizable. So I went this route. Sorry, not sorry.
    arecvlohe committed Oct 3, 2017
    Configuration menu
    Copy the full SHA
    be1be19 View commit details
    Browse the repository at this point in the history
  3. ResizableEventLR Component

    Summary: I created <ResizableEventLR /> to handle resizing events in the month view. If <EventCell resizable /> then it will render the resizable component.
    
    I added styles so that I could see what is going on. There is a red bg. Sorry, not sorry.
    
    There is no functionality at the moment but I started building it out. There is certainly more to be worked on here.
    arecvlohe committed Oct 3, 2017
    Configuration menu
    Copy the full SHA
    f2b8241 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2017

  1. Update Resize Function and Rename Component

    Summary: Updated the resize function to be aware of the end as well as the start time. This is when there are two dnd handlers on an event at once.
    
    I renamed the component to be more semantic with its usage. Styles were correspondingly updated.
    arecvlohe committed Oct 4, 2017
    Configuration menu
    Copy the full SHA
    9bad493 View commit details
    Browse the repository at this point in the history
  2. Update Styles

    Summary: I didn't realize the conent should be aligned left.
    arecvlohe committed Oct 4, 2017
    Configuration menu
    Copy the full SHA
    e985954 View commit details
    Browse the repository at this point in the history
  3. Refactor Components

    Summary: Refactored components to look a bit more readable.
    arecvlohe committed Oct 4, 2017
    Configuration menu
    Copy the full SHA
    b37ecd1 View commit details
    Browse the repository at this point in the history
  4. Add Top Drag and Refactor Component

    Summary: Refactored <ResizableEvent /> and added the ability to resize the top component.
    arecvlohe committed Oct 4, 2017
    Configuration menu
    Copy the full SHA
    aae9bc5 View commit details
    Browse the repository at this point in the history
  5. Refactor If/Else Statement

    Summary: Refactored the if/else statement into a switch statement.
    arecvlohe committed Oct 4, 2017
    Configuration menu
    Copy the full SHA
    d16f5d9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    81b3e50 View commit details
    Browse the repository at this point in the history
  7. Add Back Changes from Master

    Summary: I deleted these chanages thinking they were old. My mistake!
    arecvlohe committed Oct 4, 2017
    Configuration menu
    Copy the full SHA
    bf9a0e6 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2017

  1. Remove Unused Code

    Summary: Remove unused code.
    arecvlohe committed Oct 5, 2017
    Configuration menu
    Copy the full SHA
    c8687ce View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2017

  1. feat: pass down event components from top-level

    summary: remove resizable prop from lower-level components so that resizable logic is encapsulated in the dnd addon.
    arecvlohe committed Nov 11, 2017
    Configuration menu
    Copy the full SHA
    ef8bbdd View commit details
    Browse the repository at this point in the history
  2. refactor: clean up naming

    arecvlohe committed Nov 11, 2017
    Configuration menu
    Copy the full SHA
    81512a4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6ae8760 View commit details
    Browse the repository at this point in the history
  4. fix: example dnd resizeEvent func

    summary: add id to events and update dnd example accordingly.
    arecvlohe committed Nov 11, 2017
    Configuration menu
    Copy the full SHA
    ccd0d4e View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2017

  1. fix: requested fixes

    arecvlohe committed Nov 19, 2017
    Configuration menu
    Copy the full SHA
    7a730ca View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2017

  1. fix: more fixes

    arecvlohe committed Dec 10, 2017
    Configuration menu
    Copy the full SHA
    78fdcd0 View commit details
    Browse the repository at this point in the history
  2. fix: update example

    arecvlohe committed Dec 10, 2017
    Configuration menu
    Copy the full SHA
    df1e88a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cfcdbbf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5703af5 View commit details
    Browse the repository at this point in the history
  5. fix: error

    arecvlohe committed Dec 10, 2017
    Configuration menu
    Copy the full SHA
    19afd21 View commit details
    Browse the repository at this point in the history
  6. fix: build errors

    arecvlohe committed Dec 10, 2017
    Configuration menu
    Copy the full SHA
    9960e07 View commit details
    Browse the repository at this point in the history
  7. fix: build errors

    arecvlohe committed Dec 10, 2017
    Configuration menu
    Copy the full SHA
    bf7ab90 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2017

  1. Configuration menu
    Copy the full SHA
    ee4c2f6 View commit details
    Browse the repository at this point in the history
  2. fix: build error

    arecvlohe committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    2d314fe View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2018

  1. Configuration menu
    Copy the full SHA
    57a5ff6 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2018

  1. Merge pull request #5 from AlexMarvelo/bugfix/all-day-header-events

    Fix: Pass 'isAllDay' prop to header event components
    arecvlohe authored Jan 6, 2018
    Configuration menu
    Copy the full SHA
    de34a59 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    66b18b6 View commit details
    Browse the repository at this point in the history
  3. Misc changes

    arecvlohe committed Jan 6, 2018
    Configuration menu
    Copy the full SHA
    167f504 View commit details
    Browse the repository at this point in the history
  4. Update example bundle

    arecvlohe committed Jan 6, 2018
    Configuration menu
    Copy the full SHA
    32dadd4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c78f2ea View commit details
    Browse the repository at this point in the history
  6. Update yarn.lock file

    arecvlohe committed Jan 6, 2018
    Configuration menu
    Copy the full SHA
    4f6a228 View commit details
    Browse the repository at this point in the history
  7. Fix App imports

    arecvlohe committed Jan 6, 2018
    Configuration menu
    Copy the full SHA
    a841bc6 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2018

  1. Configuration menu
    Copy the full SHA
    673610e View commit details
    Browse the repository at this point in the history
  2. Fix yarn.lock

    arecvlohe committed Jan 8, 2018
    Configuration menu
    Copy the full SHA
    26b094b View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2018

  1. Configuration menu
    Copy the full SHA
    f6de046 View commit details
    Browse the repository at this point in the history
  2. Update yarn.lock file

    arecvlohe committed Jan 10, 2018
    Configuration menu
    Copy the full SHA
    fc3373e View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2018

  1. Configuration menu
    Copy the full SHA
    3c3e79c View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2018

  1. fix: week/day resize events

    arecvlohe committed Jan 12, 2018
    Configuration menu
    Copy the full SHA
    9d78b00 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    90843a5 View commit details
    Browse the repository at this point in the history