mirror of https://github.com/vector-im/riot-web
Move stickerpicker content out of state in to generator function.
parent
d83b6f1cf8
commit
49bea1a35b
|
@ -36,29 +36,17 @@ export default class Stickerpicker extends React.Component {
|
||||||
this._launchManageIntegrations = this._launchManageIntegrations.bind(this);
|
this._launchManageIntegrations = this._launchManageIntegrations.bind(this);
|
||||||
this._removeStickerpickerWidgets = this._removeStickerpickerWidgets.bind(this);
|
this._removeStickerpickerWidgets = this._removeStickerpickerWidgets.bind(this);
|
||||||
this._onWidgetAction = this._onWidgetAction.bind(this);
|
this._onWidgetAction = this._onWidgetAction.bind(this);
|
||||||
this.onFinished = this.onFinished.bind(this);
|
this._onFinished = this._onFinished.bind(this);
|
||||||
|
|
||||||
this.popoverWidth = 300;
|
this.popoverWidth = 300;
|
||||||
this.popoverHeight = 300;
|
this.popoverHeight = 300;
|
||||||
|
|
||||||
this.state = {
|
this.state = {
|
||||||
stickersContent: this.defaultStickersContent(),
|
|
||||||
showStickers: false,
|
showStickers: false,
|
||||||
imError: null,
|
imError: null,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
defaultStickersContent() {
|
|
||||||
return (
|
|
||||||
<AccessibleButton onClick={this._launchManageIntegrations}
|
|
||||||
className='mx_Stickers_contentPlaceholder'>
|
|
||||||
<p>{ _t("You don't currently have any stickerpacks enabled") }</p>
|
|
||||||
<p className='mx_Stickers_addLink'>Add some now</p>
|
|
||||||
<img src='img/stickerpack-placeholder.png' alt={_t('Add a stickerpack')} />
|
|
||||||
</AccessibleButton>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
_removeStickerpickerWidgets() {
|
_removeStickerpickerWidgets() {
|
||||||
console.warn('Removing Stickerpicker widgets');
|
console.warn('Removing Stickerpicker widgets');
|
||||||
if (this.widgetId) {
|
if (this.widgetId) {
|
||||||
|
@ -74,7 +62,7 @@ export default class Stickerpicker extends React.Component {
|
||||||
// Wrap this in a timeout in order to avoid the DOM node from being pulled from under its feet
|
// Wrap this in a timeout in order to avoid the DOM node from being pulled from under its feet
|
||||||
setTimeout(() => this.stickersMenu.close());
|
setTimeout(() => this.stickersMenu.close());
|
||||||
Widgets.removeStickerpickerWidgets().then(() => {
|
Widgets.removeStickerpickerWidgets().then(() => {
|
||||||
this._getStickerPickerWidget();
|
this._getStickerpickerContent();
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
console.error('Failed to remove sticker picker widget', e);
|
console.error('Failed to remove sticker picker widget', e);
|
||||||
});
|
});
|
||||||
|
@ -92,9 +80,9 @@ export default class Stickerpicker extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.state.imError) {
|
if (!this.state.imError) {
|
||||||
this._getStickerPickerWidget();
|
|
||||||
this.dispatcherRef = dis.register(this._onWidgetAction);
|
this.dispatcherRef = dis.register(this._onWidgetAction);
|
||||||
}
|
}
|
||||||
|
this._getStickerpickerContent();
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
|
@ -105,28 +93,52 @@ export default class Stickerpicker extends React.Component {
|
||||||
|
|
||||||
_imError(errorMsg, e) {
|
_imError(errorMsg, e) {
|
||||||
console.error(errorMsg, e);
|
console.error(errorMsg, e);
|
||||||
const imErrorContent = <div style={{"text-align": "center"}} className="error"><p> { errorMsg } </p></div>;
|
|
||||||
this.setState({
|
this.setState({
|
||||||
showStickers: false,
|
showStickers: false,
|
||||||
imError: errorMsg,
|
imError: errorMsg,
|
||||||
stickersContent: imErrorContent,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
_onWidgetAction(payload) {
|
_onWidgetAction(payload) {
|
||||||
if (payload.action === "user_widget_updated") {
|
if (payload.action === "user_widget_updated") {
|
||||||
this._getStickerPickerWidget();
|
this._getStickerpickerContent();
|
||||||
return;
|
return;
|
||||||
} else if (payload.action === "stickerpicker_close") {
|
} else if (payload.action === "stickerpicker_close") {
|
||||||
// Wrap this in a timeout in order to avoid the DOM node from being pulled from under its feet
|
// Wrap this in a timeout in order to avoid the DOM node from being
|
||||||
|
// pulled from under its feet
|
||||||
setTimeout(() => this.stickersMenu.close());
|
setTimeout(() => this.stickersMenu.close());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_getStickerPickerWidget() {
|
_defaultStickerpickerContent() {
|
||||||
|
return (
|
||||||
|
<AccessibleButton onClick={this._launchManageIntegrations}
|
||||||
|
className='mx_Stickers_contentPlaceholder'>
|
||||||
|
<p>{ _t("You don't currently have any stickerpacks enabled") }</p>
|
||||||
|
<p className='mx_Stickers_addLink'>Add some now</p>
|
||||||
|
<img src='img/stickerpack-placeholder.png' alt={_t('Add a stickerpack')} />
|
||||||
|
</AccessibleButton>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_errorStickerpickerContent() {
|
||||||
|
return (
|
||||||
|
<div style={{"text-align": "center"}} className="error">
|
||||||
|
<p> { this.state.imError } </p>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
_getStickerpickerContent() {
|
||||||
|
// Handle Integration Manager errors
|
||||||
|
if (this.state._imError) {
|
||||||
|
return this._errorStickerpickerContent();
|
||||||
|
}
|
||||||
|
|
||||||
// Stickers
|
// Stickers
|
||||||
// TODO - Add support for Stickerpickers from multiple app stores.
|
// TODO - Add support for Stickerpickers from multiple app stores.
|
||||||
// Render content from multiple stickerpack sources, each within their own iframe, within the stickerpicker UI element.
|
// Render content from multiple stickerpack sources, each within their
|
||||||
|
// own iframe, within the stickerpicker UI element.
|
||||||
const stickerpickerWidget = Widgets.getStickerpickerWidgets()[0];
|
const stickerpickerWidget = Widgets.getStickerpickerWidgets()[0];
|
||||||
let stickersContent;
|
let stickersContent;
|
||||||
|
|
||||||
|
@ -180,8 +192,8 @@ export default class Stickerpicker extends React.Component {
|
||||||
}
|
}
|
||||||
this.setState({
|
this.setState({
|
||||||
showStickers: false,
|
showStickers: false,
|
||||||
stickersContent: stickersContent,
|
|
||||||
});
|
});
|
||||||
|
return stickersContent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -190,7 +202,7 @@ export default class Stickerpicker extends React.Component {
|
||||||
* @param {Event} e Event that triggered the function
|
* @param {Event} e Event that triggered the function
|
||||||
*/
|
*/
|
||||||
_onShowStickersClick(e) {
|
_onShowStickersClick(e) {
|
||||||
this._getStickerPickerWidget();
|
this._getStickerpickerContent();
|
||||||
const GenericElementContextMenu = sdk.getComponent('context_menus.GenericElementContextMenu');
|
const GenericElementContextMenu = sdk.getComponent('context_menus.GenericElementContextMenu');
|
||||||
const buttonRect = e.target.getBoundingClientRect();
|
const buttonRect = e.target.getBoundingClientRect();
|
||||||
|
|
||||||
|
@ -205,8 +217,8 @@ export default class Stickerpicker extends React.Component {
|
||||||
top: y,
|
top: y,
|
||||||
menuWidth: this.popoverWidth,
|
menuWidth: this.popoverWidth,
|
||||||
menuHeight: this.popoverHeight,
|
menuHeight: this.popoverHeight,
|
||||||
element: this.state.stickersContent,
|
element: this._getStickerpickerContent(),
|
||||||
onFinished: this.onFinished,
|
onFinished: this._onFinished,
|
||||||
menuPaddingTop: 0,
|
menuPaddingTop: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -225,7 +237,7 @@ export default class Stickerpicker extends React.Component {
|
||||||
/**
|
/**
|
||||||
* The stickers picker was hidden
|
* The stickers picker was hidden
|
||||||
*/
|
*/
|
||||||
onFinished() {
|
_onFinished() {
|
||||||
this.setState({showStickers: false});
|
this.setState({showStickers: false});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue