mastofeed-iframe-embed/static/index.html

35 lines
1.4 KiB
HTML
Raw Normal View History

2017-04-30 04:14:25 +02:00
<html><head></head><body>
2017-04-30 04:54:46 +02:00
<h4>Example:</h4>
<label>Instance URL:<input type="text" id="urlin" placeholder="octodon.social"></input></label><br>
<label>Username:<input type="text" id="usernamein" placeholder="fenwick67"></input></label><br>
<label>Width(px):<input type="text" id="width" value="400"></input></label><br>
<label>Height(px):<input type="text" id="height" value="800"></input></label><br>
2017-04-30 04:14:25 +02:00
2017-04-30 04:54:46 +02:00
<button onclick="genUrl()" value="generate">Generate</button>
<br>
<br>
<label>Use this markup in your HTML: <input id="result" placeholder="result will go here"></input>
<br>
<h4>Preview</h4>
<iframe width="400" height="800" id="frame" sandbox src=""></iframe>
<script>
function genUrl(){
//https://octodon.social/users/fenwick67.atom
function val(id){
return document.getElementById(id).value;
}
2017-04-30 20:25:03 +02:00
var inUrl = window.location.protocol + '//' + val('urlin') + '/users/'+val('usernamein')+'.atom';
2017-04-30 04:54:46 +02:00
var iframeUrl = 'http://'+ window.location.hostname +((window.location.port && window.location.port!=80)?(':'+window.location.port):'') +"/api/feed?url="+encodeURIComponent(inUrl);
document.getElementById('result').value = '<iframe sandbox width="'+val('width')+'" height="'+val('height')+'" src="'+iframeUrl+'"></iframe>';
var iframe = document.getElementById('frame');
iframe.src = iframeUrl;
iframe.width = val('width');
iframe.height = val('height');
}
</script>
2017-04-30 20:25:03 +02:00
</body></html>