Skip to content

Commit df450fc

Browse files
authored
Merge pull request #12 from nextlevelshit/master
Added development mode for running app in browser with sql.js
2 parents 0e18990 + 28447ce commit df450fc

File tree

5 files changed

+159
-88
lines changed

5 files changed

+159
-88
lines changed

README.md

+57-8
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ This project demonstrates how that would work.
55
## TypeORM >= 0.1.7
66
To support webpack builds outside of Ionic we had to remove the automatic selection of the correct TypeORM version (the `typeorm` package comes with a Node and a browser version). In order to keep using TypeORM with Ionic you have to create a custom `webpack.config.js` file. This example contains one that is identical to the one Ionic uses when no config file is specified but adds the `NormalModuleReplacementPlugin` to select the correct version.
77
If you already have a custom webpack config file you have to add these lines to your plugins (for both development and production):
8+
89
```js
910
plugins: [
1011
...,
1112
new webpack.NormalModuleReplacementPlugin(/typeorm$/, function (result) {
1213
result.request = result.request.replace(/typeorm/, "typeorm/browser");
14+
}),
15+
new webpack.ProvidePlugin({
16+
'window.SQL': 'sql.js/js/sql.js'
1317
})
1418
]
1519
```
@@ -20,26 +24,71 @@ If you don't use a custom wepack config, copy the one from this example and add
2024
}
2125
```
2226

23-
### How to run this example
24-
1. Install the ionic and cordova cli: `npm install -g cordova ionic`
25-
2. Install all dependencies: `npm install`
26-
3. Add a platform: `ionic cordova platform add <ios | android>`
27-
4. Run the app: `ionic cordova run <ios | android>`. If you need help, you can read [ionic's guide](https://ionicframework.com/docs/intro/deploying/) for running an app on your device
27+
## Installation
28+
29+
To run this example in production or development mode you have to make sure, `ionic` and `cordova` are installed globally on your machine. After that you can install all necessary dependencies for running this example.
30+
31+
0. Check if `npm` is installed. Otherwise please [install `node.js` and `npm`](https://nodejs.org/en/download/package-manager/).
32+
```bash
33+
npm -v
34+
```
35+
36+
1. Install ionic and cordova command line interface globally.
37+
```bash
38+
npm install -g cordova ionic
39+
```
40+
41+
2. Install all dependencies listed in [`package.json`](/package.json#L15-L47).
42+
```bash
43+
npm install
44+
```
45+
46+
### Run app in development mode
47+
3. Run the app in your browser:
48+
```bash
49+
ionic serve
50+
```
51+
52+
### Run app in production mode
53+
3. Add an iOS or Android platform to your project:
54+
```bash
55+
ionic cordova platform add ios
56+
# or
57+
ionic cordova platform add android
58+
```
59+
60+
4. Run the app on your device:
61+
```bash
62+
ionic cordova run ios
63+
# or
64+
ionic cordova run android
65+
```
66+
67+
*For further information please read [ionic's deployment guide](https://ionicframework.com/docs/intro/deploying/).*
68+
2869

2970
![screenshot](./screenshot.png)
3071

3172
### Using TypeORM in your own app
3273
1. Install the plugin: `ionic cordova plugin add cordova-sqlite-storage --save`
74+
3375
2. Install TypeORM: `npm install typeorm --save`
76+
3477
3. Install node.js-Types: `npm install @types/node --save-dev`
78+
3579
4. Add `"typeRoots": ["node_modules/@types"]` to your `tsconfig.json` under `compilerOptions`
80+
3681
5. Create a custom webpack config file like the one [included in this project](config/webpack.config.js) to use the correct TypeORM version and add the config file to your [`package.json`](package.json#L12-14) (Required with TypeORM >= 0.1.7)
3782

3883
### Limitations to TypeORM when using production builds
39-
Since Ionic make a lot of optimizations when building for productions, the following limitations occur
84+
85+
Since Ionic make a lot of optimizations while building for production, the following limitations will occur:
86+
4087
1. Entities have to be marked with the table name (eg `@Entity('table_name')`)
41-
2. `getRepository()` has to be called with the name of the entity instead of the class (eg `getRepository('post') as Repository<Post>`)
42-
2. Date fields aren't supported
88+
89+
2. `getRepository()` has to be called with the name of the entity instead of the class (*eg `getRepository('post') as Repository<Post>`*)
90+
91+
3. Date fields are **not supported**:
4392
```ts
4493
@Column()
4594
birthdate: Date;

config.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@
8181
<splash height="2732" src="resources/ios/splash/Default@2x~universal~anyany.png" width="2732" />
8282
<icon height="1024" src="resources/ios/icon/icon-1024.png" width="1024" />
8383
</platform>
84-
<engine name="android" spec="^6.3.0" />
84+
<engine name="android" spec="^6.4.0" />
8585
<engine name="ios" spec="^4.5.0" />
86-
<plugin name="cordova-plugin-device" spec="^1.1.4" />
87-
<plugin name="cordova-plugin-splashscreen" spec="^4.0.3" />
88-
<plugin name="cordova-plugin-statusbar" spec="^2.2.2" />
89-
<plugin name="cordova-plugin-whitelist" spec="^1.3.1" />
90-
<plugin name="cordova-sqlite-storage" spec="^2.0.4" />
86+
<plugin name="cordova-plugin-device" spec="^1.1.7" />
87+
<plugin name="cordova-plugin-splashscreen" spec="^4.1.0" />
88+
<plugin name="cordova-plugin-statusbar" spec="^2.4.1" />
89+
<plugin name="cordova-plugin-whitelist" spec="^1.3.3" />
90+
<plugin name="cordova-sqlite-storage" spec="^2.2.1" />
9191
<plugin name="ionic-plugin-keyboard" spec="^2.2.1" />
9292
</widget>

config/webpack.config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ var devConfig = {
9595
ionicWebpackFactory.getCommonChunksPlugin(),
9696
new webpack.NormalModuleReplacementPlugin(/typeorm$/, function (result) {
9797
result.request = result.request.replace(/typeorm/, "typeorm/browser");
98+
}),
99+
new webpack.ProvidePlugin({
100+
'window.SQL': 'sql.js/js/sql.js'
98101
})
99102
],
100103

@@ -145,7 +148,6 @@ var prodConfig = {
145148
}
146149
};
147150

148-
149151
module.exports = {
150152
dev: devConfig,
151153
prod: prodConfig

package.json

+61-60
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,64 @@
11
{
2-
"name": "ionic-example",
3-
"version": "1.0.0",
4-
"author": "Daniel Lang",
5-
"scripts": {
6-
"clean": "ionic-app-scripts clean",
7-
"build": "ionic-app-scripts build",
8-
"lint": "ionic-app-scripts lint",
9-
"ionic:build": "ionic-app-scripts build",
10-
"ionic:serve": "ionic-app-scripts serve"
11-
},
12-
"config": {
13-
"ionic_webpack": "./config/webpack.config.js"
14-
},
15-
"dependencies": {
16-
"@angular/common": "4.4.3",
17-
"@angular/compiler": "4.4.3",
18-
"@angular/compiler-cli": "4.4.3",
19-
"@angular/core": "4.4.3",
20-
"@angular/forms": "4.4.3",
21-
"@angular/http": "4.4.3",
22-
"@angular/platform-browser": "4.4.3",
23-
"@angular/platform-browser-dynamic": "4.4.3",
24-
"@ionic-native/core": "4.3.0",
25-
"@ionic-native/splash-screen": "4.3.0",
26-
"@ionic-native/status-bar": "4.3.0",
27-
"@ionic/storage": "2.0.1",
28-
"cordova-android": "^6.3.0",
29-
"cordova-ios": "^4.5.0",
30-
"cordova-plugin-device": "^1.1.4",
31-
"cordova-plugin-splashscreen": "^4.0.3",
32-
"cordova-plugin-statusbar": "^2.2.2",
33-
"cordova-plugin-whitelist": "^1.3.1",
34-
"cordova-sqlite-storage": "^2.0.4",
35-
"ionic-angular": "3.7.0",
36-
"ionic-plugin-keyboard": "^2.2.1",
37-
"ionicons": "3.0.0",
38-
"rxjs": "5.4.3",
39-
"sw-toolbox": "3.6.0",
40-
"typeorm": "0.1.6",
41-
"zone.js": "0.8.17"
42-
},
43-
"devDependencies": {
44-
"@ionic/app-scripts": "^3.0.0",
45-
"@types/node": "^8.0.31",
46-
"typescript": "2.3.4"
47-
},
48-
"description": "An Ionic project",
49-
"cordova": {
50-
"plugins": {
51-
"cordova-plugin-device": {},
52-
"cordova-plugin-splashscreen": {},
53-
"cordova-plugin-statusbar": {},
54-
"cordova-plugin-whitelist": {},
55-
"ionic-plugin-keyboard": {},
56-
"cordova-sqlite-storage": {}
2+
"name": "ionic-example",
3+
"version": "1.0.0",
4+
"author": "Daniel Lang",
5+
"scripts": {
6+
"clean": "ionic-app-scripts clean",
7+
"build": "ionic-app-scripts build",
8+
"lint": "ionic-app-scripts lint",
9+
"ionic:build": "ionic-app-scripts build",
10+
"ionic:serve": "ionic-app-scripts serve"
5711
},
58-
"platforms": [
59-
"android",
60-
"ios"
61-
]
62-
}
12+
"config": {
13+
"ionic_webpack": "./config/webpack.config.js"
14+
},
15+
"dependencies": {
16+
"@angular/common": "4.4.3",
17+
"@angular/compiler": "4.4.3",
18+
"@angular/compiler-cli": "4.4.3",
19+
"@angular/core": "4.4.3",
20+
"@angular/forms": "4.4.3",
21+
"@angular/http": "4.4.3",
22+
"@angular/platform-browser": "4.4.3",
23+
"@angular/platform-browser-dynamic": "4.4.3",
24+
"@ionic-native/core": "4.3.0",
25+
"@ionic-native/splash-screen": "4.3.0",
26+
"@ionic-native/status-bar": "4.3.0",
27+
"@ionic/storage": "2.0.1",
28+
"cordova-android": "^6.4.0",
29+
"cordova-ios": "^4.5.0",
30+
"cordova-plugin-device": "^1.1.7",
31+
"cordova-plugin-splashscreen": "^4.1.0",
32+
"cordova-plugin-statusbar": "^2.4.1",
33+
"cordova-plugin-whitelist": "^1.3.3",
34+
"cordova-sqlite-storage": "^2.2.1",
35+
"ionic-angular": "3.7.0",
36+
"ionic-plugin-keyboard": "^2.2.1",
37+
"ionicons": "3.0.0",
38+
"rxjs": "5.4.3",
39+
"sw-toolbox": "3.6.0",
40+
"typeorm": "0.1.6",
41+
"zone.js": "0.8.17"
42+
},
43+
"devDependencies": {
44+
"@ionic/app-scripts": "^3.0.0",
45+
"@types/node": "^8.0.31",
46+
"sql.js": "^0.5.0",
47+
"typescript": "2.3.4"
48+
},
49+
"description": "An Ionic project",
50+
"cordova": {
51+
"plugins": {
52+
"cordova-plugin-device": {},
53+
"cordova-plugin-splashscreen": {},
54+
"cordova-plugin-statusbar": {},
55+
"cordova-plugin-whitelist": {},
56+
"ionic-plugin-keyboard": {},
57+
"cordova-sqlite-storage": {}
58+
},
59+
"platforms": [
60+
"android",
61+
"ios"
62+
]
63+
}
6364
}

src/app/app.component.ts

+32-13
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { Post } from '../entities/post';
1414
templateUrl: 'app.html'
1515
})
1616
export class MyApp {
17-
rootPage:any;
17+
rootPage: any;
1818

1919
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
2020
platform.ready().then(async () => {
@@ -23,18 +23,37 @@ export class MyApp {
2323
statusBar.styleDefault();
2424
splashScreen.hide();
2525

26-
await createConnection({
27-
type: 'cordova',
28-
database: 'test',
29-
location: 'default',
30-
logging: ['error', 'query', 'schema'],
31-
synchronize: true,
32-
entities: [
33-
Author,
34-
Category,
35-
Post
36-
]
37-
});
26+
// Depending on the machine the app is running on, configure
27+
// different database connections
28+
if(platform.is('cordova')) {
29+
// Running on device or emulator
30+
await createConnection({
31+
type: 'cordova',
32+
database: 'test',
33+
location: 'default',
34+
logging: ['error', 'query', 'schema'],
35+
synchronize: true,
36+
entities: [
37+
Author,
38+
Category,
39+
Post
40+
]
41+
});
42+
} else {
43+
// Running app in browser
44+
await createConnection({
45+
type: 'sqljs',
46+
autoSave: true,
47+
location: 'browser',
48+
logging: ['error', 'query', 'schema'],
49+
synchronize: true,
50+
entities: [
51+
Author,
52+
Category,
53+
Post
54+
]
55+
});
56+
}
3857

3958
this.rootPage = HomePage;
4059
});

0 commit comments

Comments
 (0)