Add random images

This commit is contained in:
Andros Fenollosa 2021-07-07 00:43:45 +02:00
parent c0235615bc
commit ebf48207e3
3 changed files with 57 additions and 14 deletions

3
.gitignore vendored
View File

@ -3,5 +3,4 @@ target/
/.lein-repl-history /.lein-repl-history
/.nrepl-port /.nrepl-port
config.yaml config.yaml
log/logger1.log log/logger1.log*
log/logger1.log.1

View File

@ -36,6 +36,7 @@
:root { :root {
--color-black: black; --color-black: black;
--color-gray: gray; --color-gray: gray;
--height-img: 10rem;
} }
body { body {
margin: 0; margin: 0;
@ -105,12 +106,18 @@
.article__title, .article__feed { .article__title, .article__feed {
font-weight: normal; font-weight: normal;
} }
.article__header-img > a > img {
height: var(--height-img);
object-position: center;
object-fit: contain;
}
.article__random-background {
height: var(--height-img);
width: 100%;
}
</style> </style>
<style media="all and (max-width: 600px)"> <style media="all and (max-width: 600px)">
/* Mobile */ /* Mobile */
body {
background: red;
}
</style> </style>
<style media="all and (min-width: 601px)"> <style media="all and (min-width: 601px)">
/* Desktop */ /* Desktop */
@ -194,7 +201,7 @@
} }
.article__header-img > img { .article__header-img > img {
height: 12rem; height: var(--height-img);
} }
.feed__article:nth-child(1) .article__header-img > img, .feed__article:nth-child(1) .article__header-img > img,
@ -239,6 +246,10 @@
overflow-y: auto; overflow-y: auto;
} }
.feed__article:nth-child(1) .article__random-background {
height: initial;
}
</style> </style>
<!-- End CSS --> <!-- End CSS -->
</head> </head>
@ -251,24 +262,28 @@
</header> </header>
<main class="main"> <main class="main">
{% for article in articles %} {% for article in articles %}
<a class="feed__article article" target="_blank" href="{{ article.url }}"> <article class="feed__article article">
<article>
<header class="article__header"> <header class="article__header">
{% if article.cover %}
<p class="article__header-img"> <p class="article__header-img">
<img loading="lazy" src="{{ article.cover }}" alt="{{ article.title }}"> <a target="_blank" href="{{ article.link }}">
{% if article.cover %}
<img loading="lazy" src="{{ article.cover }}" alt="{{ article.title }}">
{% else %}
<canvas class="article__random-background"></canvas>
{% endif %}
</a>
</p> </p>
{% endif %}
<div class="article__titles"> <div class="article__titles">
<h1 class="article__title">{{ article.title }}</h1> <h1 class="article__title">
<h2 class="article__feed"><a target="_blank" href="{{ article.feed.url }}">{{ article.feed.title }}</a> <span class="article__date">{{ article.published-date-formatter }}</span></h2> <a target="_blank" href="{{ article.link }}">{{ article.title }}</a>
</h1>
<h2 class="article__feed"><a target="_blank" href="{{ article.feed.link }}">{{ article.feed.title }}</a> <span class="article__date">{{ article.published-date-formatter }}</span></h2>
</div> </div>
</header> </header>
<main class="container article__main"> <main class="container article__main">
{{ article.description.value|safe }} {{ article.description.value|safe }}
</main> </main>
</article> </article>
</a>
{% endfor %} {% endfor %}
</main> </main>
</div> </div>
@ -278,5 +293,21 @@
Generated with <a class="footer__link" href="https://github.com/tanrax/RSSpaper">RSSpaper</a> and a lot of <span class="footer__heard">❤️</span> Generated with <a class="footer__link" href="https://github.com/tanrax/RSSpaper">RSSpaper</a> and a lot of <span class="footer__heard">❤️</span>
</p> </p>
</footer> </footer>
<script defer>
function getRandomNumber(min, max) {
return Math.random() * (max - min) + min;
}
function getRandomHexColor() {
return '#'.concat(Math.floor(Math.random() * 16777215).toString(16));
}
// Random background
document.querySelectorAll('.article__random-background').forEach((canvas) => {
canvas.style.backgroundImage = `linear-gradient(${getRandomNumber(0, 360)}deg, ${getRandomHexColor()}, ${getRandomHexColor()})`;
});
</script>
</body> </body>
</html> </html>

View File

@ -1,18 +1,30 @@
(ns rsspaper.feeds (ns rsspaper.feeds
(:require (:require
[rsspaper.config :refer [config]] [rsspaper.config :refer [config]]
[clj-time.core :as t]
[clj-time.coerce :as c] [clj-time.coerce :as c]
[clj-time.format :as f] [clj-time.format :as f]
[remus :refer [parse-url]])) [remus :refer [parse-url]]))
(def date-custom-formatter (f/formatter "dd MM yyyy")) (def date-custom-formatter (f/formatter "dd MM yyyy"))
(defn datetimes-to-unixtime (defn datetimes-to-unixtime
[articles] [articles]
(map (fn [article] (map (fn [article]
(assoc article :published-date (c/to-long (:published-date article)))) articles)) (assoc article :published-date (c/to-long (:published-date article)))) articles))
(defn filter-edition
[articles]
(let [daily (- (c/to-long (t/now)) 86400), weekly (- (c/to-long (t/now)) 604800)]
(case (:edition config)
"daily" articles
"weekly" articles
:else articles
)))
(defn add-datetimes-formatter (defn add-datetimes-formatter
[articles] [articles]
(map (fn [article] (map (fn [article]
@ -46,6 +58,7 @@
(conj feeds (conj feeds
(parse-url feed-url {:insecure? true :throw-exceptions false})) (parse-url feed-url {:insecure? true :throw-exceptions false}))
) [] (:feeds config)) ) [] (:feeds config))
filter-edition
zip-feeds-in-articles zip-feeds-in-articles
add-cover-article add-cover-article
datetimes-to-unixtime datetimes-to-unixtime