]> cat aescling's git repositories - mastodon.git/commitdiff
[Glitch] Update dependencies for Node.js (2018-12-31)
authorThibaut Girka <thib@sitedethib.com>
Wed, 2 Jan 2019 15:07:33 +0000 (16:07 +0100)
committerThibaut Girka <thib@sitedethib.com>
Wed, 2 Jan 2019 15:07:33 +0000 (16:07 +0100)
Port compatibility changes from 8f5fdab5bf681ff45a07965940bc45c9061a2f89 to glitch-soc

app/javascript/flavours/glitch/features/ui/containers/columns_area_container.js
app/javascript/flavours/glitch/features/ui/containers/loading_bar_container.js
app/javascript/flavours/glitch/features/ui/index.js
app/javascript/flavours/glitch/store/configureStore.js
app/javascript/flavours/glitch/util/api.js
app/javascript/flavours/glitch/util/link_header.js [deleted file]

index 95f95618b2ca70d13c242a27e42ff28f40d61609..4e26f3017cfbba309b502fc9dfcbf13a3f157def 100644 (file)
@@ -5,4 +5,4 @@ const mapStateToProps = state => ({
   columns: state.getIn(['settings', 'columns']),
 });
 
-export default connect(mapStateToProps, null, null, { withRef: true })(ColumnsArea);
+export default connect(mapStateToProps, null, null, { forwardRef: true })(ColumnsArea);
index 4bb90fb689f5ba64ab81b123f4ef64ba332d6e69..63e994f927c2215236d2884afa2e6a3cf7e17512 100644 (file)
@@ -1,8 +1,8 @@
 import { connect }    from 'react-redux';
 import LoadingBar from 'react-redux-loading-bar';
 
-const mapStateToProps = (state) => ({
-  loading: state.get('loadingBar'),
+const mapStateToProps = (state, ownProps) => ({
+  loading: state.get('loadingBar')[ownProps.scope || 'default'],
 });
 
 export default connect(mapStateToProps)(LoadingBar.WrappedComponent);
index 5d82f0dd7d2d114a9fb3d3e137d68d33ca237cc1..f043f767e19e440810d2bdf3fe0c897a0f47ecd4 100644 (file)
@@ -303,7 +303,7 @@ export default class UI extends React.Component {
   }
 
   setColumnsAreaRef = c => {
-    this.columnsAreaNode = c.getWrappedInstance().getWrappedInstance();
+    this.columnsAreaNode = c.getWrappedInstance();
   }
 
   handleHotkeyNew = e => {
index 1376d4cbaf566e37d957281ea390dac8f386616d..7e7472841aa74676e2ca6b6c62f556f4f2292af2 100644 (file)
@@ -11,5 +11,5 @@ export default function configureStore() {
     loadingBarMiddleware({ promiseTypeSuffixes: ['REQUEST', 'SUCCESS', 'FAIL'] }),
     errorsMiddleware(),
     soundsMiddleware()
-  ), window.devToolsExtension ? window.devToolsExtension() : f => f));
+  ), window.__REDUX_DEVTOOLS_EXTENSION__ ? window.__REDUX_DEVTOOLS_EXTENSION__() : f => f));
 };
index 0be08d7fdd8fdd8dc4805376eddbe10f5ccd543d..033d2d67b5070417194a9078ecf3fbfde96f4033 100644 (file)
@@ -1,6 +1,6 @@
 import axios from 'axios';
 import ready from './ready';
-import LinkHeader from './link_header';
+import LinkHeader from 'http-link-header';
 
 export const getLinks = response => {
   const value = response.headers.link;
diff --git a/app/javascript/flavours/glitch/util/link_header.js b/app/javascript/flavours/glitch/util/link_header.js
deleted file mode 100644 (file)
index a3e7ccf..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-import Link from 'http-link-header';
-import querystring from 'querystring';
-
-Link.parseAttrs = (link, parts) => {
-  let match = null;
-  let attr  = '';
-  let value = '';
-  let attrs = '';
-
-  let uriAttrs = /<(.*)>;\s*(.*)/gi.exec(parts);
-
-  if(uriAttrs) {
-    attrs = uriAttrs[2];
-    link  = Link.parseParams(link, uriAttrs[1]);
-  }
-
-  while(match = Link.attrPattern.exec(attrs)) { // eslint-disable-line no-cond-assign
-    attr  = match[1].toLowerCase();
-    value = match[4] || match[3] || match[2];
-
-    if( /\*$/.test(attr)) {
-      Link.setAttr(link, attr, Link.parseExtendedValue(value));
-    } else if(/%/.test(value)) {
-      Link.setAttr(link, attr, querystring.decode(value));
-    } else {
-      Link.setAttr(link, attr, value);
-    }
-  }
-
-  return link;
-};
-
-export default Link;