@let showBlueskyOptions = postService.enableBluesky && (!data?.post || data?.post?.bskyUri) && privacy === 0;
@if (pollQuestions.length === 0) {
}
@if (showBlueskyOptions) { } @else {
}
@if (editing) {
{{ 'editor.editingLabel' | translate }}
} @if (data && data.ask) {
{{ 'editor.askReplyLabel' | translate }}
} @if (privacy === 10) { {{ 'editor.directMessageWarning' | translate }} @if (data?.quote) { {{ 'editor.directMessageWithQuoteWarning' | translate }} } } @if (privacy === 3) { {{ 'editor.unlistedWarning' | translate }} } @if (showContentWarning || contentWarning) {
Content warning (optional)
} @if (showMentionedUsersList) {
@if (mentionedUsers.length >= 1) { @for (user of mentionedUsers; track $index) { {{ user.url }} } }
}
{{ 'editor.wootTextLabel' | translate }} @if (draggingOverTextarea) {
{{ 'editor.uploadMediaIndicator' | translate }}
}
@if (false && uploadedMedias.length === 0) {
} @if (uploadedMedias.length > 0) {
@for (media of uploadedMedias; track media; let i = $index) {
@if (mediaIsVideo(media)) { {{ 'editor.altTextFieldLabelVideo' | translate }} } @else { {{ 'editor.altTextFieldLabel' | translate }} }
{{ 'editor.isNSFWToggle' | translate }}
}
@if (uploadedMedias.length >= 4) {

{{ 'editor.mediaCountMastodonWarning' | translate }}

} @if (!allDescriptionsFilled()) {

{{ 'editor.altTextWarning' | translate }}

}
}
{{ 'editor.tagFieldLabel' | translate }} @if (tags) {
@for (tag of tags.split(','); track $index) { @if (tag && tag !== '' && tag.trim() !== '') { #{{ tagMap(tag) }} } }
}
@if (data && data.post && !editing) {

{{ 'editor.inReplyTo' | translate }}

@if (data.post) { }
} @if (quoteOpen && !data?.quote && !quoteLoading) {
{{ 'editor.wootQuoteBoxLabel' | translate }}
} @if (quoteLoading || data?.quote) {

{{ 'editor.quoteTitle' | translate }}

@if (quoteLoading) {
} @if (data && data.quote) {
}
}
{{ 'editor.usernameLabel' | translate }}
@if (accountList().length > 1) { } @else { }
@if (showBlueskyOptions) {

{{ calculateBskyPostLength() }}/300 {{ 'common.characters' | translate }}

{{ 'editor.bskyLengthLabel' | translate }}

}
@for (account of accountList(); track $index) { } @for (option of privacyOptions; track $index) { @if (option.level != 20) { } }
@if (suggestionLoading()) {
} @else if (suggestions.length === 0 && emojiSuggestions.length === 0) {
{{ 'editor.noResults' | translate }}
} @for (emoji of emojiSuggestions; track $index) {
@if (emoji.img) { } {{ emoji.id }} @if (emoji.id !== emoji.name) { {{ emoji.name }} }
} @for (user of suggestions; track $index) {
{{ user.text }}
}