Jelajahi Sumber

Removed google analytics

Pitu 6 tahun lalu
induk
melakukan
789f5fc259

+ 0 - 1
nuxt.config.js

@@ -32,7 +32,6 @@ export default {
 		'~/plugins/vue-axios',
 		'~/plugins/buefy',
 		'~/plugins/v-clipboard',
-		'~/plugins/vue-analytics',
 		'~/plugins/vue-isyourpasswordsafe',
 		'~/plugins/vue-timeago'
 	],

+ 0 - 1
package.json

@@ -64,7 +64,6 @@
 		"sharp": "^0.21.3",
 		"sqlite3": "^4.0.6",
 		"v-clipboard": "^2.2.1",
-		"vue-analytics": "^5.16.2",
 		"vue-axios": "^2.1.4",
 		"vue-isyourpasswordsafe": "^1.0.2",
 		"vue-plyr": "^5.1.0",

+ 1 - 1
src/api/routes/albums/link/linkEditPOST.js

@@ -25,7 +25,7 @@ class linkEditPOST extends Route {
 					enableDownload: enableDownload || false,
 					expiresAt // This one should be null if not supplied
 				});
-			return res.json({ message: 'Editing the link was successfully' });
+			return res.json({ message: 'Editing the link was successfull' });
 		} catch (error) {
 			log.error(error);
 			return res.json({ message: 'There was a problem editing the link' });

+ 1 - 8
src/site/layouts/error.vue

@@ -23,13 +23,6 @@
 import Navbar from '~/components/navbar/Navbar.vue';
 
 export default {
-	components: { Navbar },
-	mounted() {
-		this.$ga.page({
-			page: '/404',
-			title: 'Not Found',
-			location: window.location.href
-		});
-	}
+	components: { Navbar }
 };
 </script>

+ 0 - 5
src/site/pages/a/_identifier.vue

@@ -130,11 +130,6 @@ export default {
 			this.$toast.open(`Error code ${this.error}`, true, 3000);
 		}
 		*/
-		this.$ga.page({
-			page: `/a/${this.$route.params.identifier}`,
-			title: `Album | ${this.name}`,
-			location: window.location.href
-		});
 	}
 };
 </script>

+ 1 - 6
src/site/pages/dashboard/account.vue

@@ -64,7 +64,7 @@
 						</div>
 
 						<b-field label="Api key"
-							message="This API key lets you use the service from other apps?"
+							message="This API key lets you use the service from other apps"
 							horizontal>
 							<b-input v-model="user.apiKey"
 								expanded />
@@ -102,11 +102,6 @@ export default {
 		return { title: 'Account' };
 	},
 	mounted() {
-		this.$ga.page({
-			page: '/dashboard/account',
-			title: 'Settings',
-			location: window.location.href
-		});
 		this.getUserSetttings();
 	},
 	methods: {

+ 0 - 5
src/site/pages/dashboard/albums.vue

@@ -299,11 +299,6 @@ export default {
 	},
 	mounted() {
 		this.getAlbums();
-		this.$ga.page({
-			page: '/dashboard/albums',
-			title: 'Albums',
-			location: window.location.href
-		});
 	},
 	methods: {
 		async linkOptionsChanged(link) {

+ 0 - 5
src/site/pages/dashboard/index.vue

@@ -83,11 +83,6 @@ export default {
 	mounted() {
 		this.getFiles();
 		this.getAlbums();
-		this.$ga.page({
-			page: '/dashboard',
-			title: 'Dashboard',
-			location: window.location.href
-		});
 	},
 	methods: {
 		isAlbumSelected(id) {

+ 0 - 6
src/site/pages/dashboard/settings.vue

@@ -146,12 +146,6 @@ export default {
 		return { title: 'Settings' };
 	},
 	mounted() {
-		this.$ga.page({
-			page: '/dashboard/settings',
-			title: 'Settings',
-			location: window.location.href
-		});
-
 		this.getSettings();
 	},
 	methods: {

+ 0 - 5
src/site/pages/dashboard/users.vue

@@ -222,11 +222,6 @@ export default {
 	},
 	mounted() {
 		this.getUsers();
-		this.$ga.page({
-			page: '/dashboard/users',
-			title: 'Users',
-			location: window.location.href
-		});
 	},
 	methods: {
 		async getUsers() {

+ 0 - 7
src/site/pages/index.vue

@@ -103,13 +103,6 @@ export default {
 		config() {
 			return this.$store.state.config;
 		}
-	},
-	mounted() {
-		this.$ga.page({
-			page: '/',
-			title: 'Home',
-			location: window.location.href
-		});
 	}
 };
 </script>

+ 0 - 7
src/site/pages/login.vue

@@ -94,13 +94,6 @@ export default {
 	metaInfo() {
 		return { title: 'Login' };
 	},
-	mounted() {
-		this.$ga.page({
-			page: '/login',
-			title: 'Login',
-			location: window.location.href
-		});
-	},
 	methods: {
 		login() {
 			if (this.isLoading) return;

+ 0 - 7
src/site/pages/register.vue

@@ -71,13 +71,6 @@ export default {
 	metaInfo() {
 		return { title: 'Register' };
 	},
-	mounted() {
-		this.$ga.page({
-			page: '/register',
-			title: 'Register',
-			location: window.location.href
-		});
-	},
 	methods: {
 		register() {
 			if (this.isLoading) return;

+ 0 - 12
src/site/plugins/vue-analytics.js

@@ -1,12 +0,0 @@
-import Vue from 'vue';
-import VueAnalytics from 'vue-analytics';
-
-const isProduction = process.env.NODE_ENV === 'production';
-
-Vue.use(VueAnalytics, {
-	id: 'UA-000000000-0',
-	debug: {
-		enabled: !isProduction,
-		sendHitTask: isProduction
-	}
-});