about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/features/account_gallery/components/media_item.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/themes/glitch/features/account_gallery/components/media_item.js')
-rw-r--r--app/javascript/themes/glitch/features/account_gallery/components/media_item.js39
1 files changed, 0 insertions, 39 deletions
diff --git a/app/javascript/themes/glitch/features/account_gallery/components/media_item.js b/app/javascript/themes/glitch/features/account_gallery/components/media_item.js
deleted file mode 100644
index 88c9156b5..000000000
--- a/app/javascript/themes/glitch/features/account_gallery/components/media_item.js
+++ /dev/null
@@ -1,39 +0,0 @@
-import React from 'react';
-import ImmutablePropTypes from 'react-immutable-proptypes';
-import ImmutablePureComponent from 'react-immutable-pure-component';
-import Permalink from 'themes/glitch/components/permalink';
-
-export default class MediaItem extends ImmutablePureComponent {
-
-  static propTypes = {
-    media: ImmutablePropTypes.map.isRequired,
-  };
-
-  render () {
-    const { media } = this.props;
-    const status = media.get('status');
-
-    let content, style;
-
-    if (media.get('type') === 'gifv') {
-      content = <span className='media-gallery__gifv__label'>GIF</span>;
-    }
-
-    if (!status.get('sensitive')) {
-      style = { backgroundImage: `url(${media.get('preview_url')})` };
-    }
-
-    return (
-      <div className='account-gallery__item'>
-        <Permalink
-          to={`/statuses/${status.get('id')}`}
-          href={status.get('url')}
-          style={style}
-        >
-          {content}
-        </Permalink>
-      </div>
-    );
-  }
-
-}