2019-01-19 16:40:31 -08:00
|
|
|
import { importShowComposeDialog } from '../_components/dialog/asyncDialogs'
|
|
|
|
import { store } from '../_store/store'
|
|
|
|
|
|
|
|
export async function composeNewStatusMentioning (account) {
|
|
|
|
store.setComposeData('dialog', { text: `@${account.acct} ` })
|
2019-08-03 13:49:37 -07:00
|
|
|
const showComposeDialog = await importShowComposeDialog()
|
2019-01-19 16:40:31 -08:00
|
|
|
showComposeDialog()
|
|
|
|
}
|