21 lines
657 B
TypeScript
21 lines
657 B
TypeScript
import { GiphySDK } from '@giphy/react-native-sdk';
|
|
|
|
import StateListenerRegistry from '../base/redux/StateListenerRegistry';
|
|
|
|
import { isGifEnabled } from './function.any';
|
|
|
|
/**
|
|
* Listens for changes in the number of participants to calculate the dimensions of the tile view grid and the tiles.
|
|
*/
|
|
StateListenerRegistry.register(
|
|
/* selector */ state => state['features/base/config']?.giphy,
|
|
/* listener */ (_, store) => {
|
|
const state = store.getState();
|
|
|
|
if (isGifEnabled(state)) {
|
|
GiphySDK.configure({ apiKey: state['features/base/config'].giphy?.sdkKey ?? '' });
|
|
}
|
|
}, {
|
|
deepEquals: true
|
|
});
|