Move src to dashboard (#152)

This commit is contained in:
Pranav Raj S 2019-10-16 14:36:17 +05:30 committed by GitHub
parent 012a2743f2
commit 2783fb6006
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
187 changed files with 29 additions and 29 deletions

View file

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View file

Before

Width:  |  Height:  |  Size: 130 B

After

Width:  |  Height:  |  Size: 130 B

View file

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View file

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View file

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View file

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

Before

Width:  |  Height:  |  Size: 8.6 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

View file

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View file

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View file

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -169,7 +169,7 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
@import '~assets/scss/variables'; @import '~dashboard/assets/scss/variables';
.spinner { .spinner {
margin-top: $space-normal; margin-top: $space-normal;
margin-bottom: $space-normal; margin-bottom: $space-normal;

View file

@ -2,7 +2,7 @@
<aside class="sidebar animated shrink columns"> <aside class="sidebar animated shrink columns">
<div class="logo"> <div class="logo">
<router-link :to="dashboardPath" replace> <router-link :to="dashboardPath" replace>
<img src="~assets/images/woot-logo.svg" alt="Woot-logo" /> <img src="~dashboard/assets/images/woot-logo.svg" alt="Woot-logo" />
</router-link> </router-link>
</div> </div>

View file

@ -1,9 +1,9 @@
<template> <template>
<div class="small-3 columns channel" :class="{ inactive: channel !== 'facebook' }" @click.capture="itemClick"> <div class="small-3 columns channel" :class="{ inactive: channel !== 'facebook' }" @click.capture="itemClick">
<img src="~assets/images/channels/facebook.png" v-if="channel === 'facebook'"> <img src="~dashboard/assets/images/channels/facebook.png" v-if="channel === 'facebook'">
<img src="~assets/images/channels/twitter.png" v-if="channel === 'twitter'"> <img src="~dashboard/assets/images/channels/twitter.png" v-if="channel === 'twitter'">
<img src="~assets/images/channels/telegram.png" v-if="channel === 'telegram'"> <img src="~dashboard/assets/images/channels/telegram.png" v-if="channel === 'telegram'">
<img src="~assets/images/channels/line.png" v-if="channel === 'line'"> <img src="~dashboard/assets/images/channels/line.png" v-if="channel === 'line'">
<h3 class="channel__title">{{channel}}</h3> <h3 class="channel__title">{{channel}}</h3>
<!-- <p>This is the most sexiest integration to begin </p> --> <!-- <p>This is the most sexiest integration to begin </p> -->
</div> </div>

View file

@ -1,6 +1,6 @@
<template> <template>
<div class="inbox-item" > <div class="inbox-item" >
<img src="~assets/images/no_page_image.png" alt="No Page Image"/> <img src="~dashboard/assets/images/no_page_image.png" alt="No Page Image"/>
<div class="item--details columns"> <div class="item--details columns">
<h4 class="item--name">{{ inbox.label }}</h4> <h4 class="item--name">{{ inbox.label }}</h4>
<p class="item--sub">Facebook</p> <p class="item--sub">Facebook</p>

View file

@ -1,7 +1,7 @@
<template> <template>
<div class="user-thumbnail-box" v-bind:style="{ height: size, width: size }"> <div class="user-thumbnail-box" v-bind:style="{ height: size, width: size }">
<img v-bind:src="src" class="user-thumbnail"> <img v-bind:src="src" class="user-thumbnail">
<img class="source-badge" src="~assets/images/fb-badge.png" v-if="badge === 'Facebook'"> <img class="source-badge" src="~dashboard/assets/images/fb-badge.png" v-if="badge === 'Facebook'">
</div> </div>
</template> </template>
<script> <script>

View file

@ -42,7 +42,7 @@
<div v-if="!fetchingInboxes && !loadingChatList" class="current-chat"> <div v-if="!fetchingInboxes && !loadingChatList" class="current-chat">
<!-- No inboxes attached --> <!-- No inboxes attached -->
<div v-if="!inboxesList.length"> <div v-if="!inboxesList.length">
<img src="~assets/images/inboxes.svg" alt="No Inboxes" /> <img src="~dashboard/assets/images/inboxes.svg" alt="No Inboxes" />
<span v-if="isAdmin()"> <span v-if="isAdmin()">
{{ $t('CONVERSATION.NO_INBOX_1') }} {{ $t('CONVERSATION.NO_INBOX_1') }}
<br /> <br />
@ -57,7 +57,7 @@
</div> </div>
<!-- No conversations available --> <!-- No conversations available -->
<div v-else-if="!allConversations.length"> <div v-else-if="!allConversations.length">
<img src="~assets/images/chat.svg" alt="No Chat" /> <img src="~dashboard/assets/images/chat.svg" alt="No Chat" />
<span> <span>
{{ $t('CONVERSATION.NO_MESSAGE_1') }} {{ $t('CONVERSATION.NO_MESSAGE_1') }}
<br /> <br />
@ -69,7 +69,7 @@
</div> </div>
<!-- No conversation selected --> <!-- No conversation selected -->
<div v-else-if="allConversations.length && currentChat.id === null"> <div v-else-if="allConversations.length && currentChat.id === null">
<img src="~assets/images/chat.svg" alt="No Chat" /> <img src="~dashboard/assets/images/chat.svg" alt="No Chat" />
<span>{{ $t('CONVERSATION.404') }}</span> <span>{{ $t('CONVERSATION.404') }}</span>
</div> </div>
</div> </div>

Some files were not shown because too many files have changed in this diff Show more