diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-08-14 04:53:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-14 04:53:31 +0200 |
commit | 3c6503038ecad20f1b8fa0c9ea7e46087c6e3f22 (patch) | |
tree | 3da0736f8e6643260c8cea7176e583fcb0c46575 /app/javascript/packs | |
parent | 96e9ed13ded6def1d96260178ee9d9e7ad3e5d23 (diff) |
Add protocol handler. Handle follow intents (#4511)
* Add protocol handler. Handle follow intents * Add share intent * Improve code in intents controller * Adjust share form CSS
Diffstat (limited to 'app/javascript/packs')
-rw-r--r-- | app/javascript/packs/share.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/javascript/packs/share.js b/app/javascript/packs/share.js new file mode 100644 index 000000000..51e4ae38b --- /dev/null +++ b/app/javascript/packs/share.js @@ -0,0 +1,24 @@ +import loadPolyfills from '../mastodon/load_polyfills'; + +require.context('../images/', true); + +function loaded() { + const ComposeContainer = require('../mastodon/containers/compose_container').default; + const React = require('react'); + const ReactDOM = require('react-dom'); + const mountNode = document.getElementById('mastodon-compose'); + + if (mountNode !== null) { + const props = JSON.parse(mountNode.getAttribute('data-props')); + ReactDOM.render(<ComposeContainer {...props} />, mountNode); + } +} + +function main() { + const ready = require('../mastodon/ready').default; + ready(loaded); +} + +loadPolyfills().then(main).catch(error => { + console.error(error); +}); |