Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add vue-meta for page meta information #4

Merged
merged 1 commit into from
Nov 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import { registerPlugins } from "@/plugins";
import ToastService from "primevue/toastservice";
import PrimeVue from "primevue/config";
import Aura from "@primevue/themes/aura";

import InstantSearch from "vue-instantsearch/vue3/es";
import { createMetaManager } from 'vue-meta'; // Pf95b

// Components
import App from "./App.vue";
Expand All @@ -25,9 +25,11 @@ app.use(PrimeVue, {
},
});
app.use(ToastService);

app.use(InstantSearch);

const metaManager = createMetaManager(); // Pde41
app.use(metaManager); // Pde41

// 使用 Vercel Speed Insights 观测网站性能
import { injectSpeedInsights } from "@vercel/speed-insights";
injectSpeedInsights();
Expand All @@ -37,4 +39,3 @@ inject();

registerPlugins(app);
app.mount("#app");

10 changes: 10 additions & 0 deletions src/pages/account/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,19 @@ import {
getResponse,
resetCaptcha,
} from "../../stores/useRecaptcha";
import { useMeta } from 'vue-meta';

export default {
components: { LoadingDialog },
setup() {
useMeta({
title: 'ZeroCat - Login',
meta: [
{ name: 'description', content: 'Login to your ZeroCat account.' },
{ name: 'keywords', content: 'ZeroCat, login, account' }
]
});
},
data() {
return {
BASE_API: import.meta.env.VITE_APP_BASE_API,
Expand Down
10 changes: 10 additions & 0 deletions src/pages/account/register.vue
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,19 @@ import {
getResponse,
resetCaptcha,
} from "../../stores/useRecaptcha";
import { useMeta } from 'vue-meta';

export default {
components: { LoadingDialog },
setup() {
useMeta({
title: 'ZeroCat - Register',
meta: [
{ name: 'description', content: 'Create a new ZeroCat account.' },
{ name: 'keywords', content: 'ZeroCat, register, account' }
]
});
},
data() {
return {
BASE_API: import.meta.env.VITE_APP_BASE_API,
Expand Down
11 changes: 10 additions & 1 deletion src/pages/algolia.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,18 @@

<script>
import { liteClient as algoliasearch } from "algoliasearch/lite";
//import "instantsearch.css/themes/reset.css";
import { useMeta } from 'vue-meta';

export default {
setup() {
useMeta({
title: 'ZeroCat - Algolia Search',
meta: [
{ name: 'description', content: 'Search projects using Algolia on ZeroCat.' },
{ name: 'keywords', content: 'ZeroCat, Algolia, search, projects' }
]
});
},
data() {
return {
algolia_index_name: import.meta.env.VITE_APP_ALGOLIA_INDEX_NAME,
Expand Down
44 changes: 10 additions & 34 deletions src/pages/home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -312,46 +312,22 @@
</v-container>-->
</template>

<style scoped>
.v-bg {
filter: blur(128px);
pointer-events: none;
}

.v-bg > div {
background: linear-gradient(
to bottom right,
rgb(var(--v-theme-surface-variant)),
rgb(var(--v-theme-primary))
);
z-index: -10;
clip-path: polygon(
5% 20%,
15% 10%,
30% 15%,
40% 5%,
50% 25%,
60% 15%,
75% 30%,
85% 20%,
90% 40%,
70% 50%,
85% 70%,
65% 60%,
50% 85%,
35% 70%,
20% 80%,
10% 60%,
5% 40%
);
}
</style>
<script>
import { ref } from "vue";
import request from "../axios/axios";
import $vuetify from "@/plugins/vuetify";
import { useMeta } from 'vue-meta';

export default {
setup() {
useMeta({
title: 'ZeroCat - Home',
meta: [
{ name: 'description', content: 'ZeroCat is a new generation open-source programming community.' },
{ name: 'keywords', content: 'ZeroCat, open-source, programming, community' }
]
});
},
data() {
return {
teams: [
Expand Down
11 changes: 11 additions & 0 deletions src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,19 @@ import request from "../axios/axios";
import $vuetify from "@/plugins/vuetify";
import { localuser } from "../stores/user";
import Typewriter from "../components/Typewriter.vue";
import { useMeta } from 'vue-meta';

export default {
components: { Typewriter },
setup() {
useMeta({
title: 'ZeroCat - Home',
meta: [
{ name: 'description', content: 'ZeroCat is a new generation open-source programming community.' },
{ name: 'keywords', content: 'ZeroCat, open-source, programming, community' }
]
});
},
data() {
return {
localuser,
Expand Down
11 changes: 10 additions & 1 deletion src/pages/projects/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,19 @@

<script>
import Projects from "../../components/Projects.vue";
import { useMeta } from 'vue-meta';

export default {
components: { Projects },

setup() {
useMeta({
title: 'ZeroCat - Projects',
meta: [
{ name: 'description', content: 'Browse and explore various projects on ZeroCat.' },
{ name: 'keywords', content: 'ZeroCat, projects, browse, explore' }
]
});
},
data() {
return {
searchstates: [{ state: "所有", abbr: "public" }],
Expand Down
32 changes: 22 additions & 10 deletions src/pages/projects/new.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<template> <v-container><v-card hover border title="新建作品">
<v-card-text>
作品是你存储代码的地方,你可以选择你喜欢的类型以从模板创建,作品信息可以随时修改。
</v-card-text>

</v-card><br/>
<template>
<v-container>
<v-card hover border title="新建作品">
<v-card-text>
作品是你存储代码的地方,你可以选择你喜欢的类型以从模板创建,作品信息可以随时修改。
</v-card-text>
</v-card>
<br/>
<v-card hover border>
<v-card-text>
<v-row dense>
Expand Down Expand Up @@ -38,23 +40,34 @@

<v-spacer></v-spacer>


<v-btn
border
border
color="primary"
text="创建"
variant="tonal"
@click="newProject()"
:disabled="created"
></v-btn>
</v-card-actions>
</v-card></v-container>
</v-card>
</v-container>
</template>

<script>
import openEdit from "../../stores/openEdit";
import request from "@/axios/axios";
import { useMeta } from 'vue-meta';

export default {
setup() {
useMeta({
title: 'ZeroCat - New Project',
meta: [
{ name: 'description', content: 'Create a new project on ZeroCat.' },
{ name: 'keywords', content: 'ZeroCat, new project, create' }
]
});
},
data() {
return {
projectinfo: {
Expand All @@ -67,7 +80,6 @@ export default {
};
},
methods: {

async newProject() {
await request.post("/project/", this.projectinfo).then((res) => {
console.log(res);
Expand Down
10 changes: 10 additions & 0 deletions src/pages/proxy/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,18 @@

<script>
import request from "../../axios/axios";
import { useMeta } from 'vue-meta';

export default {
setup() {
useMeta({
title: 'ZeroCat - Proxy',
meta: [
{ name: 'description', content: 'Explore and access Scratch content through ZeroCat Proxy.' },
{ name: 'keywords', content: 'ZeroCat, Scratch, proxy, explore, access' }
]
});
},
data() {
return {
orderitems: [
Expand Down
11 changes: 11 additions & 0 deletions src/pages/proxy/open.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,18 @@
</template>

<script>
import { useMeta } from 'vue-meta';

export default {
setup() {
useMeta({
title: 'ZeroCat - Open Scratch Content',
meta: [
{ name: 'description', content: 'Open and explore Scratch content through ZeroCat Proxy.' },
{ name: 'keywords', content: 'ZeroCat, Scratch, proxy, open, explore' }
]
});
},
data() {
return {
scratchprojectid: "",
Expand Down
10 changes: 10 additions & 0 deletions src/pages/tools/asdm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,18 @@
<!-- ZeroCatNext中request会直接返回body的内容,所以代码不通用 -->
<script>
import request from "../../axios/axios";
import { useMeta } from 'vue-meta';

export default {
setup() {
useMeta({
title: 'ZeroCat - ASDM',
meta: [
{ name: 'description', content: 'Download and explore Auto Scratch-Desktop Mirror (ASDM) on ZeroCat.' },
{ name: 'keywords', content: 'ZeroCat, ASDM, Auto Scratch-Desktop Mirror, download, explore' }
]
});
},
data() {
return {
release: {
Expand Down
Loading