mirror of
https://github.com/svemagie/indiekit-endpoint-activitypub.git
synced 2026-04-02 15:44:58 +02:00
The reply context on the compose page rendered raw Mastodon HTML in a bare <blockquote>, causing hashtag links to display as block elements (each on its own line with # separated from the tag name). Wrapping the content in a <div class="ap-card__content"> applies the same inline hashtag/mention/invisible-span CSS rules used in the timeline. Confab-Link: http://localhost:8080/sessions/cc343b15-8d10-43cd-a48f-ca912eb79b83
61 lines
2.3 KiB
Plaintext
61 lines
2.3 KiB
Plaintext
{% extends "layouts/ap-reader.njk" %}
|
|
|
|
{% from "heading/macro.njk" import heading with context %}
|
|
|
|
{% block readercontent %}
|
|
{# Reply context — show the post being replied to #}
|
|
{% if replyContext %}
|
|
<div class="ap-compose__context">
|
|
<div class="ap-compose__context-label">{{ __("activitypub.reader.replyingTo") }}</div>
|
|
{% if replyContext.author %}
|
|
<div class="ap-compose__context-author">
|
|
<a href="{{ replyContext.author.url }}">{{ replyContext.author.name }}</a>
|
|
</div>
|
|
{% endif %}
|
|
{% if replyContext.content and (replyContext.content.html or replyContext.content.text) %}
|
|
<div class="ap-card__content ap-compose__context-text">
|
|
{{ replyContext.content.html | safe if replyContext.content.html else replyContext.content.text | truncate(300) }}
|
|
</div>
|
|
{% endif %}
|
|
<a href="{{ replyTo }}" class="ap-compose__context-link" target="_blank" rel="noopener">{{ replyTo }}</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<form method="post" action="{{ mountPath }}/admin/reader/compose" class="ap-compose__form">
|
|
<input type="hidden" name="_csrf" value="{{ csrfToken }}">
|
|
{% if replyTo %}
|
|
<input type="hidden" name="in-reply-to" value="{{ replyTo }}">
|
|
{% endif %}
|
|
|
|
{# Content textarea #}
|
|
<div class="ap-compose__editor">
|
|
<textarea name="content" class="ap-compose__textarea"
|
|
rows="6"
|
|
placeholder="{{ __('activitypub.compose.placeholder') }}"
|
|
required></textarea>
|
|
</div>
|
|
|
|
{# Syndication targets #}
|
|
{% if syndicationTargets.length > 0 %}
|
|
<fieldset class="ap-compose__syndication">
|
|
<legend>{{ __("activitypub.compose.syndicateLabel") }}</legend>
|
|
{% for target in syndicationTargets %}
|
|
<label class="ap-compose__syndication-target">
|
|
<input type="checkbox" name="mp-syndicate-to" value="{{ target.uid }}" {{ "checked" if target.defaultChecked }}>
|
|
{{ target.name }}
|
|
</label>
|
|
{% endfor %}
|
|
</fieldset>
|
|
{% endif %}
|
|
|
|
<div class="ap-compose__actions">
|
|
<button type="submit" class="ap-compose__submit">
|
|
{{ __("activitypub.compose.submitMicropub") }}
|
|
</button>
|
|
<a href="{{ mountPath }}/admin/reader" class="ap-compose__cancel">
|
|
{{ __("activitypub.compose.cancel") }}
|
|
</a>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|