├── .editorconfig ├── .env ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── index.html ├── mise.toml ├── package.json ├── patches ├── @floating-ui__utils.patch ├── @tanstack__query-core@5.17.19.patch ├── solid-js.patch ├── vite-plugin-pwa.patch └── workbox-precaching.patch ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── _headers ├── _routes.json └── favicon.png ├── scripts └── generate-oauth-keys.js ├── server ├── index.ts ├── jwt.ts ├── lexicons.ts └── vite-env.d.ts ├── src ├── api │ ├── basa │ │ └── languages.ts │ ├── cache │ │ ├── post-shadow.ts │ │ ├── profile-shadow.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── defaults.ts │ ├── models │ │ ├── post-thread.tsx │ │ └── timeline.ts │ ├── moderation │ │ ├── constants.ts │ │ ├── entities │ │ │ ├── generic.ts │ │ │ ├── post.ts │ │ │ ├── profile.ts │ │ │ └── quote.ts │ │ ├── index.ts │ │ └── labeler.ts │ ├── mutations │ │ ├── post.ts │ │ └── profile.ts │ ├── queries-cache │ │ ├── bookmark-feed.ts │ │ ├── feed-precache.ts │ │ ├── list-precache.ts │ │ ├── notification-feed.ts │ │ ├── post-quotes.ts │ │ ├── post-thread.ts │ │ ├── profile-autocomplete.ts │ │ ├── profile-list.ts │ │ ├── profile-precache.ts │ │ ├── profile.ts │ │ └── timeline.ts │ ├── queries │ │ ├── blob.ts │ │ ├── bookmark-entry.ts │ │ ├── bookmark-feed.ts │ │ ├── bookmark.ts │ │ ├── composer-gif.ts │ │ ├── composer.ts │ │ ├── feed.ts │ │ ├── handle.ts │ │ ├── labeler.ts │ │ ├── list-members.ts │ │ ├── list.ts │ │ ├── my-lists.ts │ │ ├── notification-count.tsx │ │ ├── notification-feed.tsx │ │ ├── post-quotes.ts │ │ ├── post-thread.ts │ │ ├── post.ts │ │ ├── profile-autocomplete.ts │ │ ├── profile-feeds.ts │ │ ├── profile-followers.ts │ │ ├── profile-following.ts │ │ ├── profile-known-followers.ts │ │ ├── profile-lists.ts │ │ ├── profile.ts │ │ ├── search-feeds.ts │ │ ├── search-profiles.ts │ │ ├── subject-likers.ts │ │ ├── subject-reposters.ts │ │ └── timeline.ts │ ├── types.ts │ ├── types │ │ ├── at-uri.ts │ │ └── profile-response.ts │ └── utils │ │ ├── dequal.ts │ │ ├── did.ts │ │ ├── error.ts │ │ ├── misc.ts │ │ ├── post.ts │ │ ├── query.ts │ │ ├── records.ts │ │ ├── richtext-stringify.ts │ │ ├── richtext.ts │ │ ├── strings.ts │ │ ├── toggle-mutation.ts │ │ ├── types.ts │ │ ├── unicode.ts │ │ └── url.ts ├── assets │ ├── default-feed-avatar.svg │ ├── default-labeler-avatar.svg │ ├── default-list-avatar.svg │ └── default-user-avatar.svg ├── components │ ├── alt-button.tsx │ ├── avatar.tsx │ ├── bookmarks │ │ ├── add-post-to-folder-dialog-lazy.tsx │ │ ├── add-post-to-folder-dialog.tsx │ │ ├── bookmark-feed-item.tsx │ │ ├── bookmark-folder-avatar.tsx │ │ ├── bookmark-folder-form-dialog-lazy.tsx │ │ ├── bookmark-folder-form-dialog.tsx │ │ └── bookmark-folder-menu.tsx │ ├── boxed.tsx │ ├── button.tsx │ ├── checkbox-input.tsx │ ├── circular-progress-view.tsx │ ├── circular-progress.tsx │ ├── composer │ │ ├── compose-fab.tsx │ │ ├── composer-dialog-lazy.tsx │ │ ├── composer-dialog.tsx │ │ ├── composer-input.tsx │ │ ├── composer-reply-context.tsx │ │ ├── dialogs │ │ │ ├── composed-interaction-dialog-lazy.tsx │ │ │ ├── composed-interaction-dialog.tsx │ │ │ ├── content-warning-menu.tsx │ │ │ ├── gif-alt-dialog-lazy.tsx │ │ │ ├── gif-alt-dialog.tsx │ │ │ ├── gif-conversion-prompt-lazy.tsx │ │ │ ├── gif-conversion-prompt.tsx │ │ │ ├── image-alt-dialog-lazy.tsx │ │ │ ├── image-alt-dialog.tsx │ │ │ ├── language-select-dialog-lazy.tsx │ │ │ └── language-select-dialog.tsx │ │ ├── drafts │ │ │ ├── draft-list-dialog-lazy.tsx │ │ │ └── draft-list-dialog.tsx │ │ ├── embeds │ │ │ ├── feed-embed.tsx │ │ │ ├── gif-embed.tsx │ │ │ ├── image-embed.tsx │ │ │ ├── link-embed.tsx │ │ │ ├── list-embed.tsx │ │ │ ├── quote-embed.tsx │ │ │ └── video-embed.tsx │ │ ├── gifs │ │ │ ├── gif-search-dialog-lazy.tsx │ │ │ └── gif-search-dialog.tsx │ │ ├── lib │ │ │ ├── api.ts │ │ │ ├── cid.ts │ │ │ ├── link-detection.ts │ │ │ ├── richtext.ts │ │ │ └── state.tsx │ │ └── workers │ │ │ └── gif-conversion.ts │ ├── date-picker │ │ └── date-picker.tsx │ ├── dialog.tsx │ ├── divider.tsx │ ├── embeds │ │ ├── embed.tsx │ │ ├── external-embed.tsx │ │ ├── feed-embed.tsx │ │ ├── image-grid-embed.tsx │ │ ├── image-standalone-embed.tsx │ │ ├── lib │ │ │ ├── image-utils.ts │ │ │ └── snippet.tsx │ │ ├── list-embed.tsx │ │ ├── players │ │ │ ├── gif-player.tsx │ │ │ └── video-player.tsx │ │ ├── quote-blocked-embed.tsx │ │ ├── quote-embed.tsx │ │ ├── supports │ │ │ └── gif-embed.tsx │ │ └── video-embed.tsx │ ├── end-of-list-view.tsx │ ├── error-view.tsx │ ├── explore │ │ └── my-feeds-section.tsx │ ├── fab.tsx │ ├── feeds │ │ ├── feed-info-prompt.tsx │ │ ├── feed-item.tsx │ │ └── feed-overflow-menu.tsx │ ├── fieldset.tsx │ ├── filter-bar.tsx │ ├── icon-button.tsx │ ├── icons-central │ │ ├── _icon.tsx │ │ ├── add-outline.tsx │ │ ├── american-football-solid.tsx │ │ ├── arrow-left-outline.tsx │ │ ├── at-outline.tsx │ │ ├── audio-solid.tsx │ │ ├── basket-solid.tsx │ │ ├── bell-outline.tsx │ │ ├── bell-solid.tsx │ │ ├── block-outline.tsx │ │ ├── bookmark-check-outline.tsx │ │ ├── bookmark-outline.tsx │ │ ├── bookmark-solid.tsx │ │ ├── brush-solid.tsx │ │ ├── bullet-list-outline.tsx │ │ ├── check-outline.tsx │ │ ├── chevron-right-outline.tsx │ │ ├── circle-check-solid.tsx │ │ ├── circle-info-outline.tsx │ │ ├── circle-placeholder-dashed-outline.tsx │ │ ├── clipboard-outline.tsx │ │ ├── color-palette-outline.tsx │ │ ├── cross-large-outline.tsx │ │ ├── directional-pad-solid.tsx │ │ ├── download-outline.tsx │ │ ├── drag-indicator-outline.tsx │ │ ├── earth-outline.tsx │ │ ├── emoji-smile-outline.tsx │ │ ├── expand-outline.tsx │ │ ├── eye-open-outline.tsx │ │ ├── eye-slash-outline.tsx │ │ ├── filter-outline.tsx │ │ ├── fire-solid.tsx │ │ ├── flag-outline.tsx │ │ ├── folder-add-outline.tsx │ │ ├── gear-outline.tsx │ │ ├── gif-square-outline.tsx │ │ ├── globe-outline.tsx │ │ ├── graduation-cap-solid.tsx │ │ ├── hashtag-outline.tsx │ │ ├── heart-outline.tsx │ │ ├── heart-solid.tsx │ │ ├── home-outline.tsx │ │ ├── home-solid.tsx │ │ ├── image-outline.tsx │ │ ├── leave-outline.tsx │ │ ├── link-outline.tsx │ │ ├── list-sparkle-outline.tsx │ │ ├── magnifying-glass-outline.tsx │ │ ├── mail-outline.tsx │ │ ├── mail-solid.tsx │ │ ├── megaphone-outline.tsx │ │ ├── menu-outline.tsx │ │ ├── more-horiz-outline.tsx │ │ ├── mute-outline.tsx │ │ ├── open-in-new-outline.tsx │ │ ├── pause-solid.tsx │ │ ├── pencil-outline.tsx │ │ ├── people-outline.tsx │ │ ├── person-check-outline.tsx │ │ ├── person-outline.tsx │ │ ├── person-remove-outline.tsx │ │ ├── person-solid.tsx │ │ ├── pin-outline.tsx │ │ ├── pin-solid.tsx │ │ ├── play-solid.tsx │ │ ├── problem-outline.tsx │ │ ├── repeat-off-outline.tsx │ │ ├── repeat-outline.tsx │ │ ├── reply-outline.tsx │ │ ├── share-outline.tsx │ │ ├── shield-check-outline.tsx │ │ ├── shield-off-outline.tsx │ │ ├── shield-outline.tsx │ │ ├── step-back-outline.tsx │ │ ├── translate-outline.tsx │ │ ├── trash-outline.tsx │ │ ├── trending-line-outlined.tsx │ │ ├── volume-full-outlined.tsx │ │ └── write-outline.tsx │ ├── images │ │ ├── image-upload-menu.tsx │ │ ├── image-viewer-modal-lazy.tsx │ │ └── image-viewer-modal.tsx │ ├── inline-link.tsx │ ├── input │ │ └── char-counter-accessory.tsx │ ├── keyed.tsx │ ├── list.tsx │ ├── lists │ │ ├── lib │ │ │ └── utils.ts │ │ └── list-item.tsx │ ├── main │ │ ├── account-overflow-menu.tsx │ │ ├── main-sidebar-authenticated.tsx │ │ ├── main-sidebar-public.tsx │ │ ├── main-sidebar.tsx │ │ ├── manage-account-dialog-lazy.tsx │ │ ├── manage-account-dialog.tsx │ │ ├── modal-renderer.tsx │ │ ├── search-bar.tsx │ │ ├── sign-in-dialog-lazy.tsx │ │ ├── sign-in-dialog.tsx │ │ ├── sign-out-dialog-lazy.tsx │ │ └── sign-out-dialog.tsx │ ├── menu.tsx │ ├── moderation │ │ ├── block-account-prompt-lazy.tsx │ │ ├── block-account-prompt.tsx │ │ ├── content-hider.tsx │ │ ├── label-details-prompt-lazy.tsx │ │ ├── label-details-prompt.tsx │ │ ├── labels-on-me.tsx │ │ ├── moderation-alerts.tsx │ │ ├── mute-account-prompt-lazy.tsx │ │ └── mute-account-prompt.tsx │ ├── notifications │ │ └── notification-item.tsx │ ├── page.tsx │ ├── paged-list.tsx │ ├── profiles │ │ ├── edit-profile-dialog-lazy.tsx │ │ ├── edit-profile-dialog.tsx │ │ ├── handle-overflow-menu.tsx │ │ ├── profile-follow-button.tsx │ │ ├── profile-item-pressable.tsx │ │ ├── profile-item.tsx │ │ ├── profile-overflow-menu.tsx │ │ └── profile-view-header.tsx │ ├── prompt.tsx │ ├── rich-text.tsx │ ├── search-input.tsx │ ├── search │ │ ├── context.tsx │ │ ├── search-feeds.tsx │ │ ├── search-overflow-menu.tsx │ │ ├── search-posts.tsx │ │ ├── search-profiles.tsx │ │ ├── search-suggestions-view.tsx │ │ └── suggestions │ │ │ ├── date-autocompletion-view.tsx │ │ │ ├── from-actor-autocompletion-view.tsx │ │ │ └── search-autocompletion-view.tsx │ ├── settings │ │ ├── app-passwords │ │ │ └── add-app-password-prompt.tsx │ │ ├── bluemoji │ │ │ └── add-emote-prompt.tsx │ │ ├── content-translation │ │ │ └── add-basa-instance-prompt.tsx │ │ └── moderation │ │ │ └── labeling │ │ │ └── labeler-overflow-menu.tsx │ ├── sidebar.tsx │ ├── tab-bar.tsx │ ├── text-input.tsx │ ├── textarea-input.tsx │ ├── threads │ │ ├── highlighted-post.tsx │ │ ├── overflow-thread-item.tsx │ │ ├── post-thread-item.tsx │ │ ├── post-translation.tsx │ │ └── thread-lines.tsx │ ├── time-ago.tsx │ ├── timeline │ │ ├── delete-post-prompt-lazy.tsx │ │ ├── delete-post-prompt.tsx │ │ ├── pin-post-prompt-lazy.tsx │ │ ├── pin-post-prompt.tsx │ │ ├── post-actions.tsx │ │ ├── post-deleted-gate.tsx │ │ ├── post-feed-item.tsx │ │ ├── post-meta.tsx │ │ ├── post-overflow-menu.tsx │ │ ├── post-reply-context.tsx │ │ ├── post-share-menu.tsx │ │ ├── repost-menu.tsx │ │ ├── revise-post-prompt-lazy.tsx │ │ ├── revise-post-prompt.tsx │ │ └── timeline-list.tsx │ └── virtual-item.tsx ├── globals │ ├── events.ts │ ├── locales.ts │ ├── modals.tsx │ ├── navigation.ts │ └── preferences.ts ├── lib │ ├── aglais-bookmarks │ │ ├── db.ts │ │ └── search.ts │ ├── atproto │ │ └── labeler.ts │ ├── bluemoji │ │ ├── compress.ts │ │ └── render.ts │ ├── bsky │ │ ├── crop.ts │ │ ├── image.ts │ │ ├── search.ts │ │ ├── url.ts │ │ ├── video-upload.ts │ │ └── video.ts │ ├── element-refs.ts │ ├── hooks │ │ ├── abortable.ts │ │ ├── debounced-value.ts │ │ ├── derived-signal.ts │ │ ├── escape.ts │ │ ├── event-listener.ts │ │ ├── guard.ts │ │ ├── id.ts │ │ ├── local-storage.ts │ │ ├── media-query.ts │ │ ├── modal-close.ts │ │ ├── outside-click.ts │ │ ├── query-storage.ts │ │ ├── resize-observer.ts │ │ ├── search-params.ts │ │ ├── textarea-autosize.ts │ │ └── trigger.ts │ ├── input-refs.ts │ ├── interaction.ts │ ├── intl │ │ ├── language-fallback.ts │ │ ├── languages.ts │ │ ├── number.ts │ │ └── time.ts │ ├── keyed.tsx │ ├── navigation │ │ ├── history.ts │ │ ├── logger.ts │ │ └── router.tsx │ ├── observer.ts │ ├── pragmatic-dnd │ │ ├── DraggablePreview.tsx │ │ ├── DropIndicator.tsx │ │ └── reorder.tsx │ ├── preferences │ │ ├── account.ts │ │ ├── global.ts │ │ ├── sessions.ts │ │ └── snippets │ │ │ └── composer.ts │ ├── redirector.ts │ ├── states │ │ ├── agent.tsx │ │ ├── session.tsx │ │ ├── singleton.tsx │ │ ├── singletons │ │ │ ├── bookmarks.ts │ │ │ └── moderation.ts │ │ └── theme.tsx │ ├── styles.ts │ ├── utils │ │ ├── blob.ts │ │ ├── hash.ts │ │ ├── invariant.ts │ │ ├── misc.ts │ │ ├── regex.ts │ │ ├── state.ts │ │ └── strings.ts │ └── validation.ts ├── main.tsx ├── routes.ts ├── service-worker.tsx ├── shell.tsx ├── styles │ └── app.css ├── views │ ├── _error │ │ └── index.tsx │ ├── _signed-out │ │ └── index.tsx │ ├── bluemoji-emotes.tsx │ ├── bookmarks-listing.tsx │ ├── bookmarks.tsx │ ├── likes.tsx │ ├── lists.tsx │ ├── main │ │ ├── explore.tsx │ │ ├── home.tsx │ │ ├── messages.tsx │ │ └── notifications.tsx │ ├── moderation-lists.tsx │ ├── moderation.tsx │ ├── not-found.tsx │ ├── oauth-callback.tsx │ ├── post-likes.tsx │ ├── post-quotes.tsx │ ├── post-reposts.tsx │ ├── post-thread.tsx │ ├── profile-curation-list.tsx │ ├── profile-feed.tsx │ ├── profile-feeds.tsx │ ├── profile-followers.tsx │ ├── profile-following.tsx │ ├── profile-known-followers.tsx │ ├── profile-labels.tsx │ ├── profile-list.tsx │ ├── profile-lists.tsx │ ├── profile-moderation-list.tsx │ ├── profile-search.tsx │ ├── profile.tsx │ ├── search.tsx │ ├── settings-about.tsx │ ├── settings-account.tsx │ ├── settings-app-passwords.tsx │ ├── settings-appearance.tsx │ ├── settings-content-translation-exclusion.tsx │ ├── settings-content-translation.tsx │ ├── settings-content.tsx │ ├── settings-explore-feeds.tsx │ └── settings.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.worker.json ├── vite.config.ts ├── worker-configuration.d.ts └── wrangler.jsonc /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | VITE_APP_NAME=Aglais -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/LICENSE -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/index.html -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/mise.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/package.json -------------------------------------------------------------------------------- /patches/@floating-ui__utils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/patches/@floating-ui__utils.patch -------------------------------------------------------------------------------- /patches/@tanstack__query-core@5.17.19.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/patches/@tanstack__query-core@5.17.19.patch -------------------------------------------------------------------------------- /patches/solid-js.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/patches/solid-js.patch -------------------------------------------------------------------------------- /patches/vite-plugin-pwa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/patches/vite-plugin-pwa.patch -------------------------------------------------------------------------------- /patches/workbox-precaching.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/patches/workbox-precaching.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/_headers: -------------------------------------------------------------------------------- 1 | /assets/* 2 | cache-control: public, max-age=31536000, immutable 3 | -------------------------------------------------------------------------------- /public/_routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/public/_routes.json -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/public/favicon.png -------------------------------------------------------------------------------- /scripts/generate-oauth-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/scripts/generate-oauth-keys.js -------------------------------------------------------------------------------- /server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/server/index.ts -------------------------------------------------------------------------------- /server/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/server/jwt.ts -------------------------------------------------------------------------------- /server/lexicons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/server/lexicons.ts -------------------------------------------------------------------------------- /server/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/server/vite-env.d.ts -------------------------------------------------------------------------------- /src/api/basa/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/basa/languages.ts -------------------------------------------------------------------------------- /src/api/cache/post-shadow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/cache/post-shadow.ts -------------------------------------------------------------------------------- /src/api/cache/profile-shadow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/cache/profile-shadow.ts -------------------------------------------------------------------------------- /src/api/cache/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/cache/types.ts -------------------------------------------------------------------------------- /src/api/cache/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/cache/utils.ts -------------------------------------------------------------------------------- /src/api/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/defaults.ts -------------------------------------------------------------------------------- /src/api/models/post-thread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/models/post-thread.tsx -------------------------------------------------------------------------------- /src/api/models/timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/models/timeline.ts -------------------------------------------------------------------------------- /src/api/moderation/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/moderation/constants.ts -------------------------------------------------------------------------------- /src/api/moderation/entities/generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/moderation/entities/generic.ts -------------------------------------------------------------------------------- /src/api/moderation/entities/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/moderation/entities/post.ts -------------------------------------------------------------------------------- /src/api/moderation/entities/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/moderation/entities/profile.ts -------------------------------------------------------------------------------- /src/api/moderation/entities/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/moderation/entities/quote.ts -------------------------------------------------------------------------------- /src/api/moderation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/moderation/index.ts -------------------------------------------------------------------------------- /src/api/moderation/labeler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/moderation/labeler.ts -------------------------------------------------------------------------------- /src/api/mutations/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/mutations/post.ts -------------------------------------------------------------------------------- /src/api/mutations/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/mutations/profile.ts -------------------------------------------------------------------------------- /src/api/queries-cache/bookmark-feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries-cache/bookmark-feed.ts -------------------------------------------------------------------------------- /src/api/queries-cache/feed-precache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries-cache/feed-precache.ts -------------------------------------------------------------------------------- /src/api/queries-cache/list-precache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries-cache/list-precache.ts -------------------------------------------------------------------------------- /src/api/queries-cache/notification-feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries-cache/notification-feed.ts -------------------------------------------------------------------------------- /src/api/queries-cache/post-quotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries-cache/post-quotes.ts -------------------------------------------------------------------------------- /src/api/queries-cache/post-thread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries-cache/post-thread.ts -------------------------------------------------------------------------------- /src/api/queries-cache/profile-autocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries-cache/profile-autocomplete.ts -------------------------------------------------------------------------------- /src/api/queries-cache/profile-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries-cache/profile-list.ts -------------------------------------------------------------------------------- /src/api/queries-cache/profile-precache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries-cache/profile-precache.ts -------------------------------------------------------------------------------- /src/api/queries-cache/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries-cache/profile.ts -------------------------------------------------------------------------------- /src/api/queries-cache/timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries-cache/timeline.ts -------------------------------------------------------------------------------- /src/api/queries/blob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/blob.ts -------------------------------------------------------------------------------- /src/api/queries/bookmark-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/bookmark-entry.ts -------------------------------------------------------------------------------- /src/api/queries/bookmark-feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/bookmark-feed.ts -------------------------------------------------------------------------------- /src/api/queries/bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/bookmark.ts -------------------------------------------------------------------------------- /src/api/queries/composer-gif.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/composer-gif.ts -------------------------------------------------------------------------------- /src/api/queries/composer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/composer.ts -------------------------------------------------------------------------------- /src/api/queries/feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/feed.ts -------------------------------------------------------------------------------- /src/api/queries/handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/handle.ts -------------------------------------------------------------------------------- /src/api/queries/labeler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/labeler.ts -------------------------------------------------------------------------------- /src/api/queries/list-members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/list-members.ts -------------------------------------------------------------------------------- /src/api/queries/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/list.ts -------------------------------------------------------------------------------- /src/api/queries/my-lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/my-lists.ts -------------------------------------------------------------------------------- /src/api/queries/notification-count.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/notification-count.tsx -------------------------------------------------------------------------------- /src/api/queries/notification-feed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/notification-feed.tsx -------------------------------------------------------------------------------- /src/api/queries/post-quotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/post-quotes.ts -------------------------------------------------------------------------------- /src/api/queries/post-thread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/post-thread.ts -------------------------------------------------------------------------------- /src/api/queries/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/post.ts -------------------------------------------------------------------------------- /src/api/queries/profile-autocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/profile-autocomplete.ts -------------------------------------------------------------------------------- /src/api/queries/profile-feeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/profile-feeds.ts -------------------------------------------------------------------------------- /src/api/queries/profile-followers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/profile-followers.ts -------------------------------------------------------------------------------- /src/api/queries/profile-following.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/profile-following.ts -------------------------------------------------------------------------------- /src/api/queries/profile-known-followers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/profile-known-followers.ts -------------------------------------------------------------------------------- /src/api/queries/profile-lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/profile-lists.ts -------------------------------------------------------------------------------- /src/api/queries/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/profile.ts -------------------------------------------------------------------------------- /src/api/queries/search-feeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/search-feeds.ts -------------------------------------------------------------------------------- /src/api/queries/search-profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/search-profiles.ts -------------------------------------------------------------------------------- /src/api/queries/subject-likers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/subject-likers.ts -------------------------------------------------------------------------------- /src/api/queries/subject-reposters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/subject-reposters.ts -------------------------------------------------------------------------------- /src/api/queries/timeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/queries/timeline.ts -------------------------------------------------------------------------------- /src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/types.ts -------------------------------------------------------------------------------- /src/api/types/at-uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/types/at-uri.ts -------------------------------------------------------------------------------- /src/api/types/profile-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/types/profile-response.ts -------------------------------------------------------------------------------- /src/api/utils/dequal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/dequal.ts -------------------------------------------------------------------------------- /src/api/utils/did.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/did.ts -------------------------------------------------------------------------------- /src/api/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/error.ts -------------------------------------------------------------------------------- /src/api/utils/misc.ts: -------------------------------------------------------------------------------- 1 | export const getCurrentDate = () => { 2 | return new Date().toISOString(); 3 | }; 4 | -------------------------------------------------------------------------------- /src/api/utils/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/post.ts -------------------------------------------------------------------------------- /src/api/utils/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/query.ts -------------------------------------------------------------------------------- /src/api/utils/records.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/records.ts -------------------------------------------------------------------------------- /src/api/utils/richtext-stringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/richtext-stringify.ts -------------------------------------------------------------------------------- /src/api/utils/richtext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/richtext.ts -------------------------------------------------------------------------------- /src/api/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/strings.ts -------------------------------------------------------------------------------- /src/api/utils/toggle-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/toggle-mutation.ts -------------------------------------------------------------------------------- /src/api/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/types.ts -------------------------------------------------------------------------------- /src/api/utils/unicode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/unicode.ts -------------------------------------------------------------------------------- /src/api/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/api/utils/url.ts -------------------------------------------------------------------------------- /src/assets/default-feed-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/assets/default-feed-avatar.svg -------------------------------------------------------------------------------- /src/assets/default-labeler-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/assets/default-labeler-avatar.svg -------------------------------------------------------------------------------- /src/assets/default-list-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/assets/default-list-avatar.svg -------------------------------------------------------------------------------- /src/assets/default-user-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/assets/default-user-avatar.svg -------------------------------------------------------------------------------- /src/components/alt-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/alt-button.tsx -------------------------------------------------------------------------------- /src/components/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/avatar.tsx -------------------------------------------------------------------------------- /src/components/bookmarks/add-post-to-folder-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/bookmarks/add-post-to-folder-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/bookmarks/add-post-to-folder-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/bookmarks/add-post-to-folder-dialog.tsx -------------------------------------------------------------------------------- /src/components/bookmarks/bookmark-feed-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/bookmarks/bookmark-feed-item.tsx -------------------------------------------------------------------------------- /src/components/bookmarks/bookmark-folder-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/bookmarks/bookmark-folder-avatar.tsx -------------------------------------------------------------------------------- /src/components/bookmarks/bookmark-folder-form-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/bookmarks/bookmark-folder-form-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/bookmarks/bookmark-folder-form-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/bookmarks/bookmark-folder-form-dialog.tsx -------------------------------------------------------------------------------- /src/components/bookmarks/bookmark-folder-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/bookmarks/bookmark-folder-menu.tsx -------------------------------------------------------------------------------- /src/components/boxed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/boxed.tsx -------------------------------------------------------------------------------- /src/components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/button.tsx -------------------------------------------------------------------------------- /src/components/checkbox-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/checkbox-input.tsx -------------------------------------------------------------------------------- /src/components/circular-progress-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/circular-progress-view.tsx -------------------------------------------------------------------------------- /src/components/circular-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/circular-progress.tsx -------------------------------------------------------------------------------- /src/components/composer/compose-fab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/compose-fab.tsx -------------------------------------------------------------------------------- /src/components/composer/composer-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/composer-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/composer/composer-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/composer-dialog.tsx -------------------------------------------------------------------------------- /src/components/composer/composer-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/composer-input.tsx -------------------------------------------------------------------------------- /src/components/composer/composer-reply-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/composer-reply-context.tsx -------------------------------------------------------------------------------- /src/components/composer/dialogs/composed-interaction-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/dialogs/composed-interaction-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/composer/dialogs/composed-interaction-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/dialogs/composed-interaction-dialog.tsx -------------------------------------------------------------------------------- /src/components/composer/dialogs/content-warning-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/dialogs/content-warning-menu.tsx -------------------------------------------------------------------------------- /src/components/composer/dialogs/gif-alt-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/dialogs/gif-alt-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/composer/dialogs/gif-alt-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/dialogs/gif-alt-dialog.tsx -------------------------------------------------------------------------------- /src/components/composer/dialogs/gif-conversion-prompt-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/dialogs/gif-conversion-prompt-lazy.tsx -------------------------------------------------------------------------------- /src/components/composer/dialogs/gif-conversion-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/dialogs/gif-conversion-prompt.tsx -------------------------------------------------------------------------------- /src/components/composer/dialogs/image-alt-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/dialogs/image-alt-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/composer/dialogs/image-alt-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/dialogs/image-alt-dialog.tsx -------------------------------------------------------------------------------- /src/components/composer/dialogs/language-select-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/dialogs/language-select-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/composer/dialogs/language-select-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/dialogs/language-select-dialog.tsx -------------------------------------------------------------------------------- /src/components/composer/drafts/draft-list-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/drafts/draft-list-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/composer/drafts/draft-list-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/drafts/draft-list-dialog.tsx -------------------------------------------------------------------------------- /src/components/composer/embeds/feed-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/embeds/feed-embed.tsx -------------------------------------------------------------------------------- /src/components/composer/embeds/gif-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/embeds/gif-embed.tsx -------------------------------------------------------------------------------- /src/components/composer/embeds/image-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/embeds/image-embed.tsx -------------------------------------------------------------------------------- /src/components/composer/embeds/link-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/embeds/link-embed.tsx -------------------------------------------------------------------------------- /src/components/composer/embeds/list-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/embeds/list-embed.tsx -------------------------------------------------------------------------------- /src/components/composer/embeds/quote-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/embeds/quote-embed.tsx -------------------------------------------------------------------------------- /src/components/composer/embeds/video-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/embeds/video-embed.tsx -------------------------------------------------------------------------------- /src/components/composer/gifs/gif-search-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/gifs/gif-search-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/composer/gifs/gif-search-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/gifs/gif-search-dialog.tsx -------------------------------------------------------------------------------- /src/components/composer/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/lib/api.ts -------------------------------------------------------------------------------- /src/components/composer/lib/cid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/lib/cid.ts -------------------------------------------------------------------------------- /src/components/composer/lib/link-detection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/lib/link-detection.ts -------------------------------------------------------------------------------- /src/components/composer/lib/richtext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/lib/richtext.ts -------------------------------------------------------------------------------- /src/components/composer/lib/state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/lib/state.tsx -------------------------------------------------------------------------------- /src/components/composer/workers/gif-conversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/composer/workers/gif-conversion.ts -------------------------------------------------------------------------------- /src/components/date-picker/date-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/date-picker/date-picker.tsx -------------------------------------------------------------------------------- /src/components/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/dialog.tsx -------------------------------------------------------------------------------- /src/components/divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/divider.tsx -------------------------------------------------------------------------------- /src/components/embeds/embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/embed.tsx -------------------------------------------------------------------------------- /src/components/embeds/external-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/external-embed.tsx -------------------------------------------------------------------------------- /src/components/embeds/feed-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/feed-embed.tsx -------------------------------------------------------------------------------- /src/components/embeds/image-grid-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/image-grid-embed.tsx -------------------------------------------------------------------------------- /src/components/embeds/image-standalone-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/image-standalone-embed.tsx -------------------------------------------------------------------------------- /src/components/embeds/lib/image-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/lib/image-utils.ts -------------------------------------------------------------------------------- /src/components/embeds/lib/snippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/lib/snippet.tsx -------------------------------------------------------------------------------- /src/components/embeds/list-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/list-embed.tsx -------------------------------------------------------------------------------- /src/components/embeds/players/gif-player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/players/gif-player.tsx -------------------------------------------------------------------------------- /src/components/embeds/players/video-player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/players/video-player.tsx -------------------------------------------------------------------------------- /src/components/embeds/quote-blocked-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/quote-blocked-embed.tsx -------------------------------------------------------------------------------- /src/components/embeds/quote-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/quote-embed.tsx -------------------------------------------------------------------------------- /src/components/embeds/supports/gif-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/supports/gif-embed.tsx -------------------------------------------------------------------------------- /src/components/embeds/video-embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/embeds/video-embed.tsx -------------------------------------------------------------------------------- /src/components/end-of-list-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/end-of-list-view.tsx -------------------------------------------------------------------------------- /src/components/error-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/error-view.tsx -------------------------------------------------------------------------------- /src/components/explore/my-feeds-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/explore/my-feeds-section.tsx -------------------------------------------------------------------------------- /src/components/fab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/fab.tsx -------------------------------------------------------------------------------- /src/components/feeds/feed-info-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/feeds/feed-info-prompt.tsx -------------------------------------------------------------------------------- /src/components/feeds/feed-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/feeds/feed-item.tsx -------------------------------------------------------------------------------- /src/components/feeds/feed-overflow-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/feeds/feed-overflow-menu.tsx -------------------------------------------------------------------------------- /src/components/fieldset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/fieldset.tsx -------------------------------------------------------------------------------- /src/components/filter-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/filter-bar.tsx -------------------------------------------------------------------------------- /src/components/icon-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icon-button.tsx -------------------------------------------------------------------------------- /src/components/icons-central/_icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/_icon.tsx -------------------------------------------------------------------------------- /src/components/icons-central/add-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/add-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/american-football-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/american-football-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/arrow-left-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/arrow-left-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/at-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/at-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/audio-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/audio-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/basket-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/basket-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/bell-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/bell-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/bell-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/bell-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/block-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/block-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/bookmark-check-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/bookmark-check-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/bookmark-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/bookmark-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/bookmark-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/bookmark-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/brush-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/brush-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/bullet-list-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/bullet-list-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/check-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/check-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/chevron-right-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/chevron-right-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/circle-check-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/circle-check-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/circle-info-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/circle-info-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/circle-placeholder-dashed-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/circle-placeholder-dashed-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/clipboard-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/clipboard-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/color-palette-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/color-palette-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/cross-large-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/cross-large-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/directional-pad-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/directional-pad-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/download-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/download-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/drag-indicator-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/drag-indicator-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/earth-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/earth-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/emoji-smile-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/emoji-smile-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/expand-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/expand-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/eye-open-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/eye-open-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/eye-slash-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/eye-slash-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/filter-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/filter-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/fire-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/fire-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/flag-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/flag-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/folder-add-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/folder-add-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/gear-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/gear-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/gif-square-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/gif-square-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/globe-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/globe-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/graduation-cap-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/graduation-cap-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/hashtag-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/hashtag-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/heart-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/heart-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/heart-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/heart-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/home-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/home-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/home-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/home-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/image-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/image-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/leave-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/leave-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/link-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/link-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/list-sparkle-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/list-sparkle-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/magnifying-glass-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/magnifying-glass-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/mail-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/mail-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/mail-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/mail-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/megaphone-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/megaphone-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/menu-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/menu-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/more-horiz-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/more-horiz-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/mute-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/mute-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/open-in-new-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/open-in-new-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/pause-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/pause-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/pencil-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/pencil-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/people-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/people-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/person-check-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/person-check-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/person-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/person-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/person-remove-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/person-remove-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/person-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/person-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/pin-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/pin-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/pin-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/pin-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/play-solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/play-solid.tsx -------------------------------------------------------------------------------- /src/components/icons-central/problem-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/problem-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/repeat-off-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/repeat-off-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/repeat-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/repeat-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/reply-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/reply-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/share-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/share-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/shield-check-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/shield-check-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/shield-off-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/shield-off-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/shield-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/shield-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/step-back-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/step-back-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/translate-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/translate-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/trash-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/trash-outline.tsx -------------------------------------------------------------------------------- /src/components/icons-central/trending-line-outlined.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/trending-line-outlined.tsx -------------------------------------------------------------------------------- /src/components/icons-central/volume-full-outlined.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/volume-full-outlined.tsx -------------------------------------------------------------------------------- /src/components/icons-central/write-outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/icons-central/write-outline.tsx -------------------------------------------------------------------------------- /src/components/images/image-upload-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/images/image-upload-menu.tsx -------------------------------------------------------------------------------- /src/components/images/image-viewer-modal-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/images/image-viewer-modal-lazy.tsx -------------------------------------------------------------------------------- /src/components/images/image-viewer-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/images/image-viewer-modal.tsx -------------------------------------------------------------------------------- /src/components/inline-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/inline-link.tsx -------------------------------------------------------------------------------- /src/components/input/char-counter-accessory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/input/char-counter-accessory.tsx -------------------------------------------------------------------------------- /src/components/keyed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/keyed.tsx -------------------------------------------------------------------------------- /src/components/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/list.tsx -------------------------------------------------------------------------------- /src/components/lists/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/lists/lib/utils.ts -------------------------------------------------------------------------------- /src/components/lists/list-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/lists/list-item.tsx -------------------------------------------------------------------------------- /src/components/main/account-overflow-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/account-overflow-menu.tsx -------------------------------------------------------------------------------- /src/components/main/main-sidebar-authenticated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/main-sidebar-authenticated.tsx -------------------------------------------------------------------------------- /src/components/main/main-sidebar-public.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/main-sidebar-public.tsx -------------------------------------------------------------------------------- /src/components/main/main-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/main-sidebar.tsx -------------------------------------------------------------------------------- /src/components/main/manage-account-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/manage-account-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/main/manage-account-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/manage-account-dialog.tsx -------------------------------------------------------------------------------- /src/components/main/modal-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/modal-renderer.tsx -------------------------------------------------------------------------------- /src/components/main/search-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/search-bar.tsx -------------------------------------------------------------------------------- /src/components/main/sign-in-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/sign-in-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/main/sign-in-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/sign-in-dialog.tsx -------------------------------------------------------------------------------- /src/components/main/sign-out-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/sign-out-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/main/sign-out-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/main/sign-out-dialog.tsx -------------------------------------------------------------------------------- /src/components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/menu.tsx -------------------------------------------------------------------------------- /src/components/moderation/block-account-prompt-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/moderation/block-account-prompt-lazy.tsx -------------------------------------------------------------------------------- /src/components/moderation/block-account-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/moderation/block-account-prompt.tsx -------------------------------------------------------------------------------- /src/components/moderation/content-hider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/moderation/content-hider.tsx -------------------------------------------------------------------------------- /src/components/moderation/label-details-prompt-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/moderation/label-details-prompt-lazy.tsx -------------------------------------------------------------------------------- /src/components/moderation/label-details-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/moderation/label-details-prompt.tsx -------------------------------------------------------------------------------- /src/components/moderation/labels-on-me.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/moderation/labels-on-me.tsx -------------------------------------------------------------------------------- /src/components/moderation/moderation-alerts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/moderation/moderation-alerts.tsx -------------------------------------------------------------------------------- /src/components/moderation/mute-account-prompt-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/moderation/mute-account-prompt-lazy.tsx -------------------------------------------------------------------------------- /src/components/moderation/mute-account-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/moderation/mute-account-prompt.tsx -------------------------------------------------------------------------------- /src/components/notifications/notification-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/notifications/notification-item.tsx -------------------------------------------------------------------------------- /src/components/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/page.tsx -------------------------------------------------------------------------------- /src/components/paged-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/paged-list.tsx -------------------------------------------------------------------------------- /src/components/profiles/edit-profile-dialog-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/profiles/edit-profile-dialog-lazy.tsx -------------------------------------------------------------------------------- /src/components/profiles/edit-profile-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/profiles/edit-profile-dialog.tsx -------------------------------------------------------------------------------- /src/components/profiles/handle-overflow-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/profiles/handle-overflow-menu.tsx -------------------------------------------------------------------------------- /src/components/profiles/profile-follow-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/profiles/profile-follow-button.tsx -------------------------------------------------------------------------------- /src/components/profiles/profile-item-pressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/profiles/profile-item-pressable.tsx -------------------------------------------------------------------------------- /src/components/profiles/profile-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/profiles/profile-item.tsx -------------------------------------------------------------------------------- /src/components/profiles/profile-overflow-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/profiles/profile-overflow-menu.tsx -------------------------------------------------------------------------------- /src/components/profiles/profile-view-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/profiles/profile-view-header.tsx -------------------------------------------------------------------------------- /src/components/prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/prompt.tsx -------------------------------------------------------------------------------- /src/components/rich-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/rich-text.tsx -------------------------------------------------------------------------------- /src/components/search-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/search-input.tsx -------------------------------------------------------------------------------- /src/components/search/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/search/context.tsx -------------------------------------------------------------------------------- /src/components/search/search-feeds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/search/search-feeds.tsx -------------------------------------------------------------------------------- /src/components/search/search-overflow-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/search/search-overflow-menu.tsx -------------------------------------------------------------------------------- /src/components/search/search-posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/search/search-posts.tsx -------------------------------------------------------------------------------- /src/components/search/search-profiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/search/search-profiles.tsx -------------------------------------------------------------------------------- /src/components/search/search-suggestions-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/search/search-suggestions-view.tsx -------------------------------------------------------------------------------- /src/components/search/suggestions/date-autocompletion-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/search/suggestions/date-autocompletion-view.tsx -------------------------------------------------------------------------------- /src/components/search/suggestions/from-actor-autocompletion-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/search/suggestions/from-actor-autocompletion-view.tsx -------------------------------------------------------------------------------- /src/components/search/suggestions/search-autocompletion-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/search/suggestions/search-autocompletion-view.tsx -------------------------------------------------------------------------------- /src/components/settings/app-passwords/add-app-password-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/settings/app-passwords/add-app-password-prompt.tsx -------------------------------------------------------------------------------- /src/components/settings/bluemoji/add-emote-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/settings/bluemoji/add-emote-prompt.tsx -------------------------------------------------------------------------------- /src/components/settings/content-translation/add-basa-instance-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/settings/content-translation/add-basa-instance-prompt.tsx -------------------------------------------------------------------------------- /src/components/settings/moderation/labeling/labeler-overflow-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/settings/moderation/labeling/labeler-overflow-menu.tsx -------------------------------------------------------------------------------- /src/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/sidebar.tsx -------------------------------------------------------------------------------- /src/components/tab-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/tab-bar.tsx -------------------------------------------------------------------------------- /src/components/text-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/text-input.tsx -------------------------------------------------------------------------------- /src/components/textarea-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/textarea-input.tsx -------------------------------------------------------------------------------- /src/components/threads/highlighted-post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/threads/highlighted-post.tsx -------------------------------------------------------------------------------- /src/components/threads/overflow-thread-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/threads/overflow-thread-item.tsx -------------------------------------------------------------------------------- /src/components/threads/post-thread-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/threads/post-thread-item.tsx -------------------------------------------------------------------------------- /src/components/threads/post-translation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/threads/post-translation.tsx -------------------------------------------------------------------------------- /src/components/threads/thread-lines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/threads/thread-lines.tsx -------------------------------------------------------------------------------- /src/components/time-ago.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/time-ago.tsx -------------------------------------------------------------------------------- /src/components/timeline/delete-post-prompt-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/delete-post-prompt-lazy.tsx -------------------------------------------------------------------------------- /src/components/timeline/delete-post-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/delete-post-prompt.tsx -------------------------------------------------------------------------------- /src/components/timeline/pin-post-prompt-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/pin-post-prompt-lazy.tsx -------------------------------------------------------------------------------- /src/components/timeline/pin-post-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/pin-post-prompt.tsx -------------------------------------------------------------------------------- /src/components/timeline/post-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/post-actions.tsx -------------------------------------------------------------------------------- /src/components/timeline/post-deleted-gate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/post-deleted-gate.tsx -------------------------------------------------------------------------------- /src/components/timeline/post-feed-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/post-feed-item.tsx -------------------------------------------------------------------------------- /src/components/timeline/post-meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/post-meta.tsx -------------------------------------------------------------------------------- /src/components/timeline/post-overflow-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/post-overflow-menu.tsx -------------------------------------------------------------------------------- /src/components/timeline/post-reply-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/post-reply-context.tsx -------------------------------------------------------------------------------- /src/components/timeline/post-share-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/post-share-menu.tsx -------------------------------------------------------------------------------- /src/components/timeline/repost-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/repost-menu.tsx -------------------------------------------------------------------------------- /src/components/timeline/revise-post-prompt-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/revise-post-prompt-lazy.tsx -------------------------------------------------------------------------------- /src/components/timeline/revise-post-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/revise-post-prompt.tsx -------------------------------------------------------------------------------- /src/components/timeline/timeline-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/timeline/timeline-list.tsx -------------------------------------------------------------------------------- /src/components/virtual-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/components/virtual-item.tsx -------------------------------------------------------------------------------- /src/globals/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/globals/events.ts -------------------------------------------------------------------------------- /src/globals/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/globals/locales.ts -------------------------------------------------------------------------------- /src/globals/modals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/globals/modals.tsx -------------------------------------------------------------------------------- /src/globals/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/globals/navigation.ts -------------------------------------------------------------------------------- /src/globals/preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/globals/preferences.ts -------------------------------------------------------------------------------- /src/lib/aglais-bookmarks/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/aglais-bookmarks/db.ts -------------------------------------------------------------------------------- /src/lib/aglais-bookmarks/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/aglais-bookmarks/search.ts -------------------------------------------------------------------------------- /src/lib/atproto/labeler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/atproto/labeler.ts -------------------------------------------------------------------------------- /src/lib/bluemoji/compress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/bluemoji/compress.ts -------------------------------------------------------------------------------- /src/lib/bluemoji/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/bluemoji/render.ts -------------------------------------------------------------------------------- /src/lib/bsky/crop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/bsky/crop.ts -------------------------------------------------------------------------------- /src/lib/bsky/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/bsky/image.ts -------------------------------------------------------------------------------- /src/lib/bsky/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/bsky/search.ts -------------------------------------------------------------------------------- /src/lib/bsky/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/bsky/url.ts -------------------------------------------------------------------------------- /src/lib/bsky/video-upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/bsky/video-upload.ts -------------------------------------------------------------------------------- /src/lib/bsky/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/bsky/video.ts -------------------------------------------------------------------------------- /src/lib/element-refs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/element-refs.ts -------------------------------------------------------------------------------- /src/lib/hooks/abortable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/abortable.ts -------------------------------------------------------------------------------- /src/lib/hooks/debounced-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/debounced-value.ts -------------------------------------------------------------------------------- /src/lib/hooks/derived-signal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/derived-signal.ts -------------------------------------------------------------------------------- /src/lib/hooks/escape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/escape.ts -------------------------------------------------------------------------------- /src/lib/hooks/event-listener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/event-listener.ts -------------------------------------------------------------------------------- /src/lib/hooks/guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/guard.ts -------------------------------------------------------------------------------- /src/lib/hooks/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/id.ts -------------------------------------------------------------------------------- /src/lib/hooks/local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/local-storage.ts -------------------------------------------------------------------------------- /src/lib/hooks/media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/media-query.ts -------------------------------------------------------------------------------- /src/lib/hooks/modal-close.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/modal-close.ts -------------------------------------------------------------------------------- /src/lib/hooks/outside-click.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/outside-click.ts -------------------------------------------------------------------------------- /src/lib/hooks/query-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/query-storage.ts -------------------------------------------------------------------------------- /src/lib/hooks/resize-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/resize-observer.ts -------------------------------------------------------------------------------- /src/lib/hooks/search-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/search-params.ts -------------------------------------------------------------------------------- /src/lib/hooks/textarea-autosize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/textarea-autosize.ts -------------------------------------------------------------------------------- /src/lib/hooks/trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/hooks/trigger.ts -------------------------------------------------------------------------------- /src/lib/input-refs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/input-refs.ts -------------------------------------------------------------------------------- /src/lib/interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/interaction.ts -------------------------------------------------------------------------------- /src/lib/intl/language-fallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/intl/language-fallback.ts -------------------------------------------------------------------------------- /src/lib/intl/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/intl/languages.ts -------------------------------------------------------------------------------- /src/lib/intl/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/intl/number.ts -------------------------------------------------------------------------------- /src/lib/intl/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/intl/time.ts -------------------------------------------------------------------------------- /src/lib/keyed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/keyed.tsx -------------------------------------------------------------------------------- /src/lib/navigation/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/navigation/history.ts -------------------------------------------------------------------------------- /src/lib/navigation/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/navigation/logger.ts -------------------------------------------------------------------------------- /src/lib/navigation/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/navigation/router.tsx -------------------------------------------------------------------------------- /src/lib/observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/observer.ts -------------------------------------------------------------------------------- /src/lib/pragmatic-dnd/DraggablePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/pragmatic-dnd/DraggablePreview.tsx -------------------------------------------------------------------------------- /src/lib/pragmatic-dnd/DropIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/pragmatic-dnd/DropIndicator.tsx -------------------------------------------------------------------------------- /src/lib/pragmatic-dnd/reorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/pragmatic-dnd/reorder.tsx -------------------------------------------------------------------------------- /src/lib/preferences/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/preferences/account.ts -------------------------------------------------------------------------------- /src/lib/preferences/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/preferences/global.ts -------------------------------------------------------------------------------- /src/lib/preferences/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/preferences/sessions.ts -------------------------------------------------------------------------------- /src/lib/preferences/snippets/composer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/preferences/snippets/composer.ts -------------------------------------------------------------------------------- /src/lib/redirector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/redirector.ts -------------------------------------------------------------------------------- /src/lib/states/agent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/states/agent.tsx -------------------------------------------------------------------------------- /src/lib/states/session.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/states/session.tsx -------------------------------------------------------------------------------- /src/lib/states/singleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/states/singleton.tsx -------------------------------------------------------------------------------- /src/lib/states/singletons/bookmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/states/singletons/bookmarks.ts -------------------------------------------------------------------------------- /src/lib/states/singletons/moderation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/states/singletons/moderation.ts -------------------------------------------------------------------------------- /src/lib/states/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/states/theme.tsx -------------------------------------------------------------------------------- /src/lib/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/styles.ts -------------------------------------------------------------------------------- /src/lib/utils/blob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/utils/blob.ts -------------------------------------------------------------------------------- /src/lib/utils/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/utils/hash.ts -------------------------------------------------------------------------------- /src/lib/utils/invariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/utils/invariant.ts -------------------------------------------------------------------------------- /src/lib/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/utils/misc.ts -------------------------------------------------------------------------------- /src/lib/utils/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/utils/regex.ts -------------------------------------------------------------------------------- /src/lib/utils/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/utils/state.ts -------------------------------------------------------------------------------- /src/lib/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/utils/strings.ts -------------------------------------------------------------------------------- /src/lib/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/lib/validation.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/routes.ts -------------------------------------------------------------------------------- /src/service-worker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/service-worker.tsx -------------------------------------------------------------------------------- /src/shell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/shell.tsx -------------------------------------------------------------------------------- /src/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/styles/app.css -------------------------------------------------------------------------------- /src/views/_error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/_error/index.tsx -------------------------------------------------------------------------------- /src/views/_signed-out/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/_signed-out/index.tsx -------------------------------------------------------------------------------- /src/views/bluemoji-emotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/bluemoji-emotes.tsx -------------------------------------------------------------------------------- /src/views/bookmarks-listing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/bookmarks-listing.tsx -------------------------------------------------------------------------------- /src/views/bookmarks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/bookmarks.tsx -------------------------------------------------------------------------------- /src/views/likes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/likes.tsx -------------------------------------------------------------------------------- /src/views/lists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/lists.tsx -------------------------------------------------------------------------------- /src/views/main/explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/main/explore.tsx -------------------------------------------------------------------------------- /src/views/main/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/main/home.tsx -------------------------------------------------------------------------------- /src/views/main/messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/main/messages.tsx -------------------------------------------------------------------------------- /src/views/main/notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/main/notifications.tsx -------------------------------------------------------------------------------- /src/views/moderation-lists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/moderation-lists.tsx -------------------------------------------------------------------------------- /src/views/moderation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/moderation.tsx -------------------------------------------------------------------------------- /src/views/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/not-found.tsx -------------------------------------------------------------------------------- /src/views/oauth-callback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/oauth-callback.tsx -------------------------------------------------------------------------------- /src/views/post-likes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/post-likes.tsx -------------------------------------------------------------------------------- /src/views/post-quotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/post-quotes.tsx -------------------------------------------------------------------------------- /src/views/post-reposts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/post-reposts.tsx -------------------------------------------------------------------------------- /src/views/post-thread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/post-thread.tsx -------------------------------------------------------------------------------- /src/views/profile-curation-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile-curation-list.tsx -------------------------------------------------------------------------------- /src/views/profile-feed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile-feed.tsx -------------------------------------------------------------------------------- /src/views/profile-feeds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile-feeds.tsx -------------------------------------------------------------------------------- /src/views/profile-followers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile-followers.tsx -------------------------------------------------------------------------------- /src/views/profile-following.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile-following.tsx -------------------------------------------------------------------------------- /src/views/profile-known-followers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile-known-followers.tsx -------------------------------------------------------------------------------- /src/views/profile-labels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile-labels.tsx -------------------------------------------------------------------------------- /src/views/profile-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile-list.tsx -------------------------------------------------------------------------------- /src/views/profile-lists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile-lists.tsx -------------------------------------------------------------------------------- /src/views/profile-moderation-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile-moderation-list.tsx -------------------------------------------------------------------------------- /src/views/profile-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile-search.tsx -------------------------------------------------------------------------------- /src/views/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/profile.tsx -------------------------------------------------------------------------------- /src/views/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/search.tsx -------------------------------------------------------------------------------- /src/views/settings-about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/settings-about.tsx -------------------------------------------------------------------------------- /src/views/settings-account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/settings-account.tsx -------------------------------------------------------------------------------- /src/views/settings-app-passwords.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/settings-app-passwords.tsx -------------------------------------------------------------------------------- /src/views/settings-appearance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/settings-appearance.tsx -------------------------------------------------------------------------------- /src/views/settings-content-translation-exclusion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/settings-content-translation-exclusion.tsx -------------------------------------------------------------------------------- /src/views/settings-content-translation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/settings-content-translation.tsx -------------------------------------------------------------------------------- /src/views/settings-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/settings-content.tsx -------------------------------------------------------------------------------- /src/views/settings-explore-feeds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/settings-explore-feeds.tsx -------------------------------------------------------------------------------- /src/views/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/views/settings.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.worker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/tsconfig.worker.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/vite.config.ts -------------------------------------------------------------------------------- /worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/worker-configuration.d.ts -------------------------------------------------------------------------------- /wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mary-ext/aglais/HEAD/wrangler.jsonc --------------------------------------------------------------------------------