New mobile/ directory with Capacitor project: - Configurable server URL launcher (default: app.pedshub.com) - Android: foreground service + wake lock for background recording (AudioRecordingService preserved from existing TWA) - iOS: background audio mode + microphone permission - App ID: com.pedshub.scribe - Both platforms initialized and synced Existing android/ TWA project untouched — this is a separate project. Build: cd mobile && npx cap open android (or ios)
29 lines
763 B
JavaScript
29 lines
763 B
JavaScript
const {dirname} = require('path')
|
|
|
|
const findMade = (opts, parent, path = undefined) => {
|
|
// we never want the 'made' return value to be a root directory
|
|
if (path === parent)
|
|
return Promise.resolve()
|
|
|
|
return opts.statAsync(parent).then(
|
|
st => st.isDirectory() ? path : undefined, // will fail later
|
|
er => er.code === 'ENOENT'
|
|
? findMade(opts, dirname(parent), parent)
|
|
: undefined
|
|
)
|
|
}
|
|
|
|
const findMadeSync = (opts, parent, path = undefined) => {
|
|
if (path === parent)
|
|
return undefined
|
|
|
|
try {
|
|
return opts.statSync(parent).isDirectory() ? path : undefined
|
|
} catch (er) {
|
|
return er.code === 'ENOENT'
|
|
? findMadeSync(opts, dirname(parent), parent)
|
|
: undefined
|
|
}
|
|
}
|
|
|
|
module.exports = {findMade, findMadeSync}
|