├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── README.md ├── asset ├── 001.png ├── 002.png ├── 003.png └── 004.png ├── auto-imports.d.ts ├── components.d.ts ├── icon.png ├── package.json ├── plugin.json ├── preview.png ├── scripts └── make_dev_link.js ├── src ├── api │ ├── siyuan.ts │ └── weread.ts ├── components │ ├── CardManage.vue │ ├── Setting.vue │ ├── card-manage │ │ ├── basic │ │ │ ├── AsideItem.vue │ │ │ ├── BasicCard.vue │ │ │ ├── BasicCheckbox.vue │ │ │ ├── BasicGroup.vue │ │ │ ├── BasicHeaderToolbar.vue │ │ │ ├── BasicLayout.vue │ │ │ ├── BasicSearch.vue │ │ │ ├── BasicTag.vue │ │ │ ├── BasicText.vue │ │ │ ├── CardToolbar.vue │ │ │ ├── FoldText.vue │ │ │ ├── HiglightAside.vue │ │ │ ├── InboxAside.vue │ │ │ ├── PreivewImg.vue │ │ │ ├── SelectedToolbar.vue │ │ │ └── index.ts │ │ ├── commonMenu │ │ │ ├── CommonMenu.vue │ │ │ ├── index.ts │ │ │ └── type.ts │ │ └── router │ │ │ ├── Charts.vue │ │ │ ├── NotFound.vue │ │ │ ├── View.vue │ │ │ └── view.ts │ ├── dialog │ │ ├── InputCookie.vue │ │ └── Sync.vue │ └── index.ts ├── config │ └── default.ts ├── i18n │ ├── en_US.json │ └── zh_CN.json ├── index.ts ├── store │ └── index.ts ├── syncNotebooks.ts ├── types │ ├── card.ts │ ├── config.ts │ └── weread.d.ts └── utils │ ├── config.ts │ ├── cookie.ts │ ├── echat.ts │ ├── front-end.ts │ ├── login.ts │ ├── network.ts │ └── parse.ts ├── svelte.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/README.md -------------------------------------------------------------------------------- /asset/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/asset/001.png -------------------------------------------------------------------------------- /asset/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/asset/002.png -------------------------------------------------------------------------------- /asset/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/asset/003.png -------------------------------------------------------------------------------- /asset/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/asset/004.png -------------------------------------------------------------------------------- /auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/auto-imports.d.ts -------------------------------------------------------------------------------- /components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/components.d.ts -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/package.json -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/plugin.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/preview.png -------------------------------------------------------------------------------- /scripts/make_dev_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/scripts/make_dev_link.js -------------------------------------------------------------------------------- /src/api/siyuan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/api/siyuan.ts -------------------------------------------------------------------------------- /src/api/weread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/api/weread.ts -------------------------------------------------------------------------------- /src/components/CardManage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/CardManage.vue -------------------------------------------------------------------------------- /src/components/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/Setting.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/AsideItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/AsideItem.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/BasicCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/BasicCard.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/BasicCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/BasicCheckbox.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/BasicGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/BasicGroup.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/BasicHeaderToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/BasicHeaderToolbar.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/BasicLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/BasicLayout.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/BasicSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/BasicSearch.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/BasicTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/BasicTag.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/BasicText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/BasicText.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/CardToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/CardToolbar.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/FoldText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/FoldText.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/HiglightAside.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/card-manage/basic/InboxAside.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/InboxAside.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/PreivewImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/PreivewImg.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/SelectedToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/SelectedToolbar.vue -------------------------------------------------------------------------------- /src/components/card-manage/basic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/basic/index.ts -------------------------------------------------------------------------------- /src/components/card-manage/commonMenu/CommonMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/commonMenu/CommonMenu.vue -------------------------------------------------------------------------------- /src/components/card-manage/commonMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/commonMenu/index.ts -------------------------------------------------------------------------------- /src/components/card-manage/commonMenu/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/commonMenu/type.ts -------------------------------------------------------------------------------- /src/components/card-manage/router/Charts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/router/Charts.vue -------------------------------------------------------------------------------- /src/components/card-manage/router/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/router/NotFound.vue -------------------------------------------------------------------------------- /src/components/card-manage/router/View.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/router/View.vue -------------------------------------------------------------------------------- /src/components/card-manage/router/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/card-manage/router/view.ts -------------------------------------------------------------------------------- /src/components/dialog/InputCookie.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/dialog/InputCookie.vue -------------------------------------------------------------------------------- /src/components/dialog/Sync.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/dialog/Sync.vue -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/config/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/config/default.ts -------------------------------------------------------------------------------- /src/i18n/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/i18n/en_US.json -------------------------------------------------------------------------------- /src/i18n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/i18n/zh_CN.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/syncNotebooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/syncNotebooks.ts -------------------------------------------------------------------------------- /src/types/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/types/card.ts -------------------------------------------------------------------------------- /src/types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/types/config.ts -------------------------------------------------------------------------------- /src/types/weread.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/types/weread.d.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/utils/cookie.ts -------------------------------------------------------------------------------- /src/utils/echat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/utils/echat.ts -------------------------------------------------------------------------------- /src/utils/front-end.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/utils/front-end.ts -------------------------------------------------------------------------------- /src/utils/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/utils/login.ts -------------------------------------------------------------------------------- /src/utils/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/utils/network.ts -------------------------------------------------------------------------------- /src/utils/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/src/utils/parse.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdzz2048/siyuan-plugin-weread/HEAD/vite.config.ts --------------------------------------------------------------------------------