summaryrefslogtreecommitdiff
path: root/packages/client/src/ui/deck (follow)
Commit message (Collapse)AuthorAgeFilesLines
* rename: client -> frontendsyuilo2022-12-2711-1215/+0
|
* :art: fix #9414tamaina2022-12-251-0/+1
|
* style: add missing trailing commas (#9387)Kagami Sascha Rosylight2022-12-221-1/+1
|
* :art:syuilo2022-12-211-1/+1
| | | | Fix #9374
* :art:syuilo2022-12-201-1/+1
|
* tabler iconssyuilo2022-12-201-1/+1
|
* Use tabler icons (#9354)syuilo2022-12-199-28/+28
| | | | | | | | | | | | | | | | | * wip * wip * wip * Update style.scss * wip * wip * wip * wip
* Revert "wip"syuilo2022-12-193-8/+8
| | | | This reverts commit f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e.
* wipsyuilo2022-12-193-8/+8
|
* Fix lint errors (except `@typescript-eslint/prefer-nullish-coalescing`) (#9311)Kagami Sascha Rosylight2022-12-122-2/+2
| | | | | | | | | * `yarn workspace client run lint --fix` * `eslint-disable-next-line no-var` for service worker self * A few more manual sw fixes * word change
* improve performancesyuilo2022-11-171-24/+21
|
* refactor(client): use setup syntaxsyuilo2022-09-062-24/+0
|
* refactor(client): use setup syntaxsyuilo2022-09-021-16/+0
|
* refactor(client): align filename to component namesyuilo2022-08-317-8/+8
|
* enhance(client): tweak uisyuilo2022-07-171-24/+29
|
* chore(client): tweak deck uisyuilo2022-07-176-41/+61
|
* fix(client): fix deck stylesyuilo2022-07-171-0/+1
|
* chore(client): tweak deck uisyuilo2022-07-161-12/+15
|
* chore(client): tweak uisyuilo2022-07-151-2/+1
|
* chore: fix lint errors (#8981)yzhe8192022-07-101-1/+1
|
* chore(client): tweak decksyuilo2022-07-051-1/+1
|
* fix lint no-undefJohann1502022-07-041-1/+1
|
* enhance(client): ↵syuilo2022-07-041-0/+7
| | | | deckのウイジェットカラムが未設定の時に説明を表示するように
* enhance(client): refine decksyuilo2022-07-032-33/+48
| | | | Fix #7720
* refactor(client): Refine routing (#8846)syuilo2022-06-201-25/+15
|
* lintsyuilo2022-06-122-13/+13
|
* fix(client): ↵syuilo2022-06-121-1/+1
| | | | | | デッキでウィジェットの情報が保存されない問題を修正 Fix #8818
* chore: fix some lints automatically (#8788)Johann1502022-06-101-1/+0
| | | | | | | | | * chore: fix some lints automatically Fixed lints that were automatically fixable with `eslint --fix`. * fix type * workaround for empty interface lint
* refactor: improve code quality (#8751)Johann1502022-05-291-6/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * remove unnecessary if `Array.prototype.some` already returns a boolean so an if to return true or false is completely unnecessary in this case. * perf: use count instead of find When using `count` instead of `findOneBy`, the data is not unnecessarily loaded. * remove duplicate null check The variable is checked for null in the lines above and the function returns if so. Therefore, it can not be null at this point. * simplify `getJsonSchema` Because the assigned value is `null` and the used keys are only shallow, use of `nestedProperty.set` seems inappropriate. Because the value is not read, the initial for loop can be replaced by a `for..in` loop. Since all keys will be assigned `null`, the condition of the ternary expression in the nested function will always be true. Therefore the recursion case will never happen. With this the nested function can be eliminated. * remove duplicate condition The code above already checks `dragging` and returns if it is truthy. Checking it again later is therefore unnecessary. To make this more obvious the `return` is removed in favour of using an if...else construct. * remove impossible "unknown" time The `ago` variable will always be a number and all non-negative numbers are already covered by other cases, the negative case is handled with `future` so there is no case when `unkown` could be achieved.
* fix lints (#8737)Johann1502022-05-261-2/+2
| | | | | | | | | | | | | | | * fix: emits use ev instead of e * fix: errors use err instead of e * fix: replace use of data where possible * fix: events use evt instead of e * fix: use strict equals * fix: use emoji instead of e * fix: vue lints
* fix(client): fix lint issues in Deck UI components (#8681)Andreas Nedbal2022-05-1911-34/+34
|
* remove unneeded attrs (#8673)あずき⪥™2022-05-181-1/+1
|
* refactor: use Vite to build instead of webpack (#8575)tamaina2022-05-011-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * update stream.ts * https://github.com/misskey-dev/misskey/pull/7769#issuecomment-917542339 * fix lint * clean up? * add app * fix * nanka iroiro * wip * wip * fix lint * fix loginId * fix * refactor * refactor * remove follow action * clean up * Revert "remove follow action" This reverts commit defbb416480905af2150d1c92f10d8e1d1288c0a. * Revert "clean up" This reverts commit f94919cb9cff41e274044fc69c56ad36a33974f2. * remove fetch specification * renoteの条件追加 * apiFetch => cli * bypass fetch? * fix * refactor: use path alias * temp: add submodule * remove submodule * enhane: unison-reloadに指定したパスに移動できるように * null * null * feat: ログインするアカウントのIDをクエリ文字列で指定する機能 * null * await? * rename * rename * Update read.ts * merge * get-note-summary * fix * swパッケージに * add missing packages * fix getNoteSummary * add webpack-cli * :v: * remove plugins * sw-inject分離したがテストしてない * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix * :v: * clean up config * typesを戻した * Update packages/client/src/components/notification.vue Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * disconnect * oops * Failed to load the script unexpectedly回避 sw.jsとlib.tsを分離してみた * truncate notification * Update packages/client/src/ui/_common_/common.vue Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * clean up * clean up * キャッシュ対策 * Truncate push notification message * クライアントがあったらストリームに接続しているということなので通知しない判定の位置を修正 * components/drive-file-thumbnail.vue * components/drive-select-dialog.vue * components/drive-window.vue * merge * fix * Service Workerのビルドにesbuildを使うようにする * return createEmptyNotification() * fix * i18n.ts * update * :v: * remove ts-loader * fix * fix * enhance: Service Workerを常に登録するように * pollEnded * URLをsw.jsに戻す * clean up * wip * wip * wip * wip * wip * wip * :v: * use import * fix * install rollup * use defineAsyncComponent. * fix emojilist * wip use defineAsyncComponent * popup(import -> popup(defineAsyncComponent(() => import * draggable? * fix init import * clean up * fix router * add comment * :v: * :v: * :v: * remove webpack * update vite * fix boot sequence * Revert "fix boot sequence" This reverts commit e893dbf37aed83bf9f12e427d98c78a7065b4a39. * revert boot import * never make two app div * ; * remove console.log * change clientEntry sequence * fix * Revert "fix" This reverts commit 12741b3d89950a31dbb1bb81477ddb27b0e9951a. * fix * add comment https://github.com/misskey-dev/misskey/pull/8575#issuecomment-1114239210 * add log * add comment Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
* enhance: ↵tamaina2022-04-021-3/+3
| | | | | | | | | | | | | | | | | タッチパッド・タッチスクリーンでのデッキの操作性を向上 (#8450) * enhance experience of deck with touchpad * test: 単純にdeltaYを加算してみる * clean up * ios bug fix? * :v: * use overflow-y * Safari does not supports clip
* デッキまわりをCompositon API / Setup Sugarに (#8410)tamaina2022-03-2111-575/+483
| | | | | | | | | | | | | | | | | | | * universal.widgets.vue * column.vue, antenna-column.vue * direct-column.vue, list-column.vue * main-column.vue * wip * :v: * fix * :v: * :v:
* refactor(client): i18n.locale -> i18n.tssyuilo2022-01-281-2/+2
|
* fix(client): ↵syuilo2022-01-211-1/+1
| | | | タイムラインのkeep-aliveが効かなくなっているのを修正
* refactorsyuilo2022-01-182-6/+6
|
* refactor(client): specify global scopesyuilo2022-01-161-1/+1
|
* wip: refactor(client): migrate paging components to composition apisyuilo2022-01-132-59/+25
|
* refactorsyuilo2022-01-132-2/+2
|
* wip: refactor(client): migrate paging components to composition apisyuilo2022-01-101-3/+3
|
* clean upsyuilo2021-12-252-22/+0
|
* enhance(client): improve usabilitysyuilo2021-12-031-0/+1
|
* update linrsyuilo2021-11-192-8/+8
|
* refactor(client): refactor dialog functions to improve type inferencesyuilo2021-11-183-30/+19
|
* refactoringsyuilo2021-11-1211-0/+1377
Resolve #7779