文脈を追加
This commit is contained in:
parent
4bc181a924
commit
668a8ac5bd
3 changed files with 79 additions and 25 deletions
|
@ -1,5 +1,8 @@
|
||||||
# chat-app
|
# chat-app
|
||||||
RailsとVueで作成された簡素なチャットアプリ
|
Rails、Action cable、Vueで構成された簡素なリアルタイムチャット。
|
||||||
|
|
||||||
ぶえぶえ体操いくぶえよ~! (∩ ๑•﹏•๑`)ぶえ〜っwwwぶえぶえぶえええ〜っwww (∩ ๑•﹏•๑`⊃)ぷぇっ~///ぷぇっ~/// (⊂ ๑•﹏•๑`∩) ぶえええええーーーっ!!
|
# 文脈
|
||||||
(∩ ๑•﹏•๑`∩)ぶえぶえーっ!!
|
[Entering](https://riq0h.jp/2023/04/30/232125/)で主人公が作っていたチャットサービスをモダンな技術で再現した。
|
||||||
|
|
||||||
|
# LICENSE
|
||||||
|
MIT
|
||||||
|
|
|
@ -1,23 +1,50 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div style="background-color: lightcyan; padding: 20px">
|
||||||
<h1>チャットルーム {{ this.roomId }}</h1>
|
<h1 style="color: navy; font-family: Arial, sans-serif">チャットルーム {{ this.roomId }}</h1>
|
||||||
|
|
||||||
<ul>
|
<ul style="list-style-type: none; padding: 0">
|
||||||
<li v-for="message in messages" :key="message.id">
|
<li
|
||||||
<strong>{{ message.sender_name }}:</strong> {{ message.content }}
|
v-for="message in messages"
|
||||||
|
:key="message.id"
|
||||||
|
style="background-color: lightgray; padding: 10px; margin-bottom: 10px"
|
||||||
|
>
|
||||||
|
<strong style="color: navy">{{ message.sender_name }}:</strong> {{ message.content }}
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<form @submit.prevent="sendMessage">
|
<form @submit.prevent="sendMessage" style="background-color: lightgray; padding: 20px">
|
||||||
<div>
|
<div>
|
||||||
<h3>名前</h3>
|
<h3 style="color: navy">名前</h3>
|
||||||
<input type="text" v-model="senderName" placeholder="名前を入力" required />
|
<input
|
||||||
|
type="text"
|
||||||
|
v-model="senderName"
|
||||||
|
placeholder="名前を入力"
|
||||||
|
required
|
||||||
|
style="width: 100%; padding: 5px; border: 1px solid gray"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<h3>メッセージ</h3>
|
<h3 style="color: navy">メッセージ</h3>
|
||||||
<input type="text" v-model="newMessageContent" placeholder="メッセージを入力" required />
|
<input
|
||||||
|
type="text"
|
||||||
|
v-model="newMessageContent"
|
||||||
|
placeholder="メッセージを入力"
|
||||||
|
required
|
||||||
|
style="width: 100%; padding: 5px; border: 1px solid gray"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div style="text-align: center; margin-top: 10px">
|
||||||
<button type="submit">送信</button>
|
<button
|
||||||
|
type="submit"
|
||||||
|
style="
|
||||||
|
background-color: lightgray;
|
||||||
|
color: navy;
|
||||||
|
padding: 5px 10px;
|
||||||
|
border: 1px solid navy;
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
送信
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,19 +1,43 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div style="background-color: lightcyan; padding: 20px">
|
||||||
<h1>VueChat - チャットルーム一覧</h1>
|
<h1 style="color: navy; font-family: Arial, sans-serif">VueChat - チャットルーム一覧</h1>
|
||||||
<ul>
|
<ul style="list-style-type: none; padding: 0">
|
||||||
<li v-for="room in chatRooms" :key="room.id">
|
<li v-for="room in chatRooms" :key="room.id" style="margin-bottom: 10px">
|
||||||
<router-link :to="`/rooms/${room.id}`">{{ room.name }}</router-link>
|
<router-link
|
||||||
|
:to="`/rooms/${room.id}`"
|
||||||
|
style="
|
||||||
|
text-decoration: none;
|
||||||
|
color: navy;
|
||||||
|
background-color: lightgray;
|
||||||
|
padding: 5px 10px;
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
"
|
||||||
|
>{{ room.name }}</router-link
|
||||||
|
>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3>チャットルーム作成</h3>
|
<h3 style="color: navy; font-family: Arial, sans-serif">チャットルーム作成</h3>
|
||||||
<input type="text" v-model="newRoomName" />
|
<input
|
||||||
<div>
|
type="text"
|
||||||
<button @click="createRoom">作成</button>
|
v-model="newRoomName"
|
||||||
|
style="padding: 5px; font-family: 'Courier New', monospace"
|
||||||
|
/>
|
||||||
|
<div style="margin-top: 10px">
|
||||||
|
<button
|
||||||
|
@click="createRoom"
|
||||||
|
style="
|
||||||
|
background-color: lightgray;
|
||||||
|
color: navy;
|
||||||
|
padding: 5px 10px;
|
||||||
|
border: 1px solid navy;
|
||||||
|
font-family: 'Courier New', monospace;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
作成
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue