Merge pull request #1 from BraydonKains/braydon-dev
Merging everything to master for hostingpull/2/head
commit
25095fd234
Binary file not shown.
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Resources;
|
||||
|
||||
use Illuminate\Http\Resources\Json\ResourceCollection;
|
||||
|
||||
class PostCollection extends ResourceCollection
|
||||
{
|
||||
/**
|
||||
* Transform the resource collection into an array.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @return array
|
||||
*/
|
||||
public function toArray($request)
|
||||
{
|
||||
return [
|
||||
'data' => $this->collection
|
||||
];
|
||||
}
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Resources;
|
||||
|
||||
use Illuminate\Http\Resources\Json\ResourceCollection;
|
||||
|
||||
class TagCollection extends ResourceCollection
|
||||
{
|
||||
/**
|
||||
* Transform the resource collection into an array.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @return array
|
||||
*/
|
||||
public function toArray($request)
|
||||
{
|
||||
return [
|
||||
"data" => $this->$collection
|
||||
];
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,7 @@
|
||||
Team Members:
|
||||
Braydon Kains
|
||||
|
||||
I declare that all work is done by me, Braydon Kains.
|
||||
|
||||
Link to project: http://134.209.48.143
|
||||
Github repo: https://github.com/BraydonKains/GameGab
|
@ -0,0 +1,51 @@
|
||||
<template>
|
||||
<form @submit.prevent="addPost" class="mb-3">
|
||||
<h3>
|
||||
Write Post
|
||||
</h3>
|
||||
<div class="form-group">
|
||||
<textarea type="text" class="form-control" placeholder="Add to your post..." v-model="content"></textarea>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<gif-select></gif-select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" class="btn btn-primary">Add</button>
|
||||
</div>
|
||||
</form>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: ['user_id', 'thread_id'],
|
||||
|
||||
data() {
|
||||
return {
|
||||
content: '',
|
||||
edit: true
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
addPost() {
|
||||
fetch("../api/post/store", {
|
||||
method: "post",
|
||||
credentials: "same-origin",
|
||||
headers: {
|
||||
"Content-Type": "application/json"
|
||||
},
|
||||
body: JSON.stringify({
|
||||
"content": this.content,
|
||||
"thread_id": this.thread_id,
|
||||
"user_id": this.user_id
|
||||
})
|
||||
})
|
||||
.then(res => {
|
||||
this.content = '';
|
||||
this.$emit("submitted");
|
||||
})
|
||||
.catch(err => console.log(err));
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
@ -0,0 +1,48 @@
|
||||
<template>
|
||||
<form @submit.prevent="createThread" class="mb-3">
|
||||
<h3>
|
||||
Create Thread
|
||||
</h3>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" placeholder="Title" v-model="thread_title">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" class="btn btn-primary">Create Thread</button>
|
||||
</div>
|
||||
</form>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: ['user_id'],
|
||||
|
||||
data() {
|
||||
return {
|
||||
thread_title: '',
|
||||
edit: true
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
createThread() {
|
||||
fetch("api/thread/store", {
|
||||
method: "post",
|
||||
credentials: "same-origin",
|
||||
headers: {
|
||||
"Content-Type": "application/json"
|
||||
},
|
||||
body: JSON.stringify({
|
||||
"thread_title": this.thread_title,
|
||||
"user_id": this.user_id
|
||||
})
|
||||
})
|
||||
.then(res => {
|
||||
console.log(res);
|
||||
this.thread_title = '';
|
||||
this.$emit("submitted");
|
||||
})
|
||||
.catch(err => console.log(err));
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
@ -1,23 +0,0 @@
|
||||
<template>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8">
|
||||
<div class="card">
|
||||
<div class="card-header">Example Component</div>
|
||||
|
||||
<div class="card-body">
|
||||
I'm an example component.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
mounted() {
|
||||
console.log('Component mounted.')
|
||||
}
|
||||
}
|
||||
</script>
|
@ -0,0 +1,63 @@
|
||||
<style>
|
||||
.gif-container {
|
||||
margin-top: 30px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
<template>
|
||||
<div>
|
||||
<input type="text" v-model="search">
|
||||
<div >
|
||||
<img v-for="gif in gifs" :src="gif" :key="gif.id">
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
search: '',
|
||||
gifs: [],
|
||||
gif: {
|
||||
id: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
buildGifs(json) {
|
||||
this.gifs = json.data
|
||||
.map(gif => gif.id)
|
||||
.map(gifId => {
|
||||
return `https://media.giphy.com/media/${gifId}/giphy.gif`;
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
watch: {
|
||||
search: function() {
|
||||
let apiKey = "nYQNPpAixuVqNPSYjOdhQAAS4oP1Q9rS";
|
||||
let searchEndPoint = "https://api.giphy.com/v1/gifs/search?";
|
||||
let limit = 5;
|
||||
|
||||
let url = `${searchEndPoint}&api_key=${apiKey}&q=${
|
||||
this.search
|
||||
}&limit=${limit}`;
|
||||
|
||||
fetch(url)
|
||||
.then(response => {
|
||||
return response.json();
|
||||
})
|
||||
.then(json => {
|
||||
this.buildGifs(json);
|
||||
})
|
||||
.catch(err => {
|
||||
console.log(err);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
@ -0,0 +1,35 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="card card-body" v-for="tag in tags" v-bind:key="tag.id">
|
||||
<p>{{ tag.tag_text }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
tags: [],
|
||||
tag: {
|
||||
id: '',
|
||||
tag_text: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
created() {
|
||||
this.fetchTags();
|
||||
},
|
||||
|
||||
methods: {
|
||||
fetchTags() {
|
||||
fetch("api/tags")
|
||||
.then(res => res.json())
|
||||
.then(res => {
|
||||
this.tags = res.data;
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
@ -0,0 +1,80 @@
|
||||
<template>
|
||||
<div>
|
||||
<h2>{{ thread_title }}</h2>
|
||||
<h3 v-if="creator != null">By {{ creator.name }}</h3>
|
||||
<h3 v-else>By [deleted]</h3>
|
||||
<div class="card card-body" v-for="post in posts" v-bind:key="post.id">
|
||||
<p v-if="post.poster != null">{{ post.poster.name }}</p>
|
||||
<p v-else>[deleted]</p>
|
||||
<p>{{ post.content }}</p>
|
||||
<button v-if="deleteCheck(post)" v-on:click="destroyPost(post.id)" class="btn btn-danger">Delete</button>
|
||||
</div>
|
||||
<div style="padding: 10px">
|
||||
<post-create
|
||||
v-if="this.with === 'true'"
|
||||
:user_id="user_id"
|
||||
:thread_id="thread_id"
|
||||
@submitted="fetchThread">
|
||||
</post-create>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: ['user_id', 'thread_id', 'with'],
|
||||
|
||||
data() {
|
||||
return {
|
||||
id: '',
|
||||
thread_title: '',
|
||||
creator: {
|
||||
name: ''
|
||||
},
|
||||
posts: [],
|
||||
post: {
|
||||
id: '',
|
||||
content: '',
|
||||
poster: {
|
||||
id: '',
|
||||
name: ''
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
created() {
|
||||
this.fetchThread();
|
||||
},
|
||||
|
||||
methods: {
|
||||
fetchThread() {
|
||||
fetch("../api/thread/" + this.thread_id)
|
||||
.then(res => res.json())
|
||||
.then(res => {
|
||||
this.id = res.id;
|
||||
this.thread_title = res.thread_title;
|
||||
this.creator = res.creator;
|
||||
})
|
||||
.catch(err => console.log(err));
|
||||
|
||||
fetch("../api/post/thread/" + this.thread_id)
|
||||
.then(res => res.json())
|
||||
.then(res => {
|
||||
this.posts = res.data;
|
||||
})
|
||||
.catch(err => console.log(err));;
|
||||
},
|
||||
deleteCheck(post) {
|
||||
return post.poster != null && this.user_id == post.poster.id;
|
||||
},
|
||||
destroyPost(post_id) {
|
||||
fetch("../api/post/destroy/" + post_id)
|
||||
//.then(res => res.json())
|
||||
.then(res => {
|
||||
this.fetchThread();
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
@ -0,0 +1,9 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="app">
|
||||
<div class="container">
|
||||
<create-thread-form user_id="<?php ?>">
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
@ -1,9 +0,0 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div id="app">
|
||||
<div class="container">
|
||||
<thread-component></thread-component>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
@ -0,0 +1,13 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="app">
|
||||
<div class="container">
|
||||
@guest
|
||||
<thread-view thread_id="<?php echo $thread_id; ?>" with="false">
|
||||
@else
|
||||
<thread-view user_id="{{ Auth::user()->id }}" thread_id="<?php echo $thread_id; ?>" with="true">
|
||||
@endguest
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
@ -0,0 +1,15 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div id="app">
|
||||
<div class="container">
|
||||
<div>
|
||||
@guest
|
||||
<thread-collection with=false></thread-collection>
|
||||
@else
|
||||
<thread-collection user_id="{{ Auth::user()->id }}" with=true></thread-collection>
|
||||
@endguest
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue