.circleci
.github
app
chewy
controllers
helpers
javascript
fonts
images
mastodon
actions
components
containers
features
account
account_gallery
account_timeline
blocks
community_timeline
compose
direct_timeline
domain_blocks
emoji
favourited_statuses
favourites
follow_requests
followers
following
generic_not_found
getting_started
hashtag_timeline
home_timeline
keyboard_shortcuts
list_editor
list_timeline
lists
mutes
notifications
pinned_statuses
public_timeline
reblogs
report
standalone
status
ui
components
__tests__
actions_modal.js
boost_modal.js
bundle.js
bundle_column_error.js
bundle_modal_error.js
column.js
column_header.js
column_link.js
column_loading.js
column_subheading.js
columns_area.js
confirmation_modal.js
drawer_loading.js
embed_modal.js
focal_point_modal.js
image_loader.js
media_modal.js
modal_loading.js
modal_root.js
mute_modal.js
onboarding_modal.js
report_modal.js
tabs_bar.js
upload_area.js
video_modal.js
zoomable_image.js
containers
util
index.js
video
locales
middleware
reducers
selectors
service_worker
storage
store
utils
.gitkeep
api.js
base_polyfills.js
compare_id.js
extra_polyfills.js
initial_state.js
is_mobile.js
link_header.js
load_polyfills.js
main.js
performance.js
ready.js
rtl.js
scroll.js
settings.js
stream.js
test_setup.js
uuid.js
packs
styles
lib
mailers
models
policies
presenters
serializers
services
validators
views
workers
bin
config
db
docs
lib
log
nanobox
public
spec
streaming
vendor
.babelrc
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.yml
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.postcssrc.yml
.profile
.rspec
.rubocop.yml
.ruby-version
.scss-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
boxfile.yml
config.ru
docker-compose.yml
jest.config.js
package.json
scalingo.json
yarn.lock
* Add eslint-plugin-promise to detect uncaught rejections * Move alert generation for errors to actions/alert * Add missing rejection handling for Promises * Use catch() instead of onReject on then() Then it will catches rejection from onFulfilled. This detection can be disabled by `allowThen` option, though.
88 lines
2.2 KiB
JavaScript
88 lines
2.2 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
import { FormattedMessage, injectIntl } from 'react-intl';
|
|
import api from '../../../api';
|
|
|
|
@injectIntl
|
|
export default class EmbedModal extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
url: PropTypes.string.isRequired,
|
|
onClose: PropTypes.func.isRequired,
|
|
onError: PropTypes.func.isRequired,
|
|
intl: PropTypes.object.isRequired,
|
|
}
|
|
|
|
state = {
|
|
loading: false,
|
|
oembed: null,
|
|
};
|
|
|
|
componentDidMount () {
|
|
const { url } = this.props;
|
|
|
|
this.setState({ loading: true });
|
|
|
|
api().post('/api/web/embed', { url }).then(res => {
|
|
this.setState({ loading: false, oembed: res.data });
|
|
|
|
const iframeDocument = this.iframe.contentWindow.document;
|
|
|
|
iframeDocument.open();
|
|
iframeDocument.write(res.data.html);
|
|
iframeDocument.close();
|
|
|
|
iframeDocument.body.style.margin = 0;
|
|
this.iframe.width = iframeDocument.body.scrollWidth;
|
|
this.iframe.height = iframeDocument.body.scrollHeight;
|
|
}).catch(error => {
|
|
this.props.onError(error);
|
|
});
|
|
}
|
|
|
|
setIframeRef = c => {
|
|
this.iframe = c;
|
|
}
|
|
|
|
handleTextareaClick = (e) => {
|
|
e.target.select();
|
|
}
|
|
|
|
render () {
|
|
const { oembed } = this.state;
|
|
|
|
return (
|
|
<div className='modal-root__modal embed-modal'>
|
|
<h4><FormattedMessage id='status.embed' defaultMessage='Embed' /></h4>
|
|
|
|
<div className='embed-modal__container'>
|
|
<p className='hint'>
|
|
<FormattedMessage id='embed.instructions' defaultMessage='Embed this status on your website by copying the code below.' />
|
|
</p>
|
|
|
|
<input
|
|
type='text'
|
|
className='embed-modal__html'
|
|
readOnly
|
|
value={oembed && oembed.html || ''}
|
|
onClick={this.handleTextareaClick}
|
|
/>
|
|
|
|
<p className='hint'>
|
|
<FormattedMessage id='embed.preview' defaultMessage='Here is what it will look like:' />
|
|
</p>
|
|
|
|
<iframe
|
|
className='embed-modal__iframe'
|
|
frameBorder='0'
|
|
ref={this.setIframeRef}
|
|
title='preview'
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|