dda-masto-embed/src/main/dda/masto_embed/app.cljs

85 lines
2.3 KiB
Text
Raw Normal View History

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.
(ns dda.masto-embed.app
2020-04-24 15:22:51 +00:00
(:require
2020-04-25 11:42:54 +00:00
[dda.masto-embed.api :as api]
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-04-25 11:42:54 +00:00
[clojure.pprint :as pprint :refer [pprint]]))
2020-04-24 16:22:41 +00:00
2020-04-25 12:26:33 +00:00
(def masto-embed "masto-embed")
2020-04-26 16:35:09 +00:00
(defn host-url-from-document []
(-> js/document
(.getElementById masto-embed)
(.getAttribute "host_url")))
(defn account-name-from-document []
2020-06-19 09:05:45 +00:00
2020-04-26 16:35:09 +00:00
(-> js/document
(.getElementById masto-embed)
(.getAttribute "account_name")))
(defn account-id-from-document []
(-> js/document
(.getElementById masto-embed)
(.getAttribute "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 debug [elem]
(print elem)
elem)
(defn find-account-id [host-url account-name]
(let [in (chan)
out (chan)]
(go
(->>
(<! in)
(filter #(= account-name (:acct %)))
(map :id)
first
debug
(>! out))
(do (close! in)
(close! out))
)
;(api/get-directory host-url #(go (>! in %)))
out))
2020-04-24 16:22:41 +00:00
(defn init []
2020-06-19 09:05:45 +00:00
(go
(let [account-id (or
(account-id-from-document)
(<! (find-account-id "https://social.meissa-gmbh.de" "team")))]
(print account-id)
(api/get-account-statuses
(host-url-from-document)
account-id
render-to-document))))
2020-06-19 12:58:59 +00:00
(defn main []
(go
(let [account-id (<! (find-account-id "https://social.meissa-gmbh.de" "team"))]
(print account-id)
)))