Sharkey/src/client/app/desktop/api/post.ts

23 lines
657 B
TypeScript
Raw Normal View History

2018-05-27 12:12:39 +03:00
import OS from '../../mios';
2018-02-20 15:53:34 +02:00
import PostFormWindow from '../views/components/post-form-window.vue';
2018-04-07 20:30:37 +03:00
import RenoteFormWindow from '../views/components/renote-form-window.vue';
2018-02-20 15:53:34 +02:00
2018-05-27 12:12:39 +03:00
export default (os: OS) => opts => {
2018-02-21 19:15:46 +02:00
const o = opts || {};
2018-04-07 20:30:37 +03:00
if (o.renote) {
2018-05-27 12:12:39 +03:00
const vm = os.new(RenoteFormWindow, {
2018-10-12 08:34:54 +03:00
note: o.renote,
animation: o.animation == null ? true : o.animation
2018-05-27 12:12:39 +03:00
});
2018-10-12 19:33:00 +03:00
if (o.cb) vm.$once('closed', o.cb);
2018-02-21 19:15:46 +02:00
document.body.appendChild(vm.$el);
} else {
2018-05-27 12:12:39 +03:00
const vm = os.new(PostFormWindow, {
2018-10-12 08:34:54 +03:00
reply: o.reply,
animation: o.animation == null ? true : o.animation
2018-05-27 12:12:39 +03:00
});
2018-10-12 19:33:00 +03:00
if (o.cb) vm.$once('closed', o.cb);
2018-02-21 19:15:46 +02:00
document.body.appendChild(vm.$el);
}
2018-05-27 12:12:39 +03:00
};