From 02326a432239c58a6cb9ae18486826827b35a190 Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Sun, 20 May 2018 21:38:12 +0200 Subject: [PATCH] [Glitch] Use LoadingBar instead of blur to indicate that an image is loading Port 955d5d36e80259d8c10a0246d359f35f63de059d to the glitch-soc flavour --- .../flavours/glitch/features/ui/components/image_loader.js | 4 ++++ app/javascript/flavours/glitch/styles/components/index.scss | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/app/javascript/flavours/glitch/features/ui/components/image_loader.js b/app/javascript/flavours/glitch/features/ui/components/image_loader.js index c7360a7264..5e1cf75af7 100644 --- a/app/javascript/flavours/glitch/features/ui/components/image_loader.js +++ b/app/javascript/flavours/glitch/features/ui/components/image_loader.js @@ -1,6 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; +import { LoadingBar } from 'react-redux-loading-bar'; import ZoomableImage from './zoomable_image'; export default class ImageLoader extends React.PureComponent { @@ -23,6 +24,7 @@ export default class ImageLoader extends React.PureComponent { state = { loading: true, error: false, + width: null, } removers = []; @@ -122,6 +124,7 @@ export default class ImageLoader extends React.PureComponent { setCanvasRef = c => { this.canvas = c; + if (c) this.setState({ width: c.offsetWidth }); } render () { @@ -135,6 +138,7 @@ export default class ImageLoader extends React.PureComponent { return (
+ {loading ? (