Welcome to mirror list, hosted at ThFree Co, Russian Federation.

debug.vue « pages « Website - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17125d515a37a0675f63ad7637ead7c88115b5e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<template>
  <div>
    <div id="extension-version" />

    <v-stepper :value="progress" class="mt-12" outlined max-width="800px">
      <v-stepper-header>
        <v-stepper-step step="1" :complete="steps.one">Setup</v-stepper-step>
        <v-divider />
        <v-stepper-step step="2" :complete="steps.two">Extension Status</v-stepper-step>
        <v-divider />
        <v-stepper-step step="3" :complete="steps.three">Server Connection</v-stepper-step>
        <v-divider />
        <v-stepper-step step="4" :complete="steps.four">Browser Support</v-stepper-step>
        <v-divider />
        <v-stepper-step step="5" :complete="steps.five">Report</v-stepper-step>
      </v-stepper-header>

      <v-stepper-content step="1">
        <h1>Getting Ready...</h1>
        <v-progress-circular indeterminate size="50" width="5" color="primary" />
      </v-stepper-content>

      <v-stepper-content step="2">
        <h1>Ensuring the Extension is Running...</h1>
        <v-progress-circular indeterminate size="50" width="5" color="primary" />
      </v-stepper-content>

      <v-stepper-content step="3">
        <h1>Testing Server Connection...</h1>
        <v-progress-circular indeterminate size="50" width="5" color="primary" />
      </v-stepper-content>

      <v-stepper-content step="4">
        <h1>Checking Browser Information...</h1>
        <v-progress-circular indeterminate size="50" width="5" color="primary" />
      </v-stepper-content>

      <v-stepper-content step="5" style="text-align:left">
        <div class="reportHeader">
          <h1>Browser</h1>
          <v-divider style="transform: translateY(1.5em)" />
        </div>
        <v-alert dense outlined v-text="notices.browser.text" :type="notices.browser.type" />
        <span><b>BROWSER-</b> {{ userInformation.browser.name }}</span><br>
        <span><b>VENDOR-</b> {{ userInformation.browser.vendor }} </span><br>
        <span><b>VERSION-</b> {{ userInformation.browser.version }}</span><br>

        <div class="reportHeader">
          <h1>System</h1>
          <v-divider style="transform: translateY(1.5em)" />
        </div>
        <v-alert dense outlined v-text="notices.system.text" :type="notices.system.type" />
        <span><b>OS-</b> {{ userInformation.system.os }}</span><br>
        <span><b>VERSION-</b> {{ userInformation.system.version }} </span><br>
        <span><b>TYPE-</b> {{ userInformation.system.type }}</span><br>

        <div class="reportHeader">
          <h1>Extension</h1>
          <v-divider style="transform: translateY(1.5em)" />
        </div>
        <v-alert dense outlined v-text="notices.extension.text" :type="notices.extension.type" />
        <span><b>RUNNING-</b> {{ userInformation.extension.running ? "Yes" : "Failed to connect"}}</span><br>
        <span><b>VERSION-</b> {{ userInformation.extension.version || "Failed to connect"}} </span><br>
        <span><b>SERVER CONNECTION-</b>{{ userInformation.extension.serverConnection ? "Working" : "Failed to connect" }}</span><br>
      </v-stepper-content>

    </v-stepper>
  </div>
</template>

<style scoped>
  .reportHeader {
    display: flex;
    margin-top: 1em;
  }

</style>

<script>
  export default {
    data() {
      return {
        stepTime: 1000,
        supportedBrowsers: ["Firefox", "Chrome", "Brave", "Edge", "Opera"],

        progress: 1,
        steps: {
          one: false,
          two: false,
          three: false,
          four: false,
          five: false,
        },

        userInformation: {
          browser: {
            name: this.$ua._parsed.name,
            vendor: this.$ua._parsed.vendor,
            version: this.$ua._parsed.version
          },
          system: {
            os: this.$ua._parsed.os,
            version: this.$ua._parsed.os_version,
            type: this.$ua._parsed.category
          },
          extension: {
            running: null,
            version: null,
            serverConnection: null,
            latestExtensionVersion: null,
          },
        },

        notices: {
          system: {
            text: null,
            type: null
          },
          browser: {
            text: null,
            type: null
          },
          extension: {
            text: null,
            type: null
          }
        }

      }
    },

    mounted() {
      //---   Wait   ---//
      setTimeout(() => {

        this.$axios.$get('https://raw.githubusercontent.com/Anarios/return-youtube-dislike/main/Extensions/combined/manifest-chrome.json')
        .then(res => {
          console.log(res)
        })


        this.progress++;
        this.steps.one = true;
      }, this.stepTime);

      //---   Check If Extension Is Running   ---//
      setTimeout(() => {
        this.progress++;
        this.steps.two = true;
      }, this.stepTime * 2);

      //---   Check Server Connection ---//
      setTimeout(() => {
        this.$axios.$get('https://returnyoutubedislikeapi.com/votes?videoId=QOFEgexls14')
          .then(res => {
            this.userInformation.extension.serverConnection = true;
          })
          .catch(err => {
            this.userInformation.extension.serverConnection = false;
          })


        this.progress++;
        this.steps.three = true;
      }, this.stepTime * 3);

      setTimeout(() => {
        this.progress++;
        this.steps.four = true;
        //this.steps.five = true;




        //---   Parse Extension Data   ---//
        this.notices.extension.text = `Everything is running normally!`;
        this.notices.extension.type = "success";

        if (this.userInformation.extension.running != true) {
          this.notices.extension.text = `The extension doesn't appear to be running!`;
          this.notices.extension.type = "error";
        }

        if (this.userInformation.extension.serverConnection != true) {
          this.notices.extension.text = `Failed to connect to the server!`;
          this.notices.extension.type = "error";
        }



        //---   Parse System Compatibility   ---//
        this.notices.system.text = `${this.userInformation.system.os} is supported!`;
        this.notices.system.type = "success";

        if (this.userInformation.system.type != "pc") {
          this.notices.system.text = `"${this.userInformation.system.type}" may not be a supported device type!`;
          this.notices.system.type = "warning";
        }



        //---   Parse Browser Compatibility   ---//
        this.notices.browser.text = `${this.userInformation.browser.name} ${this.userInformation.browser.version} is supported!`;
        this.notices.browser.type = "success";

        if (!this.supportedBrowsers.includes(this.userInformation.browser.name)) {
          this.notices.browser.text = `${this.userInformation.browser.name} is not a supported browser! You may continue to use the extension, but we don't provide official support.`;
          this.notices.browser.type = "warning";
        }





      }, this.stepTime * 4);




    }

  }

</script>