2019-10-30 02:58:49 +01:00
|
|
|
import { importShowComposeDialog } from '../_components/dialog/asyncDialogs/importShowComposeDialog.js'
|
2021-07-05 05:19:04 +02:00
|
|
|
import { store } from '../_store/store.js'
|
2019-01-20 01:40:31 +01:00
|
|
|
|
|
|
|
export async function composeNewStatusMentioning (account) {
|
|
|
|
store.setComposeData('dialog', { text: `@${account.acct} ` })
|
2019-08-03 22:49:37 +02:00
|
|
|
const showComposeDialog = await importShowComposeDialog()
|
2019-01-20 01:40:31 +01:00
|
|
|
showComposeDialog()
|
|
|
|
}
|