Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

How can I use it in Web application? #286

Closed
jaweii opened this issue Nov 8, 2019 · 11 comments
Closed

How can I use it in Web application? #286

jaweii opened this issue Nov 8, 2019 · 11 comments

Comments

@jaweii
Copy link

jaweii commented Nov 8, 2019

Can you give me a example?

@joaoarmando
Copy link

Hey, did you figure out how to use it?

@jaweii
Copy link
Author

jaweii commented Nov 25, 2019

Now I'm not use the repository, I use the JS package and link parse.min.js in my index.html.
But I think my solution is not good, I need to write different code in different platform.

@joaoarmando
Copy link

Oh, i think i'll use the rest api. The parse server never initialize in my case.

@jaweii
Copy link
Author

jaweii commented Nov 25, 2019

I'll give you my code to reference later.

@jaweii
Copy link
Author

jaweii commented Nov 25, 2019

My solution

pubspec.yaml:
js: ^0.6.0

Add parse js sdk to index.html like this:

<body>
  <script src="https://npmcdn.com/parse@2.9.0/dist/parse.min.js"></script>
  <script src="main.dart.js" type="application/javascript"></script>
  <script>
    Parse.serverURL = 'https://server.xxx.com/parse'
    Parse.initialize('APP_ID', 'CLIENT_SECRET')
    Parse.Config.get().then(_ => console.log('Parse Server: Connected'))
  </script>
</body>

I write the following code in lib/js/parse.dart ( I'm not implemen all features):

@JS('Parse')
library parse;

import 'package:js/js.dart';
import 'dart:html';
import 'dart:async';

@JS('Query')
class ParseQuery {
  ParseQuery(this.className);
  final String className;

  external ParseQuery include(List<String> list);
  external ParseQuery equalTo(String key, dynamic value);
  external Promise<List<ParseObject>> find();
  external Promise<ParseObject> first();
  external ParseQuery limit(num limit);
  external ParseQuery descending(String key);
  external ParseQuery ascending(String key);
  external ParseQuery select(List<String> keys);
}

@anonymous
@JS('window.Promise')
class Promise<T> {
  Promise();
  external Promise then(void function(T res));
}

@JS('Object')
class ParseObject {
  ParseObject(this.className);
  final String className;
  external String get id;
  external dynamic set(String key, dynamic value);
  external dynamic get(String key);
}

@JS('File')
class ParseFile {
  external String url();
}

Now I can user some Parse-JS-SDK methods through the parse.dart:

models/home.dart:

import 'package:PROJECT_NAME/js/parse.dart';
  ... ...
  Future<dynamic> fetchAlbums() async {
    loadingAlbums = true;
    notifyListeners();
    final query = ParseQuery('Albums');
    query.include(['hero']);
    Completer completer = Completer();
    query.find().then(completer.complete);
    final List<ParseObject> res =
        (await completer.future).cast<ParseObject>().toList();
    loadingAlbums = false;
    albums = res ?? [];
    notifyListeners();
    return albums;
  }

That's all.

@maxifuchs
Copy link

I found a much better solution.
The good thing about this plugin is that it is completely written in dart and barely uses any platform channels.
Therefore basically the whole codebase already supports flutter web.
The only problems are the coreStore and a database that is used in the example.
The coreStore problem is fixable with a new version of the shared_preferences plugin which supports web.
The database problem is not so easy to fix, because it currently depends on the path_provider plugin, which doesn't support web yet. But I for example dont need this functionality.

I already did this in my branch, or just fork this repository and change it in the pubspec.yaml to ^0.5.6

I also had to enable cors on my parse server, otherwise I just got XMLRequest errors.
But enabling cors was very easy, just follow the instructions

Now the plugin is working absolutely fine in my flutter app and thats a much better solution than using the javascript library

@mregandla
Copy link
Contributor

mregandla commented Dec 18, 2019

@maxiundtesa hive implementation of coreStore may help. It supports cross-platform which includes web.

@jackhax
Copy link

jackhax commented Dec 31, 2019

I found a much better solution.
The good thing about this plugin is that it is completely written in dart and barely uses any platform channels.
Therefore basically the whole codebase already supports flutter web.
The only problems are the coreStore and a database that is used in the example.
The coreStore problem is fixable with a new version of the shared_preferences plugin which supports web.
The database problem is not so easy to fix, because it currently depends on the path_provider plugin, which doesn't support web yet. But I for example dont need this functionality.

I already did this in my branch, or just fork this repository and change it in the pubspec.yaml to ^0.5.6

I also had to enable cors on my parse server, otherwise I just got XMLRequest errors.
But enabling cors was very easy, just follow the instructions

Now the plugin is working absolutely fine in my flutter app and thats a much better solution than using the javascript library

How to enable CORS for my parse server?

@jackhax
Copy link

jackhax commented Jan 10, 2020

How to download ParseFile on flutter web???

@gorillatapstudio
Copy link

I found a much better solution.
The good thing about this plugin is that it is completely written in dart and barely uses any platform channels.
Therefore basically the whole codebase already supports flutter web.
The only problems are the coreStore and a database that is used in the example.
The coreStore problem is fixable with a new version of the shared_preferences plugin which supports web.
The database problem is not so easy to fix, because it currently depends on the path_provider plugin, which doesn't support web yet. But I for example dont need this functionality.

I already did this in my branch, or just fork this repository and change it in the pubspec.yaml to ^0.5.6

I also had to enable cors on my parse server, otherwise I just got XMLRequest errors.
But enabling cors was very easy, just follow the instructions

Now the plugin is working absolutely fine in my flutter app and thats a much better solution than using the javascript library

How's the web implementation now? Are all the issues you pointed out solved already? I'd like to give it a try.

@fischerscode
Copy link
Contributor

2.0.0 should fully support web, even through pub.dev does not label it like this.
For more information, see the 2.0.0 migration guide.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants