1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2024-12-24 16:01:20 +01:00

refs #223 Add menu to open toot detail in browser

This commit is contained in:
AkiraFukushima 2018-04-15 13:41:20 +09:00
parent c91dc7fa89
commit 7a63f22caf

View File

@ -46,6 +46,9 @@
<li role="button" @click="openDetail(message)"> <li role="button" @click="openDetail(message)">
View Toot Detail View Toot Detail
</li> </li>
<li role="button" @click="openBrowser(message)">
Open in Browser
</li>
</ul> </ul>
</popover> </popover>
</div> </div>
@ -106,6 +109,9 @@ export default {
this.$store.dispatch('TimelineSpace/Contents/SideBar/TootDetail/changeToot', message) this.$store.dispatch('TimelineSpace/Contents/SideBar/TootDetail/changeToot', message)
this.$store.commit('TimelineSpace/Contents/SideBar/changeOpenSideBar', true) this.$store.commit('TimelineSpace/Contents/SideBar/changeOpenSideBar', true)
}, },
openBrowser (message) {
console.log(message)
},
changeReblog (message) { changeReblog (message) {
if (message.reblogged) { if (message.reblogged) {
this.$store.dispatch('TimelineSpace/Contents/Cards/Toot/unreblog', message) this.$store.dispatch('TimelineSpace/Contents/Cards/Toot/unreblog', message)
@ -273,25 +279,21 @@ function findLink (target) {
color: #e6a23c; color: #e6a23c;
} }
.toot-menu{ .toot-menu {
padding: 0; padding: 0;
font-size: 0.8em; font-size: 0.8em;
margin-left: 0.5em;
list-style-type: none; list-style-type: none;
text-align: center; text-align: left;
li{ li {
box-sizing: border-box;
padding-left: 0.5em;
padding-bottom: 0.5em; padding-bottom: 0.5em;
border-bottom: 1px solid #ddd;
&:hover{ &:hover {
background-color: #f2f6fc;
cursor: pointer; cursor: pointer;
} }
&:last-child{
border: 0;
padding: 0;
}
} }
} }
} }