From 7699b49d33e3d6072cba27022ae35e17cc6dfcce Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 18 Mar 2023 14:30:16 +0900 Subject: [PATCH] enhance(client): add ads page --- CHANGELOG.md | 7 +++--- packages/frontend/src/pages/ads.vue | 25 +++++++++++++++++++++ packages/frontend/src/router.ts | 3 +++ packages/frontend/src/ui/_common_/common.ts | 5 +++++ 4 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 packages/frontend/src/pages/ads.vue diff --git a/CHANGELOG.md b/CHANGELOG.md index da000152c..e9714b523 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,9 +20,10 @@ You should also include the user name that made the change. - ロールの並び順を設定可能に - カスタム絵文字にライセンス情報を付与できるように - 指定した文字列を含む投稿の公開範囲をホームにできるように -- enhance(client): 設定から自分のロールを確認できるように -- enhance(client): DM作成時にメンションも含むように -- enhance(client): フォロー申請のボタンのデザインを改善 +- 設定から自分のロールを確認できるように +- 広告一覧ページを追加 +- DM作成時にメンションも含むように +- フォロー申請のボタンのデザインを改善 - enhance(backend): OpenAPIエンドポイントを復旧 - WebP/AVIF/JPEGのweb公開用画像は、サーバーサイドではJPEGではなくWebPに変換するように - アニメーション画像のサムネイルを生成するように diff --git a/packages/frontend/src/pages/ads.vue b/packages/frontend/src/pages/ads.vue new file mode 100644 index 000000000..728ef3c0b --- /dev/null +++ b/packages/frontend/src/pages/ads.vue @@ -0,0 +1,25 @@ + + + + diff --git a/packages/frontend/src/router.ts b/packages/frontend/src/router.ts index 5f184881b..590c5765f 100644 --- a/packages/frontend/src/router.ts +++ b/packages/frontend/src/router.ts @@ -197,6 +197,9 @@ export const routes = [{ }, { path: '/about-misskey', component: page(() => import('./pages/about-misskey.vue')), +}, { + path: '/ads', + component: page(() => import('./pages/ads.vue')), }, { path: '/theme-editor', component: page(() => import('./pages/theme-editor.vue')), diff --git a/packages/frontend/src/ui/_common_/common.ts b/packages/frontend/src/ui/_common_/common.ts index a90ec6172..eae4f0091 100644 --- a/packages/frontend/src/ui/_common_/common.ts +++ b/packages/frontend/src/ui/_common_/common.ts @@ -29,6 +29,11 @@ export function openInstanceMenu(ev: MouseEvent) { icon: 'ti ti-chart-line', to: '/about#charts', }, null, { + type: 'link', + text: i18n.ts.ads, + icon: 'ti ti-ad', + to: '/ads', + }, { type: 'parent', text: i18n.ts.tools, icon: 'ti ti-tool',