Composer: Sort suggested tags by usage + display it
This commit is contained in:
parent
700ace10d9
commit
761c8ed3be
|
@ -516,3 +516,5 @@
|
|||
"report.action.send" = "Адправіць";
|
||||
"status.action.report" = "Паскардзіцца";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
||||
|
|
|
@ -509,3 +509,5 @@
|
|||
"report.title" = "Report Post";
|
||||
"report.action.send" = "Send";
|
||||
"status.action.report" = "Report Post";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -505,3 +505,5 @@
|
|||
"report.title" = "Beitrag melden";
|
||||
"report.action.send" = "Absenden";
|
||||
"status.action.report" = "Beitrag melden";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -512,3 +512,5 @@
|
|||
"report.title" = "Report Post";
|
||||
"report.action.send" = "Send";
|
||||
"status.action.report" = "Report Post";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -512,3 +512,4 @@
|
|||
"report.action.send" = "Send";
|
||||
"status.action.report" = "Report Post";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -511,3 +511,5 @@
|
|||
"report.title" = "Denunciar publicación";
|
||||
"report.action.send" = "Enviar";
|
||||
"status.action.report" = "Denunciar publicación";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -500,3 +500,5 @@
|
|||
"report.title" = "Salaketa";
|
||||
"report.action.send" = "Bidali";
|
||||
"status.action.report" = "Salatu edukia";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -506,3 +506,5 @@
|
|||
"report.title" = "Signaler la publication";
|
||||
"report.action.send" = "Envoyer";
|
||||
"status.action.report" = "Signaler la publication";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -511,3 +511,5 @@
|
|||
"report.title" = "Segnala il messaggio";
|
||||
"report.action.send" = "Invia";
|
||||
"status.action.report" = "Segnala il messaggio";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -510,3 +510,5 @@
|
|||
"report.title" = "投稿を報告";
|
||||
"report.action.send" = "送信";
|
||||
"status.action.report" = "投稿を報告";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -512,3 +512,5 @@
|
|||
"report.title" = "신고";
|
||||
"report.action.send" = "제출";
|
||||
"status.action.report" = "글 신고";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -510,3 +510,5 @@
|
|||
"report.title" = "Report Post";
|
||||
"report.action.send" = "Send";
|
||||
"status.action.report" = "Report Post";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -507,3 +507,5 @@
|
|||
"report.title" = "Meld post";
|
||||
"report.action.send" = "Verstuur";
|
||||
"status.action.report" = "Meld post";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -502,3 +502,5 @@
|
|||
"report.title" = "Zgłoszenie postu";
|
||||
"report.action.send" = "Wyślij";
|
||||
"status.action.report" = "Zgłoś post";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -510,3 +510,5 @@
|
|||
"report.title" = "Reportar Postagem";
|
||||
"report.action.send" = "Enviar";
|
||||
"status.action.report" = "Repostar Postagem";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -510,3 +510,5 @@
|
|||
"report.title" = "Report Post";
|
||||
"report.action.send" = "Send";
|
||||
"status.action.report" = "Report Post";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -512,3 +512,5 @@
|
|||
"report.action.send" = "Надіслати";
|
||||
"status.action.report" = "Поскаржитися на допис";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
||||
|
|
|
@ -512,3 +512,5 @@
|
|||
"report.title" = "举报嘟文";
|
||||
"report.action.send" = "发送";
|
||||
"status.action.report" = "举报嘟文";
|
||||
|
||||
"tag.suggested.mentions-%@" = "%@ mentions";
|
||||
|
|
|
@ -51,9 +51,14 @@ struct StatusEditorAutoCompleteView: View {
|
|||
Button {
|
||||
viewModel.selectHashtagSuggestion(tag: tag)
|
||||
} label: {
|
||||
Text("#\(tag.name)")
|
||||
.font(.scaledCaption)
|
||||
.foregroundColor(theme.tintColor)
|
||||
VStack(alignment: .leading) {
|
||||
Text("#\(tag.name)")
|
||||
.font(.scaledFootnote)
|
||||
.foregroundColor(theme.tintColor)
|
||||
Text("tag.suggested.mentions-\(String(tag.totalUses))")
|
||||
.font(.scaledCaption)
|
||||
.foregroundColor(.gray)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -445,7 +445,7 @@ public class StatusEditorViewModel: NSObject, ObservableObject {
|
|||
following: nil),
|
||||
forceVersion: .v2)
|
||||
withAnimation {
|
||||
tagsSuggestions = results?.hashtags ?? []
|
||||
tagsSuggestions = results?.hashtags.sorted(by: { $0.totalUses > $1.totalUses }) ?? []
|
||||
}
|
||||
case "@":
|
||||
query.removeFirst()
|
||||
|
|
Loading…
Reference in New Issue