2020-04-25 11:42:54 +00:00
|
|
|
; Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
; or more contributor license agreements. See the NOTICE file
|
|
|
|
; distributed with this work for additional information
|
|
|
|
; regarding copyright ownership. The ASF licenses this file
|
|
|
|
; to you under the Apache License, Version 2.0 (the
|
|
|
|
; "License"); you may not use this file except in compliance
|
|
|
|
; with the License. You may obtain a copy of the License at
|
|
|
|
;
|
|
|
|
; http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
;
|
|
|
|
; Unless required by applicable law or agreed to in writing, software
|
|
|
|
; distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
; See the License for the specific language governing permissions and
|
|
|
|
; limitations under the License.
|
2020-04-24 11:55:33 +00:00
|
|
|
(ns dda.masto-embed.app
|
2020-04-24 15:22:51 +00:00
|
|
|
(:require
|
2020-06-19 09:05:45 +00:00
|
|
|
[cljs.core.async :refer [go close! put! take! timeout chan <! >!]]
|
|
|
|
[cljs.core.async.interop :refer-macros [<p!]]
|
2020-07-08 18:35:01 +00:00
|
|
|
[hiccups.runtime :refer [render-html]]
|
|
|
|
[dda.masto-embed.api :as api]
|
|
|
|
[dda.masto-embed.infra :as infra]
|
|
|
|
[dda.masto-embed.render-bootstrap :as rb]
|
|
|
|
))
|
2020-04-24 16:22:41 +00:00
|
|
|
|
2020-04-25 12:26:33 +00:00
|
|
|
(def masto-embed "masto-embed")
|
|
|
|
|
2022-02-24 13:08:43 +00:00
|
|
|
(defn element-from-document-by-name [name]
|
2020-04-26 16:35:09 +00:00
|
|
|
(-> js/document
|
|
|
|
(.getElementById masto-embed)
|
2022-02-24 13:08:43 +00:00
|
|
|
(.getAttribute name)))
|
|
|
|
|
|
|
|
(defn host-url-from-document []
|
|
|
|
(element-from-document-by-name "host_url"))
|
2020-06-19 09:05:45 +00:00
|
|
|
|
2020-06-19 15:26:34 +00:00
|
|
|
(defn account-name-from-document []
|
2022-02-24 13:08:43 +00:00
|
|
|
(element-from-document-by-name "account_name"))
|
2020-04-26 16:35:09 +00:00
|
|
|
|
|
|
|
(defn account-id-from-document []
|
2022-02-24 13:08:43 +00:00
|
|
|
(element-from-document-by-name "account_id"))
|
2020-04-24 16:22:41 +00:00
|
|
|
|
2020-04-24 16:41:40 +00:00
|
|
|
(defn render-to-document
|
|
|
|
[input]
|
|
|
|
(-> js/document
|
2020-04-25 12:26:33 +00:00
|
|
|
(.getElementById masto-embed)
|
2020-04-24 16:41:40 +00:00
|
|
|
(.-innerHTML)
|
|
|
|
(set! input)))
|
|
|
|
|
2020-06-19 09:05:45 +00:00
|
|
|
(defn find-account-id [host-url account-name]
|
2020-06-19 15:26:34 +00:00
|
|
|
(let [out (chan)]
|
2020-06-19 09:05:45 +00:00
|
|
|
(go
|
2020-06-19 15:26:34 +00:00
|
|
|
(>! out
|
|
|
|
(->>
|
|
|
|
(<p! (api/get-directory host-url))
|
2020-06-23 18:09:00 +00:00
|
|
|
api/mastojs->edn
|
2020-06-19 15:26:34 +00:00
|
|
|
(filter #(= account-name (:acct %)))
|
2020-06-24 17:59:02 +00:00
|
|
|
(infra/debug)
|
2020-06-19 15:26:34 +00:00
|
|
|
(map :id)
|
2020-06-19 15:28:32 +00:00
|
|
|
first)))
|
2020-06-19 09:05:45 +00:00
|
|
|
out))
|
|
|
|
|
2022-03-02 13:40:25 +00:00
|
|
|
(defn favorited-replies? [host-url reply-id account-name]
|
|
|
|
(let [out (chan)]
|
|
|
|
(go (>! out
|
|
|
|
(->>
|
|
|
|
(<p! (api/get-favorited-by host-url reply-id))
|
|
|
|
api/mastojs->edn
|
|
|
|
(filter #(= account-name (:acct %)))
|
|
|
|
(empty?)
|
|
|
|
(not)
|
|
|
|
(infra/debug))))
|
|
|
|
out))
|
|
|
|
|
2020-04-24 16:22:41 +00:00
|
|
|
(defn init []
|
2020-06-19 09:05:45 +00:00
|
|
|
(go
|
2020-06-19 15:26:34 +00:00
|
|
|
(let [host-url (host-url-from-document)
|
|
|
|
account-name (account-name-from-document)
|
2022-03-02 13:40:25 +00:00
|
|
|
account-id (or
|
2020-06-19 09:05:45 +00:00
|
|
|
(account-id-from-document)
|
2020-06-19 15:26:34 +00:00
|
|
|
(<! (find-account-id host-url account-name)))
|
2020-06-23 18:09:00 +00:00
|
|
|
statuus (->
|
|
|
|
(<p! (api/get-account-statuses host-url account-id))
|
|
|
|
api/mastojs->edn)
|
2022-03-02 13:40:25 +00:00
|
|
|
test-status (->
|
|
|
|
(<p! (api/get-replies host-url "107779492679907372"))
|
|
|
|
api/mastojs->edn)
|
|
|
|
filtered (->>
|
|
|
|
(:descendants test-status)
|
|
|
|
(filter #(favorited-replies? host-url (:id %) account-name))
|
|
|
|
(infra/debug))]
|
|
|
|
;(->> statuus
|
|
|
|
; (take 4)
|
|
|
|
; (rb/masto->html)
|
|
|
|
; (render-html)
|
|
|
|
; (render-to-document))
|
|
|
|
(->> filtered
|
|
|
|
(infra/debug)
|
2020-07-08 18:35:01 +00:00
|
|
|
(rb/masto->html)
|
2020-06-23 18:09:00 +00:00
|
|
|
(render-html)
|
2022-03-02 13:40:25 +00:00
|
|
|
(render-to-document)))))
|
|
|
|
|
|
|
|
|