add a little tester
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import * as HLSDownload from './src/HLSDownload'
|
||||
import * as Referrer from './src/Referrer'
|
||||
import * as SharedPrefs from './src/SharedPrefs'
|
||||
|
||||
export {Referrer, SharedPrefs}
|
||||
export {HLSDownload, Referrer, SharedPrefs}
|
||||
|
||||
@@ -9,7 +9,7 @@ import ExpoModulesCore
|
||||
|
||||
class ExpoHLSDownloadModule: Module {
|
||||
public func definition() -> ModuleDefinition {
|
||||
Name("ExpoHLSDownloadModule")
|
||||
Name("ExpoHLSDownload")
|
||||
|
||||
AsyncFunction("downloadAsync") { (sourceUrl: URL, progressCb: JavaScriptFunction<Void>, promise: Promise) in
|
||||
let hlsDownload = HLSDownload(sourceUrl: sourceUrl)
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
import {NotImplementedError} from '../NotImplemented'
|
||||
|
||||
export function downloadAsync(
|
||||
export async function downloadAsync(
|
||||
sourceUrl: string,
|
||||
progressCb: (progress: number) => void,
|
||||
): Promise<string> {
|
||||
throw new NotImplementedError({sourceUrl, progressCb})
|
||||
}
|
||||
|
||||
export function cancelAsync(sourceUrl: string): Promise<void> {
|
||||
export async function cancelAsync(sourceUrl: string): Promise<void> {
|
||||
throw new NotImplementedError({sourceUrl})
|
||||
}
|
||||
|
||||
@@ -7,6 +7,7 @@ import {CenteredView} from '#/view/com/util/Views'
|
||||
import {ListContained} from 'view/screens/Storybook/ListContained'
|
||||
import {atoms as a, ThemeProvider, useTheme} from '#/alf'
|
||||
import {Button, ButtonText} from '#/components/Button'
|
||||
import {HLSDownload} from '../../../../modules/expo-bluesky-swiss-army'
|
||||
import {Breakpoints} from './Breakpoints'
|
||||
import {Buttons} from './Buttons'
|
||||
import {Dialogs} from './Dialogs'
|
||||
@@ -37,6 +38,19 @@ function StorybookInner() {
|
||||
return (
|
||||
<CenteredView style={[t.atoms.bg]}>
|
||||
<View style={[a.p_xl, a.gap_5xl, {paddingBottom: 200}]}>
|
||||
<Button
|
||||
variant="solid"
|
||||
color="primary"
|
||||
size="small"
|
||||
onPress={async () => {
|
||||
const res = await HLSDownload.downloadAsync('', progress => {
|
||||
console.log(`Download progress: ${progress}`)
|
||||
})
|
||||
console.log(`Download UR: ${res}`)
|
||||
}}
|
||||
label="idk">
|
||||
<ButtonText>TEST THE DOWNLOAD PLZ</ButtonText>
|
||||
</Button>
|
||||
{!showContainedList ? (
|
||||
<>
|
||||
<View style={[a.flex_row, a.align_start, a.gap_md]}>
|
||||
|
||||
Reference in New Issue
Block a user