We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The appid is currently retrieved by regexing for a common pattern in F2 app creation files: https://github.com/markitondemand/f2-manifest-loader/blob/master/src/index.js#L51-L52
Every file requires this pattern:
F2.Apps['com_open_f2_some_app']
The loader will extract com_open_f2_ignored_app as the appid. This works, but it creates limitations. These instances cannot currently be used:
com_open_f2_ignored_app
const appId = 'com_open_f2_some_app' F2.Apps[appId] = SomeApp
import APP_IDS from 'somewhere' F2.Apps[APP_IDS.SOME_APP] = SomeApp
function createF2App (appId, App) { F2.Apps[appId] = App }
Could a list of appIds were supplied directly to the loader? Could the filename be used as the appId?
The text was updated successfully, but these errors were encountered:
Merge pull request #1 in F2/f2manifests-loader from feature/styles-an…
8771127
…d-filename to master * commit '68845bcd6e9ec7bb2277a7bd041a69448ab45a94': Bump version to 0.2.0 Allow users to pass in filename and app styles
No branches or pull requests
The appid is currently retrieved by regexing for a common pattern in F2 app creation files:
https://github.com/markitondemand/f2-manifest-loader/blob/master/src/index.js#L51-L52
Every file requires this pattern:
The loader will extract
com_open_f2_ignored_app
as the appid. This works, but it creates limitations. These instances cannot currently be used:Could a list of appIds were supplied directly to the loader?
Could the filename be used as the appId?
The text was updated successfully, but these errors were encountered: