Move /platform/detection vars into /env (#9707)

* Add platform vars to env

* Replace /platform/detection with /env
This commit is contained in:
Eric Bailey
2026-01-16 16:28:17 -06:00
committed by GitHub
parent bd510d8468
commit 0589bd7d9e
244 changed files with 789 additions and 789 deletions
+5 -5
View File
@@ -18,7 +18,7 @@ import {openCropper} from '#/lib/media/picker'
import {type PickerImage} from '#/lib/media/picker.shared'
import {getDataUriSize} from '#/lib/media/util'
import {isCancelledError} from '#/lib/strings/errors'
import {isNative} from '#/platform/detection'
import {IS_NATIVE} from '#/env'
export type ImageTransformation = {
crop?: ActionCrop['crop']
@@ -55,7 +55,7 @@ export type ComposerImage =
let _imageCacheDirectory: string
function getImageCacheDirectory(): string | null {
if (isNative) {
if (IS_NATIVE) {
return (_imageCacheDirectory ??= joinPath(cacheDirectory!, 'bsky-composer'))
}
@@ -120,7 +120,7 @@ export async function pasteImage(
}
export async function cropImage(img: ComposerImage): Promise<ComposerImage> {
if (!isNative) {
if (!IS_NATIVE) {
return img
}
@@ -244,7 +244,7 @@ export async function compressImage(img: ComposerImage): Promise<PickerImage> {
}
async function moveIfNecessary(from: string) {
const cacheDir = isNative && getImageCacheDirectory()
const cacheDir = IS_NATIVE && getImageCacheDirectory()
if (cacheDir && from.startsWith(cacheDir)) {
const to = joinPath(cacheDir, nanoid(36))
@@ -260,7 +260,7 @@ async function moveIfNecessary(from: string) {
/** Purge files that were created to accomodate image manipulation */
export async function purgeTemporaryImageFiles() {
const cacheDir = isNative && getImageCacheDirectory()
const cacheDir = IS_NATIVE && getImageCacheDirectory()
if (cacheDir) {
await deleteAsync(cacheDir, {idempotent: true})