You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.9 KiB
37 lines
1.9 KiB
<div if(!state.removed) class=["post", component.kindClass("pk-"), state.multipart ? "multipart" : null, state.anchored ? "anchored" : null]>
|
|
<a class="anchor" id=input.post.id />
|
|
<div class="post-meta-row">
|
|
<div class="options color-menu">
|
|
<a on-click("link") href=("#" + input.post.id) class="color-menu">Link</a>
|
|
<if-permitted user=input.user permission="post.move">
|
|
<a on-click("move", -1, true)>Up</a>
|
|
<a on-click("move", +1, true)>Down</a>
|
|
</if-permitted>
|
|
<if-permitted user=input.user permission="post.edit">
|
|
<a on-click("open", "edit") >Edit</a>
|
|
</if-permitted>
|
|
<if-permitted user=input.user permission="post.remove">
|
|
<a on-click("open", "remove")>Remove</a>
|
|
</if-permitted>
|
|
</div>
|
|
<post-meta kind="timestamp" value=input.post.time />
|
|
<post-meta kind="nick" class=("pk-"+input.post.kind) value=input.post.nick />
|
|
</div>
|
|
<div if(input.post.kind.startsWith("annotation.")) class="post-body" >
|
|
<annotation level=(input.post.kind.substring(11))>
|
|
<markdown class="post-content" source=state.text />
|
|
</annotation>
|
|
</div>
|
|
<div if(input.post.kind === "scene") class="post-body color-text">
|
|
<markdown class="post-content post-scene" source=state.text />
|
|
</div>
|
|
<div if(input.post.kind === "action") class="post-body color-text">
|
|
$ const prefix = ((!state.multipart || state.prevWasText) ? state.shortName + state.nameSuffix + " " : "");
|
|
<markdown class="post-content post-action" source=(prefix + state.text) />
|
|
</div>
|
|
<div if(input.post.kind === "text") class="post-body color-text">
|
|
<markdown class="post-content post-text" source=state.text />
|
|
</div>
|
|
<remove-post-modal enabled=(state.modal === "remove") post=input.post on-close("close") on-remove("remove") />
|
|
<edit-post-modal enabled=(state.modal === "edit") post=input.post on-close("close") on-edited("edited") />
|
|
</div>
|