2018-03-31 23:51:18 +00:00
|
|
|
<div class="account-profile-note">
|
2018-05-02 00:05:36 +00:00
|
|
|
{@html massagedNote}
|
2018-03-31 23:51:18 +00:00
|
|
|
</div>
|
|
|
|
<style>
|
|
|
|
.account-profile-note {
|
|
|
|
grid-area: note;
|
|
|
|
padding: 10px 0;
|
|
|
|
font-size: 0.9em;
|
|
|
|
word-wrap: break-word;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.account-profile-note p) {
|
|
|
|
margin: 0 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.account-profile-note p:first-child) {
|
|
|
|
margin: 0 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.account-profile-note p:last-child) {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
.account-profile-note {
|
|
|
|
padding: 5px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
2018-08-23 21:47:33 +00:00
|
|
|
import { store } from '../../_store/store'
|
|
|
|
import { massageUserText } from '../../_utils/massageUserText'
|
|
|
|
|
2018-03-31 23:51:18 +00:00
|
|
|
export default {
|
2018-08-23 21:47:33 +00:00
|
|
|
store: () => store,
|
2018-03-31 23:51:18 +00:00
|
|
|
computed: {
|
2018-05-02 00:05:36 +00:00
|
|
|
note: ({ account }) => account.note,
|
2018-08-23 21:47:33 +00:00
|
|
|
emojis: ({ account }) => account.emojis || [],
|
|
|
|
massagedNote: ({ note, emojis, $autoplayGifs }) => massageUserText(note, emojis, $autoplayGifs)
|
2018-03-31 23:51:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|