| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 | <template>	<div class='modal is-active'>		<div class='modal-background'></div>		<div class='modal-card'>			<header class='modal-card-head'>				<p class='modal-card-title'>Report</p>				<button class='delete' @click='$parent.modals.report = !$parent.modals.report'></button>			</header>			<section class='modal-card-body'>				<div class='columns song-types'>					<div class='column song-type' v-if='$parent.previousSong !== null'>						<div class='card is-fullwidth' :class="{ 'is-highlight-active': isPreviousSongActive }" @click="highlight('previousSong')">							<header class='card-header'>								<p class='card-header-title'>									Previous Song								</p>							</header>							<div class='card-content'>								<article class='media'>									<figure class='media-left'>										<p class='image is-64x64'>											<img :src='$parent.previousSong.thumbnail' onerror='this.src="/assets/notes-transparent.png"'>										</p>									</figure>									<div class='media-content'>										<div class='content'>											<p>												<strong>{{ $parent.previousSong.title }}</strong>												<br>												<small>{{ $parent.previousSong.artists.split(' ,') }}</small>											</p>										</div>									</div>								</article>							</div>						</div>					</div>					<div class='column song-type' v-if='$parent.currentSong !== {}'>						<div class='card is-fullwidth'  :class="{ 'is-highlight-active': isCurrentSongActive }" @click="highlight('currentSong')">							<header class='card-header'>								<p class='card-header-title'>									Current Song								</p>							</header>							<div class='card-content'>								<article class='media'>									<figure class='media-left'>										<p class='image is-64x64'>											<img :src='$parent.currentSong.thumbnail' onerror='this.src="/assets/notes-transparent.png"'>										</p>									</figure>									<div class='media-content'>										<div class='content'>											<p>												<strong>{{ $parent.currentSong.title }}</strong>												<br>												<small>{{ $parent.currentSong.artists.split(' ,') }}</small>											</p>										</div>									</div>								</article>							</div>						</div>					</div>				</div>				<div class='edit-report-wrapper'>					<div class='columns is-multiline'>						<div class='column is-half' v-for='issue in issues'>							<label class='label'>{{ issue.name }}</label>							<p class='control' v-for='reason in issue.reasons' track-by='$index'>								<label class='checkbox'>									<input type='checkbox' @click='toggleIssue(issue.name, reason)'>									{{ reason }}								</label>							</p>						</div>						<div class='column'>							<label class='label'>Other</label>							<textarea class='textarea' maxlength='400' placeholder='Any other details...' @keyup='updateCharactersRemaining()' v-model='report.description'></textarea>							<div class='textarea-counter'>{{ charactersRemaining }}</div>						</div>					</div>				</div>			</section>			<footer class='modal-card-foot'>				<a class='button is-success' @click='create()'>					<i class='material-icons save-changes'>done</i>					<span> Create</span>				</a>				<a class='button is-danger' @click='$parent.modals.report = !$parent.modals.report'>					<span> Cancel</span>				</a>			</footer>		</div>	</div></template><script>	import { Toast } from 'vue-roaster';	import io from '../../io';	export default {		data() {			return {				charactersRemaining: 400,				isPreviousSongActive: false,				isCurrentSongActive: true,				report: {					resolved: false,					songId: this.$parent.currentSong._id,					description: '',					issues: [						{ name: 'Video', reasons: [] },						{ name: 'Title', reasons: [] },						{ name: 'Duration', reasons: [] },						{ name: 'Artists', reasons: [] },						{ name: 'Thumbnail', reasons: [] }					]				},				issues: [					{						name: 'Video',						reasons: [							'Doesn\'t exist',							'It\'s private',							'It\'s not available in my country'						]					},					{						name: 'Title',						reasons: [							'Incorrect',							'Inappropriate'						]					},					{						name: 'Duration',						reasons: [							'Skips too soon',							'Skips too late',							'Starts too soon',							'Skips too late'						]					},					{						name: 'Artists',						reasons: [							'Incorrect',							'Inappropriate'						]					},					{						name: 'Thumbnail',						reasons: [							'Incorrect',							'Inappropriate',							'Doesn\'t exist'						]					}				]			}		},		methods: {			create: function () {				let _this = this;				_this.socket.emit('reports.create', _this.report, res => {					Toast.methods.addToast(res.message, 4000);					if (res.status == 'success') _this.$parent.modals.report = !_this.$parent.modals.report;				});			},			updateCharactersRemaining: function () {				this.charactersRemaining = 400 - $('.textarea').val().length;			},			highlight: function (type) {				if (type == 'currentSong') {					this.report.songId = this.$parent.currentSong._id;					this.isPreviousSongActive = false;					this.isCurrentSongActive = true;				} else if (type == 'previousSong') {					this.report.songId = this.$parent.previousSong._id;					this.isCurrentSongActive = false;					this.isPreviousSongActive = true;				}			},			toggleIssue: function (name, reason) {				for (let z = 0; z < this.report.issues.length; z++) {					if (this.report.issues[z].name == name) {						if (this.report.issues[z].reasons.indexOf(reason) > -1) {							this.report.issues[z].reasons.splice(								this.report.issues[z].reasons.indexOf(reason), 1							);						} else this.report.issues[z].reasons.push(reason);					}				}			}		},		events: {			closeModal: function () {				this.$parent.toggleModal('report');			}		},		ready: function () {			let _this = this;			io.getSocket((socket) => {				_this.socket = socket;			});		},	}</script><style type='scss' scoped>	h6 { margin-bottom: 15px; }	.song-types {		margin-right: 0;	}	.song-type:first-of-type {		padding-left: 0;	}	.media-content {		display: flex;		align-items: center;		height: 64px;	}	.radio-controls .control {		display: flex;		align-items: center;	}	.textarea-counter {		text-align: right;	}	@media screen and (min-width: 769px) {		.radio-controls .control-label { padding-top: 0 !important; }	}	.edit-report-wrapper {		padding: 20px;	}	.is-highlight-active {		border: 3px #03a9f4 solid;	}</style>
 |