add msg item
This commit is contained in:
parent
f6a1b5a6c0
commit
0f479b1f9b
@ -1,21 +1,38 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="msg-content">
|
||||||
|
<sui-label class="time-field">{{ parseTime }}</sui-label>
|
||||||
<TextItem v-if="type === 'text'" :message="msg" />
|
<TextItem v-if="type === 'text'" :message="msg" />
|
||||||
<ImageItem v-if="type === 'image'" :image="msg" />
|
<ImageItem v-if="type === 'image'" :image="msg" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style lang="less" scope>
|
||||||
|
.msg-content{
|
||||||
|
padding: 0.4em
|
||||||
|
}
|
||||||
|
.time-field{
|
||||||
|
margin-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import TextItem from './text-item.vue'
|
import TextItem from './text-item.vue'
|
||||||
import ImageItem from './image-item.vue'
|
import ImageItem from './image-item.vue'
|
||||||
|
import {padleft} from '@/tools'
|
||||||
export default {
|
export default {
|
||||||
props: ['type', 'msg'],
|
props: ['type', 'msg', 'time'],
|
||||||
components: {
|
components: {
|
||||||
TextItem,
|
TextItem,
|
||||||
ImageItem
|
ImageItem
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {}
|
return {}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
parseTime () {
|
||||||
|
let date = new Date(this.time)
|
||||||
|
return `${date.getFullYear()}-${date.getMonth() + 1}-${padleft(date.getDate().toString(), 2)} ${padleft(date.getHours(), 2)}:${padleft(date.getMinutes(), 2)}:${padleft(date.getSeconds(), 2)}`
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,19 +1,37 @@
|
|||||||
<template>
|
<template>
|
||||||
<sui-container>
|
<sui-container>
|
||||||
<sui-segment>
|
<sui-grid>
|
||||||
<sui-list divided>
|
<sui-grid-row>
|
||||||
<sui-list-item v-for="it in list" :key="it.id">
|
<sui-grid-column :width="4">
|
||||||
<sui-list-header>{{ it.user_name }}</sui-list-header>
|
<sui-segment>
|
||||||
<MessageItem :type="it.type" :msg="it.message" />
|
<sui-list divided>
|
||||||
</sui-list-item>
|
<sui-list-item @click="changeGroup('')">All</sui-list-item>
|
||||||
</sui-list>
|
<sui-list-item v-for="it in lineGroups" :key="it.id" @click="changeGroup(it.id)">
|
||||||
</sui-segment>
|
{{ it.name }}
|
||||||
|
</sui-list-item>
|
||||||
|
</sui-list>
|
||||||
|
</sui-segment>
|
||||||
|
</sui-grid-column>
|
||||||
|
<sui-grid-column :width="12">
|
||||||
|
<sui-segment>
|
||||||
|
<sui-list>
|
||||||
|
<sui-list-item v-for="it in list" :key="it.id">
|
||||||
|
<sui-segment>
|
||||||
|
<sui-list-header><sui-label :basic="true">{{ it.group_name }}</sui-label> {{ it.user_name }}</sui-list-header>
|
||||||
|
<MessageItem :type="it.type" :msg="it.message" :time="it.ctime" />
|
||||||
|
</sui-segment>
|
||||||
|
</sui-list-item>
|
||||||
|
</sui-list>
|
||||||
|
</sui-segment>
|
||||||
|
</sui-grid-column>
|
||||||
|
</sui-grid-row>
|
||||||
|
</sui-grid>
|
||||||
</sui-container>
|
</sui-container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import MessageItem from './components/message-item.vue'
|
import MessageItem from './components/message-item.vue'
|
||||||
import axios from 'axios'
|
import {mapActions, mapGetters} from 'vuex'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'LineLog',
|
name: 'LineLog',
|
||||||
@ -22,18 +40,42 @@ export default {
|
|||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
list: []
|
list: [],
|
||||||
|
nowGroup: '',
|
||||||
|
page: {
|
||||||
|
cur: 1,
|
||||||
|
total: 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
updated () {
|
||||||
|
console.log(this.lineGroups)
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
...mapActions(['getLineGroups', 'getLogList']),
|
||||||
|
changeGroup (id = '') {
|
||||||
|
console.log('change grp ::::: ', id)
|
||||||
|
if (typeof id !== 'string') return
|
||||||
|
this.nowGroup = id
|
||||||
|
this.page = { cur: 1, total: 1 }
|
||||||
|
this.getLog(1)
|
||||||
|
},
|
||||||
|
getLog (page = 1) {
|
||||||
|
this.getLogList({
|
||||||
|
group: this.nowGroup,
|
||||||
|
page: this.page.cur,
|
||||||
|
max: 20,
|
||||||
|
cb: list => {
|
||||||
|
this.list = list
|
||||||
|
}})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
let self = this
|
this.getLineGroups()
|
||||||
axios({
|
this.getLog()
|
||||||
method: 'get',
|
},
|
||||||
url: 'https://bot.trj.tw/api/line/logs?max=100',
|
computed: {
|
||||||
withCredentials: true
|
...mapGetters(['lineGroups'])
|
||||||
}).then(res => res.data).then(data => {
|
|
||||||
self.list = data.list
|
|
||||||
}).catch(err => console.log(err))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -235,5 +235,35 @@ export default {
|
|||||||
errorCatch.apply(commit, [err])
|
errorCatch.apply(commit, [err])
|
||||||
}
|
}
|
||||||
commit('toggleLoading', false)
|
commit('toggleLoading', false)
|
||||||
|
},
|
||||||
|
async getLineGroups ({commit, dispatch}) {
|
||||||
|
try {
|
||||||
|
let res = await client({
|
||||||
|
method: 'get',
|
||||||
|
url: `/api/line/groups`
|
||||||
|
})
|
||||||
|
commit('setLineGroups', res.data.list)
|
||||||
|
} catch (err) {
|
||||||
|
errorCatch.call(commit, err)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async getLogList ({commit, dispatch}, {group, page, max = 20, cb = null}) {
|
||||||
|
console.log('get log list :::::: ', group, page, max)
|
||||||
|
let chk = chkObject.bind({ body: { group, page, max } })
|
||||||
|
if (!chk('group', 'string', true) || !chk('page', 'number') || !chk('max', 'number')) return
|
||||||
|
try {
|
||||||
|
let opts = {
|
||||||
|
method: 'get',
|
||||||
|
url: '/api/line/logs',
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
|
if (group.length > 0) opts.params.group = group
|
||||||
|
if (page > 1) opts.params.p = page
|
||||||
|
if (max > 0) opts.params.max = max
|
||||||
|
let res = await client(opts)
|
||||||
|
if (cb !== null && typeof cb === 'function') cb(res.data.list)
|
||||||
|
} catch (err) {
|
||||||
|
errorCatch.call(commit, err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,3 +6,4 @@ export const getChannel = state => id => {
|
|||||||
let arr = state.twitch.channels.filter(t => t.id === id)
|
let arr = state.twitch.channels.filter(t => t.id === id)
|
||||||
return arr.length > 0 ? arr[0] : null
|
return arr.length > 0 ? arr[0] : null
|
||||||
}
|
}
|
||||||
|
export const lineGroups = state => state.line.groups || []
|
||||||
|
@ -15,6 +15,9 @@ const state = {
|
|||||||
},
|
},
|
||||||
twitch: {
|
twitch: {
|
||||||
channels: []
|
channels: []
|
||||||
|
},
|
||||||
|
line: {
|
||||||
|
groups: []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,5 +39,8 @@ export default {
|
|||||||
return t
|
return t
|
||||||
})
|
})
|
||||||
state.twitch.channels = [...list]
|
state.twitch.channels = [...list]
|
||||||
|
},
|
||||||
|
setLineGroups (state, list) {
|
||||||
|
state.line.groups = [...list]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
77
src/tools.js
77
src/tools.js
@ -1,21 +1,70 @@
|
|||||||
export const apiUrl = 'https://bot.trj.tw'
|
export const apiUrl = 'https://bot.trj.tw'
|
||||||
|
|
||||||
export const chkObject = function (key = '', type = '', empty = false) {
|
export const padleft = (str, len, pad = '0') => {
|
||||||
|
if (typeof str !== 'string') str = str.toString()
|
||||||
|
if (str.length < len) return padleft(`${pad}${str}`, len, pad)
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* check is number
|
||||||
|
* @param {any} v input value
|
||||||
|
* @return {boolean}
|
||||||
|
*/
|
||||||
|
export const isNumber = (v) => {
|
||||||
|
if (!isFinite(v) || v === true || v === false) return false
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* src value to int
|
||||||
|
* @param {object} v src value
|
||||||
|
* @param {number} defVal default value
|
||||||
|
* @param {number} min range min
|
||||||
|
* @param {number} max range max
|
||||||
|
*/
|
||||||
|
export const toInt = (v, defVal = 0, min = null, max = null) => {
|
||||||
|
if (!isNumber(defVal)) defVal = 0
|
||||||
|
if (typeof defVal === 'string') defVal = parseInt(defVal)
|
||||||
|
min = !isNumber(min) ? null : (typeof min === 'string' ? parseInt(min) : min)
|
||||||
|
max = !isNumber(max) ? null : (typeof max === 'string' ? parseInt(max) : max)
|
||||||
|
if (!isNumber(v)) return defVal
|
||||||
|
if (typeof v === 'string') v = parseInt(v)
|
||||||
|
if (min !== null && v < min) v = min
|
||||||
|
if (max !== null && v > max) v = max
|
||||||
|
return v
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* check Object
|
||||||
|
* @param {string} key key name
|
||||||
|
* @param {string} type type name
|
||||||
|
* @param {boolean} empty can empty
|
||||||
|
* @param {number} max max value
|
||||||
|
*/
|
||||||
|
export const chkObject = function (key = '', type = '', empty = false, max = null) {
|
||||||
const uuidChk = /^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i
|
const uuidChk = /^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i
|
||||||
if (!(key in this.body)) return false
|
if (!(key in this.body)) return false
|
||||||
|
|
||||||
|
if (isFinite(empty) && (empty !== false && empty !== true)) {
|
||||||
|
max = toInt(empty, 0)
|
||||||
|
empty = false
|
||||||
|
}
|
||||||
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'string':
|
case 'string':
|
||||||
if (typeof this.body[key] !== 'string' || (!empty && !this.body[key].trim())) return false
|
if (typeof this.body[key] !== 'string' || (!empty && !this.body[key])) return false
|
||||||
|
if (max !== null && this.body[key].length > max) return false
|
||||||
break
|
break
|
||||||
case 'number':
|
case 'number':
|
||||||
if (!isFinite(this.body[key])) return false
|
if (!isNumber(this.body[key])) return false
|
||||||
|
if (max !== null && this.body[key] > max) return false
|
||||||
break
|
break
|
||||||
case 'boolean':
|
case 'boolean':
|
||||||
if (typeof this.body[key] !== 'boolean') return false
|
if (typeof this.body[key] !== 'boolean') return false
|
||||||
break
|
break
|
||||||
case 'array':
|
case 'array':
|
||||||
if (!Array.isArray(this.body[key]) || (!empty && this.body[key].length === 0)) return false
|
if (!Array.isArray(this.body[key]) || (!empty && this.body[key].length === 0)) return false
|
||||||
|
if (max !== null && this.body[key].length > max) return false
|
||||||
break
|
break
|
||||||
case 'uuid':
|
case 'uuid':
|
||||||
if (typeof this.body[key] !== 'string') return false
|
if (typeof this.body[key] !== 'string') return false
|
||||||
@ -23,7 +72,7 @@ export const chkObject = function (key = '', type = '', empty = false) {
|
|||||||
if (!empty && !uuidChk.test(this.body[key])) return false
|
if (!empty && !uuidChk.test(this.body[key])) return false
|
||||||
break
|
break
|
||||||
case 'object':
|
case 'object':
|
||||||
if (typeof this.body[key] !== 'object') return false
|
if (typeof this.body[key] !== 'object' || this.body[key] === null || this.body[key] === undefined) return false
|
||||||
try {
|
try {
|
||||||
let str = JSON.stringify(this.body[key])
|
let str = JSON.stringify(this.body[key])
|
||||||
JSON.parse(str)
|
JSON.parse(str)
|
||||||
@ -37,23 +86,3 @@ export const chkObject = function (key = '', type = '', empty = false) {
|
|||||||
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* parse number
|
|
||||||
* @param {any} v input number
|
|
||||||
* @param {number} def default number
|
|
||||||
* @param {number} min min number
|
|
||||||
* @param {number} max max number
|
|
||||||
* @return {number}
|
|
||||||
*/
|
|
||||||
export const toInt = (v, def = 0, min = null, max = null) => {
|
|
||||||
if (!isFinite(def)) def = 0
|
|
||||||
if (typeof def === 'string') def = parseInt(def)
|
|
||||||
min = isFinite(min) ? (typeof min === 'string' ? parseInt(min) : min) : null
|
|
||||||
max = isFinite(max) ? (typeof max === 'string' ? parseInt(max) : max) : null
|
|
||||||
if (!isFinite(v)) return def
|
|
||||||
if (typeof v === 'string') v = parseInt(v)
|
|
||||||
if (min !== null && v < min) v = min
|
|
||||||
if (max !== null && v > max) v = max
|
|
||||||
return v
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user