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-04-25 11:42:54 +00:00
|
|
|
[dda.masto-embed.api :as api]
|
|
|
|
[clojure.pprint :as pprint :refer [pprint]]))
|
2020-04-24 16:22:41 +00:00
|
|
|
|
|
|
|
(def mastodon-config
|
2020-04-25 11:42:54 +00:00
|
|
|
(api/create-config "2" "https://social.meissa-gmbh.de"))
|
2020-04-24 16:22:41 +00:00
|
|
|
|
2020-04-24 16:41:40 +00:00
|
|
|
(defn render-to-document
|
|
|
|
[input]
|
|
|
|
(-> js/document
|
|
|
|
(.getElementById "mastodon-timeline")
|
|
|
|
(.-innerHTML)
|
|
|
|
(set! input)))
|
|
|
|
|
2020-04-24 16:22:41 +00:00
|
|
|
(defn init []
|
2020-04-25 11:42:54 +00:00
|
|
|
(api/get-mastodon-timeline mastodon-config render-to-document))
|