mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
wip
This commit is contained in:
parent
73029df58a
commit
0c092b8050
@ -1,26 +1,34 @@
|
||||
import PostForm from '../views/components/post-form.vue';
|
||||
import RepostForm from '../views/components/repost-form.vue';
|
||||
//import RepostForm from '../views/components/repost-form.vue';
|
||||
import getPostSummary from '../../../../common/get-post-summary';
|
||||
|
||||
export default function(opts) {
|
||||
export default (os) => (opts) => {
|
||||
const o = opts || {};
|
||||
|
||||
const app = document.getElementById('app');
|
||||
app.style.display = 'none';
|
||||
|
||||
function recover() {
|
||||
app.style.display = 'block';
|
||||
}
|
||||
|
||||
if (o.repost) {
|
||||
const vm = new RepostForm({
|
||||
/*const vm = new RepostForm({
|
||||
propsData: {
|
||||
repost: o.repost
|
||||
}
|
||||
}).$mount();
|
||||
vm.$once('cancel', recover);
|
||||
vm.$once('post', recover);
|
||||
document.body.appendChild(vm.$el);
|
||||
document.body.appendChild(vm.$el);*/
|
||||
|
||||
const text = window.prompt(`「${getPostSummary(o.repost)}」をRepost`);
|
||||
if (text == null) return;
|
||||
os.api('posts/create', {
|
||||
repost_id: o.repost.id,
|
||||
text: text == '' ? undefined : text
|
||||
});
|
||||
} else {
|
||||
const app = document.getElementById('app');
|
||||
app.style.display = 'none';
|
||||
|
||||
function recover() {
|
||||
app.style.display = 'block';
|
||||
}
|
||||
|
||||
const vm = new PostForm({
|
||||
propsData: {
|
||||
reply: o.reply
|
||||
@ -30,4 +38,4 @@ export default function(opts) {
|
||||
vm.$once('post', recover);
|
||||
document.body.appendChild(vm.$el);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
@ -38,7 +38,7 @@ init((launch) => {
|
||||
chooseDriveFile,
|
||||
dialog,
|
||||
input,
|
||||
post,
|
||||
post: post(os),
|
||||
notify
|
||||
}));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user