# plugin-detective/1.1.4/troubleshoot/app/src/components/Hello.vue

Plugin Detective – Troubleshooting Conflicts, version 1.1.4. 109 lines.

- Page: https://pluginprobe.com/plugins/plugin-detective/1.1.4/code/troubleshoot/app/src/components/Hello.vue
- Raw: https://pluginprobe.com/plugins/plugin-detective/1.1.4/raw/troubleshoot/app/src/components/Hello.vue
- Modified: 2018-07-31T23:41:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/plugin-detective/1.1.4/code/troubleshoot/app/src/components/Hello.vue#L10-L20`.

```vue
<template>
  <div class="hello">
    <transition appear name="fade">
      <loading :text="translations.loading.checking" v-if="loading"></loading>
      <div v-else>
        <bubble key="bubble">
          <p v-if="activeCase && activeCase.status === 'open'">{{translations.case.activeCase}}</p>
          <p v-else>{{translations.case.newCase}}</p>
        </bubble>
        <div key="otto">
          <img :src="updatedApi.static_url + '/robot-full.svg'" alt="Otto the Robot">
        </div>
        <md-button v-if="activeCase && activeCase.status === 'open'" class="md-raised md-primary" @click="continueCase" key="continueButton">{{translations.case.continueButton}}</md-button>
        <md-button class="md-raised md-primary" key="newButton" @click="startNew">{{translations.case.newButton}}</md-button>
      </div>
    </transition>
  </div>
</template>

<script>
import store from '@/store'
import { mapState, mapActions, mapMutations, mapGetters } from 'vuex'
import Bubble from './Bubble'
import Loading from './Loading'

export default {
  name: 'hello',
  components: { Bubble, Loading },
  store,
  data () {
    return {
      loading: true
    }
  },
  mounted () {
    this.loading = true
    this.getActiveCase()
      .then(() => {
        this.loading = false
        this.checkUrl()
      })
  },
  computed: {
    ...mapState([
      'api',
      'activeCase',
      'router',
      'requestProtocol',
      'translations'
    ]),
    ...mapGetters([
      'updatedApi'
    ])
  },
  methods: {
    checkUrl () {
      let params = new URLSearchParams(window.location.search)
      let setUrl = params.get('url')
      if (setUrl) {
        let url = document.createElement('a')
        url.setAttribute('href', setUrl)
        if (url.protocol !== this.requestProtocol) {
          setUrl.replace(url.protocol, this.requestProtocol)
        }
      }
      this.defineCaseUrl(setUrl || this.updatedApi.site_url)
    },
    startNew () {
      this.loading = true
      if (this.activeCase && this.activeCase.status === 'open') {
        this.closeCase()
          .then(() => {
            this.openCase()
              .then(() => {
                this.router.push('/find-the-problem')
              })
          })
      } else {
        this.loading = true
        this.openCase()
          .then(() => {
            this.checkUrl()
            this.updateCase()
              .then(() => {
                this.router.push('/find-the-problem')
              })
          })
      }
    },
    continueCase () {
      if (this.activeCase.clues.length) {
        this.router.push('/interrogating')
      } else {
        this.router.push('/find-the-problem')
      }
    },
    ...mapActions([
      'getActiveCase',
      'openCase',
      'closeCase',
      'updateCase'
    ]),
    ...mapMutations([
      'defineCaseUrl'
    ])
  }
}
</script>

```
