Skip to content
Snippets Groups Projects
  1. Apr 01, 2018
  2. Mar 30, 2018
    • ThibG's avatar
      Add some UI for user-defined domain blocks (#6628) · a6c129dd
      ThibG authored
      * Keep list of blocked domains
      
      Might be overkill, but I'm trying to follow the same logic as for blocked users
      
      * Add basic domain block UI
      
      * Add the domain blocks UI to Getting Started
      
      * Fix undefined URL in `fetchDomainBlocks`
      
      * Update all known users' domain_blocking relationship instead of just one's
      a6c129dd
  3. Mar 29, 2018
  4. Mar 28, 2018
    • Yuto Tokunaga's avatar
      Add double-tap zoom functionary to `ZoomableImage` (#6944) · 5021c4e9
      Yuto Tokunaga authored
      add <div.zoomable-image__margin/> to keep margin of the image on zooming
      move setting `scrollLeft` and `scrollTop` of container from callback of
      `setState` to `componentDidUpdate`
      add 'hammerjs' package for touch gesture detection
      rewrite `ZoomableImage` using 'hammerjs'
      5021c4e9
  5. Mar 27, 2018
  6. Mar 24, 2018
  7. Mar 22, 2018
  8. Mar 18, 2018
  9. Mar 13, 2018
  10. Mar 12, 2018
  11. Mar 11, 2018
  12. Mar 08, 2018
  13. Mar 07, 2018
  14. Mar 06, 2018
  15. Mar 05, 2018
    • Akihiko Odaki's avatar
      Replace onScrollToBottom with onLoadMore (#6615) · b0664a5e
      Akihiko Odaki authored
      onScrollToBottom was a function to run instead of onScrollToTop and
      onScroll when scrolling to the bottom. The behavior to prevent
      onScrollToTop was inconvenient because the viewport can be at the bottom
      and at the top at the same time if the viewport is larger than the
      container.
      
      onScrollToBottom was also called when the button to load more is clicked
      on contray to the name suggests, which led notifications and
      status_list_container components to mark the scrolled location is not at
      the top mistakenly.
      
      onLoadMore is a replacement for onScrollToBottom. It will be called
      independently from onScrollToTop and onScroll.
      b0664a5e
    • ThibG's avatar
      Add “Domain hidden” badge (#6636) · 4746feaa
      ThibG authored
      4746feaa
    • ThibG's avatar
      Make more apparent that an account is blocked or muted (fixes #6544) (#6627) · 46a9a237
      ThibG authored
      * Add button to unblock blocked accounts from their profile
      
      * Add “Blocked” badge in place of “Follows you” when the user is blocked
      
      * Add “Muted” badge (below “follows you” badge)
      46a9a237
  16. Mar 04, 2018
    • Yuto Tokunaga's avatar
      [RFC] Improved media modal (#5956) · 4e929b2d
      Yuto Tokunaga authored
      * Improved media modal
      
      ImageLoader: Impliment pinch zoom by CSS `transform: scale(X)`
      ImageLoader: Impliment panning by CSS `overflow: scroll`
      ImageLoader: Larger image
      MediaModal: Larger close button
      MediaModal: Close the modal by swiping vertically
      MediaModal: Show/hide close button and right/left navigation on tapping image
      MediaModal: Change the `pointer-event` CSS prpp to get more blank space to close the modal
      ImageLoader: Zoom/reset zoom on double tap
      MediaModal: disable vertical swiping while horizontally swiped
      ImageLoader: prevent propagating touchmove event to MediaModal
      MediaModal: Adjust size and potision of buttons
      ImageLoader: Adjust scroll potision on pinch zoom
      
      * Remove "swipe to close" and "double tap to zoom" features
      
      * remove unused prop and functions
      
      removed `onScroll` prop and `handleScroll` func in ImageLoader
      
      * separate zoom functionary to ZoomableImage component
      
      adjust styling of ImageLoader
      add styling for ZoomableImage
      
      * adjust size and potision of close button of media modal
      
      * Fix for gif video
      
      add `onClick` prop to ExtendedVideoPlayer
      specify `onClick` prop to video tag for switching nav of `MediaModal`
      add `.video-modal` class to scss to separate styling for `VideoModal`
      
      * fix styling for centering
      
      specify height of `ZoomableImage` by pixel
      clean styling for `ImageLoader`
      
      * fix lint errors
      
      * small fix
      
      * fixed designated parts
      4e929b2d
    • abcang's avatar
      Show media on report UI (#6619) · 219aac78
      abcang authored
      219aac78
    • Eugen Rochko's avatar
      Federate pinned statuses over ActivityPub (#6610) · 9110db41
      Eugen Rochko authored
      * Federate pinned statuses over ActivityPub
      
      * Display pinned toots in web UI
      
      Fix #6117
      
      * Fix migration
      
      * Fix tests
      
      * Update outbox_serializer.rb
      
      * Update remove_serializer.rb
      
      * Update add_serializer.rb
      
      * Update fetch_featured_collection_service.rb
    • Akihiko Odaki's avatar
      Finalize location on scrollable notifications when unmounting (#6614) · 45feb439
      Akihiko Odaki authored
      The top of the scrollable notifications will be invisible after unmounting.
      The Redux state should be updated accordingly in such a case so that the
      unread notification counter will be updated later.
      45feb439
  17. Mar 02, 2018
  18. Mar 01, 2018
  19. Feb 28, 2018
  20. Feb 24, 2018
    • Akihiko Odaki's avatar
      Do not use function name to track components (#6542) · 7cb49eaa
      Akihiko Odaki authored
      UglifyJS2 is allowed to mangle function names, and function names can also
      be duplicate if they are from different scopes. Therefore function names
      are not reliable as identifiers.
      
      Functions as keys for Map object is a cheaper and more reliable
      alternative.
      7cb49eaa
Loading