Skip to content

Commit

Permalink
feat: add filter plugin online (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
tachibana-shin committed Dec 10, 2023
1 parent a4aa9a5 commit 149dafc
Show file tree
Hide file tree
Showing 6 changed files with 385 additions and 63 deletions.
67 changes: 51 additions & 16 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@
"editor.guides.bracketPairs": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": ["source.fixAll.eslint"],
"eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"],
"editor.codeActionsOnSave": [
"source.fixAll.eslint"
],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"vue"
],
"typescript.tsdk": "node_modules/typescript/lib",
"cSpell.words": [
"Chương",
Expand All @@ -19,23 +26,35 @@
"ionic.previewInEditor": true,
"vue-i18n.i18nPaths": "src/i18n",
"i18n-ally.keystyle": "flat",
"i18n-ally.localesPaths": ["src/i18n", "src/i18n/messages"],
"i18n-ally.localesPaths": [
"src/i18n",
"src/i18n/messages"
],
"i18n-ally.extract.ignoredByFiles": {
"src/components/BrtPlayer.vue": ["Space", "Space"],
"src/pages/[_type-normal]/[value].vue": [""],
"src/components/BrtPlayer.vue": [
"Space",
"Space"
],
"src/pages/[_type-normal]/[value].vue": [
""
],
"src/pages/phim/_season.vue": [
"${nameSeason} (${chaps[0].name} - ${\n chaps[chaps.length - 1].name\n })",
"${name} - ${currentMetaSeason.name} Tập ${currentMetaChap.name}(${seasonId}/${currentMetaChap.id})"
],
"src/pages/tai-khoan/index.vue": ["bg-dark text-light-9"],
"src/pages/tai-khoan/index.vue": [
"bg-dark text-light-9"
],
"src/pages/lich-chieu-phim.vue": [
"\n T{{ dayTextToNum(item.day) }}\n ",
"/{{ item.month }}"
],
"src/pages/news.vue": [
"•\n {{ dayjs(item.time).locale(\"vi\").fromNow() }}\n "
],
"src/pages/tai-khoan/edit-profile.vue": ["bg-dark text-light-9"],
"src/pages/tai-khoan/edit-profile.vue": [
"bg-dark text-light-9"
],
"src/layouts/MainLayout.vue": [
"mailto:ogmo2r3q@duck.com?subject=Phản hồi ứng dụng web AnimeVsub",
"bg-dark text-light-9",
Expand All @@ -49,8 +68,12 @@
"• {{ t('_maxPage-trang', [data?.maxPage]) }}\n ",
"• {{ t('_maxPage-trang', [data?.maxPage]) }}\n "
],
"src/apis/runs/ajax/rate.ts": ["${token_name}=${token_value}"],
"src/components/errors/cloudflare.vue": [")\n "],
"src/apis/runs/ajax/rate.ts": [
"${token_name}=${token_value}"
],
"src/components/errors/cloudflare.vue": [
")\n "
],
"src/components/errors/domain-strange.vue": [
"\n {{ extensionVersion ?? \""
],
Expand All @@ -60,30 +83,42 @@
"src/components/library/_components/EpControl.vue": [
"< data.pages.length\n ? downloading\n ? $t(\"dang-tai\")\n : $t(\"tam-dung\")\n : $t(\"finished\")\n }}"
],
"src/components/app/AppHeaderSearch.vue": ["Slash"],
"src/pages/tim-kiem.vue": ["\nmeta:\n hiddenHeader: $lt.md\n"],
"src/pages/index.vue": ["%"],
"src/pages/[...catchAll].vue": ["\nname: not_found\n"],
"src/components/app/AppHeaderSearch.vue": [
"Slash"
],
"src/pages/tim-kiem.vue": [
"\nmeta:\n hiddenHeader: $lt.md\n"
],
"src/pages/index.vue": [
"%"
],
"src/pages/[...catchAll].vue": [
"\nname: not_found\n"
],
"src/pages/truyen-tranh/[zlug]/index.vue": [
"\nmeta:\n hiddenFooter: true\n hiddenDrawer: true\n hiddenHeader: $lt.md\n"
],
"src/pages/truyen-tranh/[zlug]/[epName]/[epId].vue": [
"\nmeta:\n hiddenHeader: true\n hiddenDrawer: true\n hiddenFooter: true\n"
],
"src/components/PluginManagerDialog.vue": ["install plugin"],
"src/components/PluginManagerDialog.vue": [
"install plugin"
],
"uno.config.ts": [
"overflow-y-scroll flex-shrink-1 mt-2 text-#eee text-opacity-70"
]
},
"scss.lint.unknownAtRules": "ignore",
"i18n-ally.sourceLanguage": "vi-VN",
"i18n-ally.sourceLanguage": "en-US",
"i18n-ally.extract.ignored": [
"&bull;\n {{\n t(\"tap-moi-chieu-vao-_time-_day\", [\n dayjs(\n new Date(\n `${currentDataSeason.update[1]}:${currentDataSeason.update[2]} 1/1/0`\n )\n ).format(\"HH:MM\"),\n currentDataSeason.update[0] === 0\n ? \"chủ nhật\"\n : `thứ ${currentDataSeason.update[0]}`,\n currentDataSeason.update[0] > new Date().getDay() + 1\n ? \"tuần sau\"\n : \"tuần này\",\n ])\n }}\n ",
"Urban VPN"
],
"editor.tabCompletion": "on",
"diffEditor.codeLens": true,
"typescript.preferences.autoImportFileExcludePatterns": ["vue-router"],
"typescript.preferences.autoImportFileExcludePatterns": [
"vue-router"
],
"MutableAI.upsell": false,
"[ruby]": {
"editor.defaultFormatter": "mbessey.vscode-rufo"
Expand Down
Loading

0 comments on commit 149dafc

Please sign in to comment.