Skip to content

Commit e13c849

Browse files
Merge pull request #1 from conjoon/dev
dev
2 parents 7541890 + f0adbfd commit e13c849

19 files changed

+2535
-116
lines changed

.eslintrc.json

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true
5+
},
6+
"parserOptions": {
7+
"ecmaVersion": 2020,
8+
"sourceType": "module"
9+
},
10+
"extends": "eslint:recommended",
11+
"globals": {
12+
"l8" :true,
13+
"Ext": true,
14+
"coon": true,
15+
"conjoon": true,
16+
"console": true,
17+
"window": true,
18+
"Siesta": true,
19+
"location": true,
20+
"describe" : true,
21+
"AbstractTestClass" : true,
22+
"Class" : true,
23+
"StartTest" : true,
24+
"Fashion" : true
25+
},
26+
"ignorePatterns" : [
27+
"bootstrap.js",
28+
"**/build/*"
29+
],
30+
"rules": {
31+
"key-spacing" : ["error", {"mode" : "strict"}],
32+
"indent": ["error"],
33+
"linebreak-style": ["error", "unix"],
34+
"quotes": ["error", "double"],
35+
"semi": ["error", "always"],
36+
"comma-dangle": ["error", "never"],
37+
"no-multiple-empty-lines": ["error", {"max": 2}],
38+
"space-before-function-paren": ["error", "always"],
39+
"no-unused-vars": ["error", { "vars": "all", "args": "none", "ignoreRestSiblings": false}],
40+
"no-debugger": ["off"],
41+
"no-console": ["error", { "allow": ["warn", "error"] }],
42+
"no-lonely-if": ["error"],
43+
"eqeqeq": "warn"
44+
}
45+
}
46+

.githooks/pre-commit

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
npx eslint ./

.github/workflows/npm.publish.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
name: Publish to NPM
3+
4+
on:
5+
release:
6+
types: [ created ]
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
with:
14+
ref: ${{ github.event.release.target_commitish }}
15+
- uses: actions/setup-node@v2
16+
with:
17+
node-version: 16
18+
registry-url: "https://registry.npmjs.org"
19+
- run: npm ci
20+
- run: git config --global user.name "GitHub CD bot"
21+
- run: git config --global user.email "[email protected]"
22+
- run: npm test
23+
- run: npm version ${{ github.event.release.tag_name }}
24+
- run: npm publish --access public
25+
env:
26+
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
27+
- run: git push
28+
env:
29+
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
on:
2+
push:
3+
tags:
4+
- "v[0-9]+.[0-9]+.[0-9]+"
5+
6+
name: Create Release
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
node-version: [ 16.x ]
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v2
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
cache: 'npm'
21+
- run: npm ci --ignore-scripts
22+
- run: npm run build --if-present
23+
24+
release_git:
25+
needs: build
26+
name: Create Release
27+
runs-on: ubuntu-latest
28+
steps:
29+
- name: Checkout code
30+
uses: actions/checkout@v2
31+
- name: Create Release
32+
id: create_release
33+
uses: actions/create-release@v1
34+
env:
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36+
with:
37+
tag_name: ${{ github.ref }}
38+
release_name: Release ${{ github.ref }}
39+
draft: false
40+
prerelease: false
41+
42+
publish:
43+
needs: release_git
44+
runs-on: ubuntu-latest
45+
steps:
46+
- uses: actions/checkout@v2
47+
with:
48+
ref: ${{ github.event.release.target_commitish }}
49+
- uses: actions/setup-node@v2
50+
with:
51+
node-version: 16
52+
registry-url: "https://registry.npmjs.org"
53+
- run: npm publish --access public
54+
env:
55+
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/docs
22
/build
3-
/tests/tests.config.js
4-
/tests/index.html
53
/.idea
4+
/node_modules/

.jshintrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"esversion" : 11
3+
}

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Thorsten Suckow-Homberg https://github.com/conjoon/dev-cn_imapusersim
3+
Copyright (C) 2019-2021 Thorsten Suckow-Homberg https://github.com/conjoon/extjs-dev-imapusersim
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+37-27
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,53 @@
1-
# dev-cn_mailsim [![Build Status](https://travis-ci.org/conjoon/dev-cn_mailsim.svg?branch=master)](https://travis-ci.org/conjoon/dev-cn_imapusersim)
2-
This **Sencha ExtJS** package contains mock data for development of [conjoon/app-cn_imapuser](https://github.com/conjoon/app-cn_imapuser).
3-
When using this package, all backend requests of app-cn_imapuser will be replaced with mocks.
1+
# @conjoons/extjs-dev-imapusersim
2+
This Sencha ExtJS NPM package contains mock data for development of [conjoon/extjs-app-imapuser](https://github.com/conjoon/extjs-app-imapuser).
3+
When using this package, all backend requests of `extjs-app-imapuser` will be replaced with mocks.
44

5+
## Installation
6+
```
7+
npm install --save-dev @conjoon/extjs-dev-imapusersim
8+
```
59

6-
## Naming
7-
The following naming conventions apply:
8-
9-
#### Namespace
10-
`conjoon.dev.cn_imapusersim.*`
11-
#### Package name
12-
`dev-cn_imapusersim`
13-
#### Shorthand to be used with providing aliases
14-
`cn_imapusersim`
15-
16-
# Usage
17-
## Requirements
18-
This package requires the [lib-cn_core](https://github.com/coon-js/lib-cn_core) package of the [coon.js](https://github.com/coon-js) project.
10+
If you want to develop with this package, run the `build:dev`-script afterwards:
11+
```bash
12+
npm run build:dev
13+
```
14+
Testing environment will then be available via
1915

20-
# Usage
16+
```bash
17+
npm test
18+
```
19+
## Usage
2120
Simply update the app.json of the conjoon-application
2221
by specifying this package in the `uses`-property in either the `development` and/or `prodution` section:
2322

2423
*Example:*
25-
````javascript
24+
```javascript
2625
"development": {
2726
"uses" : [
28-
"app-cn_imapusersim",
29-
"app-cn_imapuser",
30-
"app-cn_mail",
31-
"dev-cn_mailsim"
27+
"extjs-dev-imapusersim",
28+
"extjs-app-imapuser",
29+
"extjs-app-webmail",
30+
"extjs-dev-webmailsim"
3231
]
3332
},
3433
"production": {
3534
"uses" : [
36-
"app-cn_imapuser",
37-
"app-cn_mail"
35+
"extjs-app-imapuser",
36+
"extjs-app-webmail"
3837
]
3938
}
40-
````
39+
```
4140

42-
Notice how in the example above all backend requests made by the [app-cn_imapusersim](https://github.com/conjoon/app-cn_imapusersim) package
43-
will be intercepted by the backend-mocks of the `dev-cn_imapusersim` package when using the development-version.
41+
Notice how in the example above all backend requests made by the [conjoon/extjs-app-imapuser](https://github.com/conjoon/extjs-app-imapuser) package
42+
will be intercepted by the backend-mocks of the `extjs-dev-imapusersim` package when using the development-version.
43+
44+
## Dev
45+
### Naming
46+
The following naming conventions apply:
47+
48+
#### Namespace
49+
`conjoon.dev.cn_imapusersim.*`
50+
#### Package name
51+
`extjs-dev-imapusersim`
52+
#### Shorthand to be used with providing aliases
53+
`cn_imapusersim`

build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<project name="dev-cn_imapusersim" default=".help">
2+
<project name="extjs-dev-imapusersim" default=".help">
33

44
<script language="javascript">
55
<![CDATA[

index.js

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/**
2+
* conjoon
3+
* extjs-dev-imapusersim
4+
* Copyright (C) 2019-2021 Thorsten Suckow-Homberg https://github.com/conjoon/extjs-dev-imapusersim
5+
*
6+
* Permission is hereby granted, free of charge, to any person
7+
* obtaining a copy of this software and associated documentation
8+
* files (the "Software"), to deal in the Software without restriction,
9+
* including without limitation the rights to use, copy, modify, merge,
10+
* publish, distribute, sublicense, and/or sell copies of the Software,
11+
* and to permit persons to whom the Software is furnished to do so,
12+
* subject to the following conditions:
13+
*
14+
* The above copyright notice and this permission notice shall be included
15+
* in all copies or substantial portions of the Software.
16+
*
17+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
19+
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20+
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
21+
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22+
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
23+
* USE OR OTHER DEALINGS IN THE SOFTWARE.
24+
*/
25+
26+
// intentionally left empty

licenses/MIT.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
conjoon
2-
dev-cn_imapusersim
3-
Copyright (C) 2019 Thorsten Suckow-Homberg https://github.com/conjoon/dev-cn_imapusersim
2+
extjs-dev-imapusersim
3+
Copyright (C) 2019-2021 Thorsten Suckow-Homberg https://github.com/conjoon/extjs-dev-imapusersim
44

55
Permission is hereby granted, free of charge, to any person
66
obtaining a copy of this software and associated documentation

licenses/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# dev-cn_imapusersim/licenses
1+
# extjs-dev-imapusersim/licenses
22

33
This folder contains the supported licenses for third-party use.

0 commit comments

Comments
 (0)