[Client] 良い感じに
This commit is contained in:
parent
9b8208f937
commit
0390820f07
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "misskey",
|
||||
"author": "syuilo <i@syuilo.com>",
|
||||
"version": "0.0.1387",
|
||||
"version": "0.0.1388",
|
||||
"license": "MIT",
|
||||
"description": "A miniblog-based SNS",
|
||||
"bugs": "https://github.com/syuilo/misskey/issues",
|
||||
|
|
|
@ -25,24 +25,41 @@
|
|||
> .popover
|
||||
position absolute
|
||||
z-index 10001
|
||||
padding 4px
|
||||
background #fff
|
||||
border 1px solid rgba(27, 31, 35, 0.15)
|
||||
border-radius 4px
|
||||
box-shadow 0 3px 12px rgba(27, 31, 35, 0.15)
|
||||
|
||||
> button
|
||||
width 40px
|
||||
height 40px
|
||||
font-size 24px
|
||||
border-radius 2px
|
||||
|
||||
&:hover
|
||||
background #eee
|
||||
|
||||
&:active
|
||||
background $theme-color
|
||||
box-shadow inset 0 0.15em 0.3em rgba(27, 31, 35, 0.15)
|
||||
|
||||
</style>
|
||||
<script>
|
||||
this.mixin('api');
|
||||
|
||||
this.post = this.opts.post;
|
||||
this.source = this.opts.source;
|
||||
|
||||
this.on('mount', () => {
|
||||
const rect = this.source.getBoundingClientRect();
|
||||
const x = rect.left + window.pageXOffset + (this.source.offsetWidth / 2);
|
||||
const y = rect.top + window.pageYOffset + (this.source.offsetHeight / 2);
|
||||
|
||||
const width = this.refs.popover.offsetWidth;
|
||||
this.refs.popover.style.top = this.opts.top + 'px';
|
||||
this.refs.popover.style.left = (this.opts.left - (width / 2)) + 'px';
|
||||
const height = this.refs.popover.offsetHeight;
|
||||
this.refs.popover.style.left = (x - (width / 2)) + 'px';
|
||||
this.refs.popover.style.top = (y - (height / 2)) + 'px';
|
||||
});
|
||||
|
||||
this.react = reaction => {
|
||||
|
|
|
@ -329,10 +329,8 @@
|
|||
};
|
||||
|
||||
this.react = () => {
|
||||
const rect = this.refs.reactButton.getBoundingClientRect();
|
||||
riot.mount(document.body.appendChild(document.createElement('mk-reaction-picker')), {
|
||||
top: rect.top + window.pageYOffset,
|
||||
left: rect.left + window.pageXOffset,
|
||||
source: this.refs.reactButton,
|
||||
post: this.p
|
||||
});
|
||||
};
|
||||
|
|
|
@ -377,10 +377,8 @@
|
|||
};
|
||||
|
||||
this.react = () => {
|
||||
const rect = this.refs.reactButton.getBoundingClientRect();
|
||||
riot.mount(document.body.appendChild(document.createElement('mk-reaction-picker')), {
|
||||
top: rect.top + window.pageYOffset,
|
||||
left: rect.left + window.pageXOffset,
|
||||
source: this.refs.reactButton,
|
||||
post: this.p
|
||||
});
|
||||
};
|
||||
|
|
|
@ -335,10 +335,8 @@
|
|||
};
|
||||
|
||||
this.react = () => {
|
||||
const rect = this.refs.reactButton.getBoundingClientRect();
|
||||
riot.mount(document.body.appendChild(document.createElement('mk-reaction-picker')), {
|
||||
top: rect.top + window.pageYOffset,
|
||||
left: rect.left + window.pageXOffset,
|
||||
source: this.refs.reactButton,
|
||||
post: this.p
|
||||
});
|
||||
};
|
||||
|
|
|
@ -356,10 +356,8 @@
|
|||
};
|
||||
|
||||
this.react = () => {
|
||||
const rect = this.refs.reactButton.getBoundingClientRect();
|
||||
riot.mount(document.body.appendChild(document.createElement('mk-reaction-picker')), {
|
||||
top: rect.top + window.pageYOffset,
|
||||
left: rect.left + window.pageXOffset,
|
||||
source: this.refs.reactButton,
|
||||
post: this.p
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue