2015-11-27 18:02:32 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-11-27 18:02:32 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-04-06 16:08:59 +03:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import highlight from 'highlight.js';
|
|
|
|
import * as HtmlUtils from '../../../HtmlUtils';
|
|
|
|
import * as linkify from 'linkifyjs';
|
|
|
|
import linkifyElement from 'linkifyjs/element';
|
|
|
|
import linkifyMatrix from '../../../linkify-matrix';
|
|
|
|
import sdk from '../../../index';
|
|
|
|
import ScalarAuthClient from '../../../ScalarAuthClient';
|
|
|
|
import Modal from '../../../Modal';
|
|
|
|
import SdkConfig from '../../../SdkConfig';
|
|
|
|
import dis from '../../../dispatcher';
|
2017-05-30 17:09:57 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2017-06-12 03:13:10 +03:00
|
|
|
import UserSettingsStore from "../../../UserSettingsStore";
|
2017-07-17 16:50:45 +03:00
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
|
|
|
import {RoomMember} from 'matrix-js-sdk';
|
2017-07-19 13:00:26 +03:00
|
|
|
import classNames from 'classnames';
|
2015-11-27 18:02:32 +03:00
|
|
|
|
|
|
|
linkifyMatrix(linkify);
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
2015-11-30 18:19:43 +03:00
|
|
|
displayName: 'TextualBody',
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2016-02-17 22:50:04 +03:00
|
|
|
propTypes: {
|
|
|
|
/* the MatrixEvent to show */
|
|
|
|
mxEvent: React.PropTypes.object.isRequired,
|
|
|
|
|
|
|
|
/* a list of words to highlight */
|
|
|
|
highlights: React.PropTypes.array,
|
|
|
|
|
|
|
|
/* link URL for the highlights */
|
|
|
|
highlightLink: React.PropTypes.string,
|
2016-04-02 02:36:19 +03:00
|
|
|
|
2016-07-18 03:35:42 +03:00
|
|
|
/* should show URL previews for this event */
|
|
|
|
showUrlPreview: React.PropTypes.bool,
|
|
|
|
|
2016-04-02 02:36:19 +03:00
|
|
|
/* callback for when our widget has loaded */
|
|
|
|
onWidgetLoad: React.PropTypes.func,
|
2016-02-17 22:50:04 +03:00
|
|
|
},
|
|
|
|
|
2016-03-31 20:38:01 +03:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
2016-05-24 02:54:20 +03:00
|
|
|
// the URLs (if any) to be previewed with a LinkPreviewWidget
|
2016-04-08 22:21:12 +03:00
|
|
|
// inside this TextualBody.
|
2016-05-31 21:42:00 +03:00
|
|
|
links: [],
|
2016-04-04 01:30:48 +03:00
|
|
|
|
|
|
|
// track whether the preview widget is hidden
|
|
|
|
widgetHidden: false,
|
2016-03-31 20:38:01 +03:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2017-06-06 02:29:14 +03:00
|
|
|
copyToClipboard: function(text) {
|
|
|
|
const textArea = document.createElement("textarea");
|
|
|
|
textArea.value = text;
|
|
|
|
document.body.appendChild(textArea);
|
|
|
|
textArea.select();
|
|
|
|
try {
|
|
|
|
const successful = document.execCommand('copy');
|
|
|
|
} catch (err) {
|
|
|
|
console.log('Unable to copy');
|
|
|
|
}
|
|
|
|
document.body.removeChild(textArea);
|
|
|
|
},
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
componentDidMount: function() {
|
2016-10-26 20:41:28 +03:00
|
|
|
this._unmounted = false;
|
|
|
|
|
2017-07-17 16:50:45 +03:00
|
|
|
// pillifyLinks BEFORE linkifyElement because plain room/user URLs in the composer
|
|
|
|
// are still sent as plaintext URLs. If these are ever pillified in the composer,
|
|
|
|
// we should be pillify them here by doing the linkifying BEFORE the pillifying.
|
|
|
|
this.pillifyLinks(this.refs.content.children);
|
2015-11-27 18:02:32 +03:00
|
|
|
linkifyElement(this.refs.content, linkifyMatrix.options);
|
2016-07-20 14:03:13 +03:00
|
|
|
this.calculateUrlPreview();
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2016-10-26 20:41:28 +03:00
|
|
|
if (this.props.mxEvent.getContent().format === "org.matrix.custom.html") {
|
|
|
|
const blocks = ReactDOM.findDOMNode(this).getElementsByTagName("code");
|
|
|
|
if (blocks.length > 0) {
|
|
|
|
// Do this asynchronously: parsing code takes time and we don't
|
|
|
|
// need to block the DOM update on it.
|
|
|
|
setTimeout(() => {
|
|
|
|
if (this._unmounted) return;
|
|
|
|
for (let i = 0; i < blocks.length; i++) {
|
2017-06-12 03:13:10 +03:00
|
|
|
if (UserSettingsStore.getSyncedSetting("enableSyntaxHighlightLanguageDetection", false)) {
|
|
|
|
highlight.highlightBlock(blocks[i])
|
|
|
|
} else {
|
|
|
|
// Only syntax highlight if there's a class starting with language-
|
|
|
|
let classes = blocks[i].className.split(/\s+/).filter(function (cl) {
|
|
|
|
return cl.startsWith('language-');
|
|
|
|
});
|
|
|
|
|
|
|
|
if (classes.length != 0) {
|
|
|
|
highlight.highlightBlock(blocks[i]);
|
|
|
|
}
|
|
|
|
}
|
2016-10-26 20:41:28 +03:00
|
|
|
}
|
|
|
|
}, 10);
|
|
|
|
}
|
2017-06-08 16:53:21 +03:00
|
|
|
// add event handlers to the 'copy code' buttons
|
2017-06-06 02:29:14 +03:00
|
|
|
const buttons = ReactDOM.findDOMNode(this).getElementsByClassName("mx_EventTile_copyButton");
|
2017-06-08 16:53:21 +03:00
|
|
|
for (let i = 0; i < buttons.length; i++) {
|
|
|
|
buttons[i].onclick = (e) => {
|
|
|
|
const copyCode = buttons[i].parentNode.getElementsByTagName("code")[0];
|
|
|
|
this.copyToClipboard(copyCode.textContent);
|
|
|
|
};
|
2017-06-06 02:29:14 +03:00
|
|
|
}
|
2016-10-26 20:41:28 +03:00
|
|
|
}
|
2016-07-20 14:03:13 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
componentDidUpdate: function() {
|
|
|
|
this.calculateUrlPreview();
|
|
|
|
},
|
|
|
|
|
2016-10-26 20:41:28 +03:00
|
|
|
componentWillUnmount: function() {
|
|
|
|
this._unmounted = true;
|
|
|
|
},
|
|
|
|
|
2016-07-20 14:03:13 +03:00
|
|
|
shouldComponentUpdate: function(nextProps, nextState) {
|
|
|
|
//console.log("shouldComponentUpdate: ShowUrlPreview for %s is %s", this.props.mxEvent.getId(), this.props.showUrlPreview);
|
|
|
|
|
|
|
|
// exploit that events are immutable :)
|
|
|
|
return (nextProps.mxEvent.getId() !== this.props.mxEvent.getId() ||
|
|
|
|
nextProps.highlights !== this.props.highlights ||
|
|
|
|
nextProps.highlightLink !== this.props.highlightLink ||
|
|
|
|
nextProps.showUrlPreview !== this.props.showUrlPreview ||
|
|
|
|
nextState.links !== this.state.links ||
|
|
|
|
nextState.widgetHidden !== this.state.widgetHidden);
|
|
|
|
},
|
|
|
|
|
|
|
|
calculateUrlPreview: function() {
|
|
|
|
//console.log("calculateUrlPreview: ShowUrlPreview for %s is %s", this.props.mxEvent.getId(), this.props.showUrlPreview);
|
|
|
|
|
|
|
|
if (this.props.showUrlPreview && !this.state.links.length) {
|
2016-07-18 03:35:42 +03:00
|
|
|
var links = this.findLinks(this.refs.content.children);
|
|
|
|
if (links.length) {
|
2017-07-06 12:47:15 +03:00
|
|
|
// de-dup the links (but preserve ordering)
|
2017-07-06 12:02:25 +03:00
|
|
|
const seen = new Set();
|
|
|
|
links = links.filter((link) => {
|
|
|
|
if (seen.has(link)) return false;
|
|
|
|
seen.add(link);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
this.setState({ links: links });
|
2016-04-04 01:30:48 +03:00
|
|
|
|
2016-07-18 03:35:42 +03:00
|
|
|
// lazy-load the hidden state of the preview widget from localstorage
|
|
|
|
if (global.localStorage) {
|
|
|
|
var hidden = global.localStorage.getItem("hide_preview_" + this.props.mxEvent.getId());
|
|
|
|
this.setState({ widgetHidden: hidden });
|
|
|
|
}
|
2016-04-04 01:30:48 +03:00
|
|
|
}
|
2016-03-31 20:38:01 +03:00
|
|
|
}
|
2016-04-04 01:30:48 +03:00
|
|
|
},
|
|
|
|
|
2017-07-17 16:50:45 +03:00
|
|
|
pillifyLinks: function(nodes) {
|
|
|
|
for (let i = 0; i < nodes.length; i++) {
|
|
|
|
const node = nodes[i];
|
|
|
|
if (node.tagName === "A" && node.getAttribute("href")) {
|
|
|
|
const href = node.getAttribute("href");
|
2017-07-21 15:41:23 +03:00
|
|
|
|
|
|
|
// If the link is a (localised) matrix.to link, replace it with a pill
|
|
|
|
const Pill = sdk.getComponent('elements.Pill');
|
|
|
|
if (Pill.isMessagePillUrl(href)) {
|
|
|
|
const pillContainer = document.createElement('span');
|
|
|
|
|
|
|
|
const room = MatrixClientPeg.get().getRoom(this.props.mxEvent.getRoomId());
|
|
|
|
const pill = <Pill url={href} inMessage={true} room={room}/>;
|
|
|
|
|
|
|
|
ReactDOM.render(pill, pillContainer);
|
|
|
|
node.parentNode.replaceChild(pillContainer, node);
|
2017-07-17 16:50:45 +03:00
|
|
|
}
|
|
|
|
} else if (node.children && node.children.length) {
|
|
|
|
this.pillifyLinks(node.children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-05-24 02:54:20 +03:00
|
|
|
findLinks: function(nodes) {
|
|
|
|
var links = [];
|
2017-07-06 12:02:25 +03:00
|
|
|
|
2016-04-07 20:58:50 +03:00
|
|
|
for (var i = 0; i < nodes.length; i++) {
|
|
|
|
var node = nodes[i];
|
2016-04-21 20:00:39 +03:00
|
|
|
if (node.tagName === "A" && node.getAttribute("href"))
|
2016-04-13 03:54:06 +03:00
|
|
|
{
|
2016-05-24 02:54:20 +03:00
|
|
|
if (this.isLinkPreviewable(node)) {
|
2017-07-06 12:02:25 +03:00
|
|
|
links.push(node.getAttribute("href"));
|
2016-05-24 02:54:20 +03:00
|
|
|
}
|
2016-04-21 19:14:27 +03:00
|
|
|
}
|
2017-03-18 13:43:35 +03:00
|
|
|
else if (node.tagName === "PRE" || node.tagName === "CODE" ||
|
|
|
|
node.tagName === "BLOCKQUOTE") {
|
2016-05-24 02:54:20 +03:00
|
|
|
continue;
|
2016-04-07 20:58:50 +03:00
|
|
|
}
|
|
|
|
else if (node.children && node.children.length) {
|
2016-05-24 02:54:20 +03:00
|
|
|
links = links.concat(this.findLinks(node.children));
|
2016-04-07 20:58:50 +03:00
|
|
|
}
|
|
|
|
}
|
2016-05-24 02:54:20 +03:00
|
|
|
return links;
|
2016-04-07 20:58:50 +03:00
|
|
|
},
|
|
|
|
|
2016-04-21 20:00:39 +03:00
|
|
|
isLinkPreviewable: function(node) {
|
|
|
|
// don't try to preview relative links
|
|
|
|
if (!node.getAttribute("href").startsWith("http://") &&
|
|
|
|
!node.getAttribute("href").startsWith("https://"))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// as a random heuristic to avoid highlighting things like "foo.pl"
|
|
|
|
// we require the linked text to either include a / (either from http://
|
|
|
|
// or from a full foo.bar/baz style schemeless URL) - or be a markdown-style
|
|
|
|
// link, in which case we check the target text differs from the link value.
|
|
|
|
// TODO: make this configurable?
|
|
|
|
if (node.textContent.indexOf("/") > -1)
|
|
|
|
{
|
2016-11-07 14:45:55 +03:00
|
|
|
return true;
|
2016-04-21 20:00:39 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
var url = node.getAttribute("href");
|
|
|
|
var host = url.match(/^https?:\/\/(.*?)(\/|$)/)[1];
|
2016-11-07 13:57:08 +03:00
|
|
|
|
|
|
|
// never preview matrix.to links (if anything we should give a smart
|
|
|
|
// preview of the room/user they point to: nobody needs to be reminded
|
|
|
|
// what the matrix.to site looks like).
|
|
|
|
if (host == 'matrix.to') return false;
|
|
|
|
|
2016-05-27 12:09:07 +03:00
|
|
|
if (node.textContent.toLowerCase().trim().startsWith(host.toLowerCase())) {
|
2016-04-21 20:00:39 +03:00
|
|
|
// it's a "foo.pl" style link
|
2016-11-07 14:45:55 +03:00
|
|
|
return false;
|
2016-04-21 20:00:39 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// it's a [foo bar](http://foo.com) style link
|
2016-11-07 14:45:55 +03:00
|
|
|
return true;
|
2016-04-21 20:00:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-04-04 01:30:48 +03:00
|
|
|
onCancelClick: function(event) {
|
|
|
|
this.setState({ widgetHidden: true });
|
|
|
|
// FIXME: persist this somewhere smarter than local storage
|
|
|
|
if (global.localStorage) {
|
|
|
|
global.localStorage.setItem("hide_preview_" + this.props.mxEvent.getId(), "1");
|
|
|
|
}
|
|
|
|
this.forceUpdate();
|
2015-11-27 18:02:32 +03:00
|
|
|
},
|
|
|
|
|
2017-04-06 16:08:59 +03:00
|
|
|
onEmoteSenderClick: function(event) {
|
|
|
|
const mxEvent = this.props.mxEvent;
|
|
|
|
dis.dispatch({
|
2017-07-20 20:02:54 +03:00
|
|
|
action: 'insert_mention',
|
2017-07-20 17:46:36 +03:00
|
|
|
user_id: mxEvent.getSender(),
|
2017-04-06 16:08:59 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2016-04-08 23:42:29 +03:00
|
|
|
getEventTileOps: function() {
|
|
|
|
var self = this;
|
|
|
|
return {
|
|
|
|
isWidgetHidden: function() {
|
|
|
|
return self.state.widgetHidden;
|
|
|
|
},
|
|
|
|
|
|
|
|
unhideWidget: function() {
|
|
|
|
self.setState({ widgetHidden: false });
|
2016-04-12 01:53:36 +03:00
|
|
|
if (global.localStorage) {
|
|
|
|
global.localStorage.removeItem("hide_preview_" + self.props.mxEvent.getId());
|
|
|
|
}
|
2016-04-08 23:42:29 +03:00
|
|
|
},
|
2017-01-20 17:22:27 +03:00
|
|
|
};
|
2016-04-08 23:42:29 +03:00
|
|
|
},
|
|
|
|
|
2016-09-05 11:10:15 +03:00
|
|
|
onStarterLinkClick: function(starterLink, ev) {
|
|
|
|
ev.preventDefault();
|
2016-09-02 18:36:43 +03:00
|
|
|
// We need to add on our scalar token to the starter link, but we may not have one!
|
|
|
|
// In addition, we can't fetch one on click and then go to it immediately as that
|
|
|
|
// is then treated as a popup!
|
|
|
|
// We can get around this by fetching one now and showing a "confirmation dialog" (hurr hurr)
|
|
|
|
// which requires the user to click through and THEN we can open the link in a new tab because
|
|
|
|
// the window.open command occurs in the same stack frame as the onClick callback.
|
|
|
|
|
|
|
|
// Go fetch a scalar token
|
|
|
|
let scalarClient = new ScalarAuthClient();
|
|
|
|
scalarClient.connect().then(() => {
|
|
|
|
let completeUrl = scalarClient.getStarterLink(starterLink);
|
|
|
|
let QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
|
|
|
let integrationsUrl = SdkConfig.get().integrations_ui_url;
|
|
|
|
Modal.createDialog(QuestionDialog, {
|
2017-05-30 17:09:57 +03:00
|
|
|
title: _t("Add an Integration"),
|
2016-09-02 18:36:43 +03:00
|
|
|
description:
|
|
|
|
<div>
|
2017-05-30 17:09:57 +03:00
|
|
|
{_t("You are about to be taken to a third-party site so you can " +
|
2017-05-30 22:32:12 +03:00
|
|
|
"authenticate your account for use with %(integrationsUrl)s. " +
|
|
|
|
"Do you wish to continue?", { integrationsUrl: integrationsUrl })}
|
2016-09-02 18:36:43 +03:00
|
|
|
</div>,
|
2017-05-30 17:09:57 +03:00
|
|
|
button: _t("Continue"),
|
2016-09-02 18:36:43 +03:00
|
|
|
onFinished: function(confirmed) {
|
|
|
|
if (!confirmed) {
|
|
|
|
return;
|
|
|
|
}
|
2017-01-20 17:22:27 +03:00
|
|
|
let width = window.screen.width > 1024 ? 1024 : window.screen.width;
|
|
|
|
let height = window.screen.height > 800 ? 800 : window.screen.height;
|
2016-09-02 18:36:43 +03:00
|
|
|
let left = (window.screen.width - width) / 2;
|
|
|
|
let top = (window.screen.height - height) / 2;
|
|
|
|
window.open(completeUrl, '_blank', `height=${height}, width=${width}, top=${top}, left=${left},`);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
2016-09-02 18:03:24 +03:00
|
|
|
},
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
render: function() {
|
2016-08-11 05:25:12 +03:00
|
|
|
const EmojiText = sdk.getComponent('elements.EmojiText');
|
2015-11-29 00:12:02 +03:00
|
|
|
var mxEvent = this.props.mxEvent;
|
|
|
|
var content = mxEvent.getContent();
|
2016-09-02 18:03:24 +03:00
|
|
|
|
2016-07-18 03:35:42 +03:00
|
|
|
var body = HtmlUtils.bodyToHtml(content, this.props.highlights, {});
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2016-07-18 03:35:42 +03:00
|
|
|
if (this.props.highlightLink) {
|
|
|
|
body = <a href={ this.props.highlightLink }>{ body }</a>;
|
|
|
|
}
|
2016-09-02 18:03:24 +03:00
|
|
|
else if (content.data && typeof content.data["org.matrix.neb.starter_link"] === "string") {
|
2016-09-05 11:10:15 +03:00
|
|
|
body = <a href="#" onClick={ this.onStarterLinkClick.bind(this, content.data["org.matrix.neb.starter_link"]) }>{ body }</a>;
|
2016-09-02 18:03:24 +03:00
|
|
|
}
|
2016-03-31 20:38:01 +03:00
|
|
|
|
2016-05-24 02:54:20 +03:00
|
|
|
var widgets;
|
2016-07-20 14:03:13 +03:00
|
|
|
if (this.state.links.length && !this.state.widgetHidden && this.props.showUrlPreview) {
|
2016-03-31 20:38:01 +03:00
|
|
|
var LinkPreviewWidget = sdk.getComponent('rooms.LinkPreviewWidget');
|
2016-05-24 02:54:20 +03:00
|
|
|
widgets = this.state.links.map((link)=>{
|
|
|
|
return <LinkPreviewWidget
|
|
|
|
key={ link }
|
|
|
|
link={ link }
|
|
|
|
mxEvent={ this.props.mxEvent }
|
|
|
|
onCancelClick={ this.onCancelClick }
|
|
|
|
onWidgetLoad={ this.props.onWidgetLoad }/>;
|
|
|
|
});
|
2016-03-31 20:38:01 +03:00
|
|
|
}
|
|
|
|
|
2015-11-29 00:12:02 +03:00
|
|
|
switch (content.msgtype) {
|
|
|
|
case "m.emote":
|
2016-08-09 19:10:05 +03:00
|
|
|
const name = mxEvent.sender ? mxEvent.sender.name : mxEvent.getSender();
|
2015-11-29 00:12:02 +03:00
|
|
|
return (
|
2016-01-03 03:11:11 +03:00
|
|
|
<span ref="content" className="mx_MEmoteBody mx_EventTile_content">
|
2017-04-06 16:08:59 +03:00
|
|
|
*
|
|
|
|
<EmojiText
|
|
|
|
className="mx_MEmoteBody_sender"
|
|
|
|
onClick={this.onEmoteSenderClick}
|
|
|
|
>
|
|
|
|
{name}
|
|
|
|
</EmojiText>
|
|
|
|
|
|
|
|
{ body }
|
2016-05-24 02:54:20 +03:00
|
|
|
{ widgets }
|
2015-11-29 00:12:02 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
case "m.notice":
|
|
|
|
return (
|
2016-01-03 03:11:11 +03:00
|
|
|
<span ref="content" className="mx_MNoticeBody mx_EventTile_content">
|
2015-11-29 00:12:02 +03:00
|
|
|
{ body }
|
2016-05-24 02:54:20 +03:00
|
|
|
{ widgets }
|
2015-11-29 00:12:02 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
default: // including "m.text"
|
|
|
|
return (
|
2016-01-03 03:11:11 +03:00
|
|
|
<span ref="content" className="mx_MTextBody mx_EventTile_content">
|
2015-11-29 00:12:02 +03:00
|
|
|
{ body }
|
2016-05-24 02:54:20 +03:00
|
|
|
{ widgets }
|
2015-11-29 00:12:02 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
},
|
|
|
|
});
|