<template>
  <div>
    <h1>Nuxt Chat</h1>
    <TransitionGroup name="list" tag="ul">
      <li v-for="(message, index) in messages" :key="index">
        <Component :is="message.component" :data="message.data" />
      </li>
    </TransitionGroup>
  </div>
</template>

<script>
import { messages } from '@/js/messages.js'

// Dynamic components
const components = {
  vText: () => import('@/components/text.vue' /* webpackChunkName: "components/text" */),
  vImage: () => import('@/components/image.vue' /* webpackChunkName: "components/image" */),
  vCode: () => import('@/components/code.vue' /* webpackChunkName: "components/code" */),
  vChart: () => import('@/components/chart.js' /* webpackChunkName: "components/chart" */)
}

export default {
  components,
  data: () => ({
    messages
  })
}
</script>

<style scoped>
h1 {
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
  with: 100%;
  max-width: 300px;
  margin: auto;
}

ul li {
  display: block;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 5px;
  font-family: Helvetica, Arial, sans-serif;
  background: white;
  border: 1px #ddd solid;
  overflow: hidden;
  opacity: 1;
}
.list-enter-active, .list-leave-active {
  transition: all 0.4s;
}
.list-enter, .list-leave-to {
  opacity: 0;
  transform: translateY(20px);
}
</style>