wip
This commit is contained in:
parent
7c30b94cbb
commit
4be168ad51
|
@ -1,37 +0,0 @@
|
||||||
<mk-messaging-room-page>
|
|
||||||
<mk-messaging-room v-if="user" user={ user } is-naked={ true }/>
|
|
||||||
|
|
||||||
<style lang="stylus" scoped>
|
|
||||||
:scope
|
|
||||||
display block
|
|
||||||
background #fff
|
|
||||||
|
|
||||||
</style>
|
|
||||||
<script lang="typescript">
|
|
||||||
import Progress from '../../../common/scripts/loading';
|
|
||||||
|
|
||||||
this.mixin('api');
|
|
||||||
|
|
||||||
this.fetching = true;
|
|
||||||
this.user = null;
|
|
||||||
|
|
||||||
this.on('mount', () => {
|
|
||||||
Progress.start();
|
|
||||||
|
|
||||||
document.documentElement.style.background = '#fff';
|
|
||||||
|
|
||||||
this.$root.$data.os.api('users/show', {
|
|
||||||
username: this.opts.user
|
|
||||||
}).then(user => {
|
|
||||||
this.update({
|
|
||||||
fetching: false,
|
|
||||||
user: user
|
|
||||||
});
|
|
||||||
|
|
||||||
document.title = 'メッセージ: ' + this.user.name;
|
|
||||||
|
|
||||||
Progress.done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</mk-messaging-room-page>
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
<template>
|
||||||
|
<div class="mk-messaging-room-page">
|
||||||
|
<mk-messaging-room v-if="user" :user="user" is-naked/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import Vue from 'vue';
|
||||||
|
import Progress from '../../../common/scripts/loading';
|
||||||
|
|
||||||
|
export default Vue.extend({
|
||||||
|
props: ['username'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
fetching: true,
|
||||||
|
user: null
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
Progress.start();
|
||||||
|
|
||||||
|
document.documentElement.style.background = '#fff';
|
||||||
|
|
||||||
|
this.$root.$data.os.api('users/show', {
|
||||||
|
username: this.username
|
||||||
|
}).then(user => {
|
||||||
|
this.fetching = false;
|
||||||
|
this.user = user;
|
||||||
|
|
||||||
|
document.title = 'メッセージ: ' + this.user.name;
|
||||||
|
|
||||||
|
Progress.done();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="stylus" scoped>
|
||||||
|
.mk-messaging-room-page
|
||||||
|
background #fff
|
||||||
|
|
||||||
|
</style>
|
Loading…
Reference in New Issue