inquisitor/inquisitor/templates/feed.html

127 lines
4.0 KiB
HTML

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div#wrapper { max-width: 700px; margin: 0 auto; }
.readable-item {
border: 1px solid black; border-radius: 6px;
padding: 5px;
margin-bottom: 20px;
word-break: break-word;
}
.item-title { font-size: 1.4em; }
.item-button {
font-size: 1em;
float:right;
margin-left: 2px;
}
.item-link {
text-decoration: none;
float:right;
font-size: 1em;
padding: 2px 7px;
border: 1px solid;
border-radius: 2px;
}
.item-info { color: rgba(0, 0, 0, 0.7); }
.readable-item img { max-width: 100%; }
button, summary { cursor: pointer; }
summary:focus { outline: 1px dotted gray; }
.strikethru span, .strikethru p { text-decoration: line-through; }
.fade span, .fade p { color: rgba(0, 0, 0, 0.2); }
pre { white-space: pre-wrap; }
table.feed-control td { font-family: monospace; padding: 5px 10px; }
</style>
<script>
var deactivate = function (source, itemid) {
fetch('deactivate/', {
method: 'POST',
headers: {
'Content-Type': 'application/json; charset=UTF-8',
},
body: JSON.stringify({source: source, itemid: itemid}),
})
.then(response => response.json())
.then(function (data) {
if (!data.active) {
document.getElementById(source + "-" + itemid)
.classList.add("strikethru", "fade");
}
});
};
var punt = function (source, itemid) {
fetch('punt/', {
method: 'POST',
headers: {
'Content-Type': 'application/json; charset=UTF-8',
},
body: JSON.stringify({source: source, itemid: itemid}),
})
.then(response => response.json())
.then(function (data) {
if (data.tts) {
document.getElementById(source + "-" + itemid)
.classList.add("fade");
}
});
};
var mdeactivate = function (items) {
fetch('mass-deactivate/', {
method: 'POST',
headers: {
'Content-Type': 'application/json; charset=UTF-8',
},
body: JSON.stringify({items: items}),
})
.then(response => response.json())
.then(function () {
location.reload()
});
};
</script>
</head>
<body>
<div id="wrapper">
{% if items %}
{% for item in items %}
<div class="readable-item" id="{{item.source}}-{{item.id}}">
{% if item.id %}<button class="item-button" onclick="javascript:deactivate('{{item.source}}', '{{item.id}}')" title="Deactivate">&#10005;</button>{% endif %}
{% if item.id %}<button class="item-button" onclick="javascript:punt('{{item.source}}', '{{item.id}}')" title="Punt to tomorrow">&#8631;</button>{% endif %}
{% if item.link %}<a class="item-link" href="{{item.link}}" target="_blank">&#8663;</a>{% endif %}
{% if item.body %}<details>
<summary><span class="item-title">{{item.title}}</span></summary>
<p>{{item.body|safe}}</p>
</details>
{% else %}<span class="item-title">{{item.title}}</span><br>
{% endif %}
{% if item.author or item.time %}<span class="item-info">
{% if item.author %}{{item.author}}{% endif %}
{% if item.time %}{{item.time|datetimeformat}}{% endif %}
</span><br>
{% endif %}
{% if item.source or item.id or item.created %}<span class="item-info" title="{{ 'Tags: {}'.format(', '.join(item.tags)) }}">
{% if item.source %}{{item.source}}{% endif %}
{% if item.id %}{{item.id}}{% endif %}
{% if item.created %}{{item.created|datetimeformat}}{% endif %}
{% if item.ttl %}L{% endif %}{% if item.ttd %}D{% endif %}{% if item.tts %}S{% endif %}
</span>
{% endif %}
</div>
{% endfor %}
<div class="readable-item">
<details>
<summary><span class="item-title">Feed Management</span></summary>
<div style="text-align:center;">
<button style="font-size: 1.4em;" onclick="javascript:mdeactivate({{ mdeac|safe }})">Deactivate All</button>
</div>
</details>
</div>
{% else %}
<div class="readable-item">
<span class="item-title">Feed is empty</span>
</div>
{% endif %}
</div>
</body>
</html>