forked from tykayn/funky-framadate-front
Merge branch 'feature/refacto_config_service' into 'develop'
split config service & dispatch See merge request framasoft/framadate/funky-framadate-front!35
This commit is contained in:
commit
dedc70a0a6
@ -1,4 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
stories: ['../src/**/*.stories.ts'],
|
|
||||||
addons: ['@storybook/addon-actions', '@storybook/addon-links', '@storybook/addon-notes'],
|
|
||||||
};
|
|
@ -1,20 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "../tsconfig.app.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"types": [
|
|
||||||
"node"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"exclude": [
|
|
||||||
"../src/test.ts",
|
|
||||||
"../src/**/*.spec.ts",
|
|
||||||
"../projects/**/*.spec.ts"
|
|
||||||
],
|
|
||||||
"include": [
|
|
||||||
"../src/**/*",
|
|
||||||
"../projects/**/*"
|
|
||||||
],
|
|
||||||
"files": [
|
|
||||||
"./typings.d.ts"
|
|
||||||
]
|
|
||||||
}
|
|
4
.storybook/typings.d.ts
vendored
4
.storybook/typings.d.ts
vendored
@ -1,4 +0,0 @@
|
|||||||
declare module '*.md' {
|
|
||||||
const content: string;
|
|
||||||
export default content;
|
|
||||||
}
|
|
43
README.md
43
README.md
@ -1,27 +1,26 @@
|
|||||||
## LIBRARIES USED
|
## LIBRARIES USED
|
||||||
|
|
||||||
| lib name | usage |
|
| status | lib name | usage |
|
||||||
| ------------------------------------------------------------------ | -------------------------------------- |
|
| ------- | -------------------------------------------------------------- | -------------------------------------- |
|
||||||
| [axios](https://github.com/axios/axios) | http client |
|
| | [axios](https://github.com/axios/axios) | http client |
|
||||||
| [bulma](https://bulma.io/) | CSS framework |
|
| | [bulma](https://bulma.io/) | CSS framework |
|
||||||
| [chart.js](https://www.chartjs.org/) | Generate beautiful graphs |
|
| | [chart.js](https://www.chartjs.org/) | Display graphs. (Commes with MomentJS) |
|
||||||
| [compodoc](https://compodoc.app/) | Generate technic documentation |
|
| | [compodoc](https://compodoc.app/) | Generate technic documentation |
|
||||||
| [date-fns](https://date-fns.org) | manipulate dates |
|
| | [date-fns](https://date-fns.org) | manipulate dates |
|
||||||
| ESlint, Prettier, Lint-staged | Format & lint code |
|
| | ESlint, Prettier, Lint-staged | Format & lint code |
|
||||||
| [font-awesome](https://github.com/FortAwesome/angular-fontawesome) | Icons collection |
|
| | [fork-awesome](https://forkaweso.me) | Icons collection |
|
||||||
| [fullcalendar](https://fullcalendar.io/docs/initialize-es6) | Manage & display calendars |
|
| | [fullcalendar](https://fullcalendar.io/docs/initialize-es6) | Manage & display calendars |
|
||||||
| [husky](https://www.npmjs.com/package/husky) | Hook actions on commit |
|
| | [husky](https://www.npmjs.com/package/husky) | Hook actions on commit |
|
||||||
| [jest](https://jestjs.io/) | test engine |
|
| | [jest](https://jestjs.io/) | test engine |
|
||||||
| [locale-enum](https://www.npmjs.com/package/locale-enum) | enum of all locales |
|
| removed | [locale-enum](https://www.npmjs.com/package/locale-enum) | enum of all locales |
|
||||||
| [ngx-clipboard](https://www.npmjs.com/package/ngx-clipboard) | Handle clipboard |
|
| | [ngx-clipboard](https://www.npmjs.com/package/ngx-clipboard) | Handle clipboard |
|
||||||
| [ngx-markdown](https://www.npmjs.com/package/ngx-markdown) | markdown parser |
|
| | [ngx-markdown](https://www.npmjs.com/package/ngx-markdown) | markdown parser |
|
||||||
| [ngx-toaster](https://www.npmjs.com/package/ngx-toaster) | toast notifications |
|
| | [ngx-webstorage](https://www.npmjs.com/package/ngx-webstorage) | handle localStorage & webStorage |
|
||||||
| [ngx-webstorage](https://www.npmjs.com/package/ngx-webstorage) | handle localStorage & webStorage |
|
| | [primeNG](https://www.primefaces.org/primeng/) | UI components collection |
|
||||||
| [primeNG](https://www.primefaces.org/primeng/) | UI components collection |
|
| | [quill](https://www.npmjs.com/package/quill) | powerful rich text editor. WYSIWYG. |
|
||||||
| [quill](https://www.npmjs.com/package/quill) | powerful rich text editor. WYSIWYG. |
|
| removed | [storybook](https://storybook.js.org/) | StyleGuide UI |
|
||||||
| [storybook](https://storybook.js.org/) | StyleGuide UI |
|
| | [ts-mockito](https://www.npmjs.com/package/ts-mockito) | Mocks for testing. |
|
||||||
| [ts-mockito](https://www.npmjs.com/package/ts-mockito) | Mocks for testing. |
|
| | [uuid](https://www.npmjs.com/package/uuid) | handle client-side generation of uuids |
|
||||||
| [uuid](https://www.npmjs.com/package/uuid) | handle client-side generation of uuids |
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
32
angular.json
32
angular.json
@ -12,7 +12,7 @@
|
|||||||
},
|
},
|
||||||
"root": "",
|
"root": "",
|
||||||
"sourceRoot": "src",
|
"sourceRoot": "src",
|
||||||
"prefix": "framadate",
|
"prefix": "app",
|
||||||
"architect": {
|
"architect": {
|
||||||
"build": {
|
"build": {
|
||||||
"builder": "@angular-devkit/build-angular:browser",
|
"builder": "@angular-devkit/build-angular:browser",
|
||||||
@ -22,17 +22,13 @@
|
|||||||
"main": "src/main.ts",
|
"main": "src/main.ts",
|
||||||
"polyfills": "src/polyfills.ts",
|
"polyfills": "src/polyfills.ts",
|
||||||
"tsConfig": "tsconfig.app.json",
|
"tsConfig": "tsconfig.app.json",
|
||||||
"aot": true,
|
"assets": ["src/favicon.ico", "src/assets"],
|
||||||
"assets": [
|
|
||||||
"src/favicon.ico",
|
|
||||||
"src/assets"
|
|
||||||
],
|
|
||||||
"styles": [
|
"styles": [
|
||||||
|
"node_modules/fork-awesome/css/fork-awesome.min.css",
|
||||||
"node_modules/primeicons/primeicons.css",
|
"node_modules/primeicons/primeicons.css",
|
||||||
"node_modules/font-awesome/css/font-awesome.css",
|
|
||||||
"node_modules/primeng/resources/themes/nova-light/theme.css",
|
"node_modules/primeng/resources/themes/nova-light/theme.css",
|
||||||
"node_modules/primeng/resources/primeng.min.css",
|
"node_modules/primeng/resources/primeng.min.css",
|
||||||
"src/assets/scss/styles.scss"
|
"src/styles.scss"
|
||||||
],
|
],
|
||||||
"scripts": [
|
"scripts": [
|
||||||
"node_modules/marked/lib/marked.js",
|
"node_modules/marked/lib/marked.js",
|
||||||
@ -53,9 +49,11 @@
|
|||||||
"sourceMap": false,
|
"sourceMap": false,
|
||||||
"extractCss": true,
|
"extractCss": true,
|
||||||
"namedChunks": false,
|
"namedChunks": false,
|
||||||
|
"aot": true,
|
||||||
"extractLicenses": true,
|
"extractLicenses": true,
|
||||||
"vendorChunk": false,
|
"vendorChunk": false,
|
||||||
"buildOptimizer": true,
|
"buildOptimizer": true,
|
||||||
|
"crossOrigin": "anonymous",
|
||||||
"budgets": [
|
"budgets": [
|
||||||
{
|
{
|
||||||
"type": "initial",
|
"type": "initial",
|
||||||
@ -90,20 +88,13 @@
|
|||||||
},
|
},
|
||||||
"test": {
|
"test": {
|
||||||
"builder": "@angular-builders/jest:run",
|
"builder": "@angular-builders/jest:run",
|
||||||
"options": {
|
"options": {}
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"lint": {
|
"lint": {
|
||||||
"builder": "@angular-devkit/build-angular:tslint",
|
"builder": "@angular-devkit/build-angular:tslint",
|
||||||
"options": {
|
"options": {
|
||||||
"tsConfig": [
|
"tsConfig": ["tsconfig.app.json", "tsconfig.spec.json", "e2e/tsconfig.json"],
|
||||||
"tsconfig.app.json",
|
"exclude": ["**/node_modules/**"]
|
||||||
"tsconfig.spec.json",
|
|
||||||
"e2e/tsconfig.json"
|
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"**/node_modules/**"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"e2e": {
|
"e2e": {
|
||||||
@ -121,5 +112,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultProject": "framadate"
|
"defaultProject": "framadate",
|
||||||
|
"cli": {
|
||||||
|
"analytics": "0ba9c0a9-850f-4c5f-8124-cbe6f4c79ef1"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
3
babel.config.json
Normal file
3
babel.config.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"presets": ["@babel/preset-env"]
|
||||||
|
}
|
@ -1,42 +0,0 @@
|
|||||||
/**
|
|
||||||
*
|
|
||||||
* -------------------------- -------- -------- ------ ------------------------------------------------
|
|
||||||
Name Method Scheme Host Path
|
|
||||||
-------------------------- -------- -------- ------ ------------------------------------------------
|
|
||||||
_twig_error_test ANY ANY ANY /_error/{code}.{_format}
|
|
||||||
api_get_poll_comment GET ANY ANY /poll/{id}/comments
|
|
||||||
api_new_comment POST ANY ANY /poll/{id}/comment
|
|
||||||
api_poll_comments_delete DELETE ANY ANY /poll/{id}/comments
|
|
||||||
api_send_user_polls GET ANY ANY /send-polls-to-user/{email}
|
|
||||||
homepageget_default GET ANY ANY /
|
|
||||||
api_get_all_polls GET ANY ANY /poll/
|
|
||||||
api_get_poll GET ANY ANY /poll/{id}
|
|
||||||
api_update_poll PUT ANY ANY /poll/{id}/{token}
|
|
||||||
api_new_poll POST ANY ANY /poll/
|
|
||||||
api_test-mail-poll GET ANY ANY /poll/mail/test-mail-poll/{emailChoice}
|
|
||||||
api_poll_delete DELETE ANY ANY /poll/{id}
|
|
||||||
api_clean_expired_polls GET ANY ANY /poll/clean-polls
|
|
||||||
api_check_slug_is_unique GET ANY ANY /poll/admin/{token}
|
|
||||||
api_new_vote_stack POST ANY ANY /poll/{id}/vote
|
|
||||||
api_update_vote_stack PATCH ANY ANY /vote-stack/{id}/token/{modifierToken}
|
|
||||||
api_poll_votes_delete DELETE ANY ANY /poll/{id}/votes/{accessToken}
|
|
||||||
app.swagger GET ANY ANY /doc.json
|
|
||||||
-------------------------- -------- -------- ------ ------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* WANTED CHANGES (seraf)
|
|
||||||
* -------------------------- -------- -------- ------ ------------------------------------------------
|
|
||||||
Name Method Scheme Host Path
|
|
||||||
-------------------------- -------- -------- ------ ------------------------------------------------
|
|
||||||
api_get_poll_comment GET ANY ANY /poll/{id}/comment
|
|
||||||
api_delete_poll_comments DELETE ANY ANY /poll/{id}/comment
|
|
||||||
api_user_polls_send_by_email GET ANY ANY /user/{email}/polls/send-by-email
|
|
||||||
api_get_user_polls GET ANY ANY /user/{email}/polls
|
|
||||||
api_get_poll_slug GET ANY ANY /poll/slug/{id}/{token}
|
|
||||||
api_clean_expired_polls GET ANY ANY /admin/clean-polls/{token}
|
|
||||||
|
|
||||||
api_test-mail-poll GET ANY ANY /poll/mail/test-mail-poll/{emailChoice}
|
|
||||||
api_update_vote_stack PATCH ANY ANY /vote-stack/{id}/token/{modifierToken}
|
|
||||||
-------------------------- -------- -------- ------ ------------------------------------------------
|
|
||||||
*/
|
|
46
backend-api-endpoints-doc.txt
Normal file
46
backend-api-endpoints-doc.txt
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
// TODO: File to be deleted : just temporary documentation of backend API endpoints
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* -------------------------- -------- -------- ------ ------------------------------------------------
|
||||||
|
Name Method Scheme Host Path
|
||||||
|
-------------------------- -------- -------- ------ ------------------------------------------------
|
||||||
|
_twig_error_test ANY ANY ANY /_error/{code}.{_format}
|
||||||
|
admin_homepage_get_default GET ANY ANY /admin/
|
||||||
|
admin_homepage_clean_expired_polls GET ANY ANY /admin/polls/clean/{token}
|
||||||
|
api_get_poll_comment GET ANY ANY /polls/{id}/comments
|
||||||
|
api_new_comment POST ANY ANY /polls/{id}/comments
|
||||||
|
api_poll_comments_delete DELETE ANY ANY /polls/{id}/comments
|
||||||
|
user_homepageget_default GET ANY ANY /users/
|
||||||
|
user_homepage_polls_send_by_email GET ANY ANY /users/{email}/polls/send-by-email
|
||||||
|
api_get_all_polls GET ANY ANY /polls/
|
||||||
|
api_get_poll GET ANY ANY /polls/{id}
|
||||||
|
api_update_poll PUT ANY ANY /polls/{id}/{token}
|
||||||
|
api_new_poll POST ANY ANY /polls/
|
||||||
|
api_test-mail-polls GET ANY ANY /polls/mail/test-mail-polls/{emailChoice}
|
||||||
|
api_poll_delete DELETE ANY ANY /polls/{id}
|
||||||
|
api_check_slug_is_unique GET ANY ANY /polls/slugs/{slug}
|
||||||
|
api_get_admin_config GET ANY ANY /polls/admin/{token}
|
||||||
|
api_new_vote_stack POST ANY ANY /polls/{id}/votes
|
||||||
|
api_update_vote_stack PATCH ANY ANY /votes-stacks/{id}/token/{modifierToken}
|
||||||
|
api_poll_votes_delete DELETE ANY ANY /polls/{id}/votes/{accessToken}
|
||||||
|
app.swagger GET ANY ANY /api/doc.json
|
||||||
|
-------------------------- -------- -------- ------ ------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* WANTED CHANGES (seraf)
|
||||||
|
* -------------------------- -------- -------- ------ ------------------------------------------------
|
||||||
|
Name Method Scheme Host Path
|
||||||
|
-------------------------- -------- -------- ------ ------------------------------------------------
|
||||||
|
api_get_poll_comment GET ANY ANY /polls/{id}/comment
|
||||||
|
api_delete_poll_comments DELETE ANY ANY /polls/{id}/comment
|
||||||
|
api_user_polls_send_by_email GET ANY ANY /users/{email}/polls/send-by-email
|
||||||
|
api_get_user_polls GET ANY ANY /users/{email}/polls
|
||||||
|
api_get_poll_slug GET ANY ANY /polls/slug/{id}/{token}
|
||||||
|
api_clean_expired_polls GET ANY ANY /admin/clean-polls/{token}
|
||||||
|
|
||||||
|
api_test-mail-polls GET ANY ANY /polls/mail/test-mail-polls/{emailChoice}
|
||||||
|
api_update_vote_stack PATCH ANY ANY /votes-stack/{id}/token/{modifierToken}
|
||||||
|
-------------------------- -------- -------- ------ ------------------------------------------------
|
||||||
|
*/
|
@ -4,10 +4,6 @@
|
|||||||
"outDir": "../out-tsc/e2e",
|
"outDir": "../out-tsc/e2e",
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"target": "es5",
|
"target": "es5",
|
||||||
"types": [
|
"types": ["jasmine", "jasminewd2", "node"]
|
||||||
"jasmine",
|
|
||||||
"jasminewd2",
|
|
||||||
"node"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
import 'jest-preset-angular';
|
|
||||||
// const { defaults } = require('jest-config');
|
|
||||||
|
|
||||||
//
|
|
||||||
// module.exports = {
|
|
||||||
// verbose: true,
|
|
||||||
// collectCoverage: true,
|
|
||||||
// // collectCoverageFrom: ['src/**/*.ts'],
|
|
||||||
// collectCoverageFrom: ['src/app/pages/admin/*.ts'],
|
|
||||||
// };
|
|
||||||
Error.stackTraceLimit = 2;
|
|
72
package.json
72
package.json
@ -1,15 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "framadate-funky-frontend",
|
"name": "framadate-funky-frontend",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"licence": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
"compodoc": "compodoc -p tsconfig.json",
|
"build": "ng build --prod --progress=true",
|
||||||
"build": "ng build --crossOrigin=anonymous --prod",
|
"build-prod-stats": "ng build --prod --stats-json",
|
||||||
"package": "cat dist/framadate/*.js > dist/framadate/framadate-scripts-bundled.js && ls -l dist/framadate",
|
|
||||||
"bld:pkg": "npm run build && npm run package",
|
|
||||||
"build:demo": "ng build --crossOrigin=anonymous --extractCss=true --progress=true --prod && npm run package",
|
|
||||||
"test": "jest",
|
"test": "jest",
|
||||||
"test:watch": "jest --watch",
|
"test:watch": "jest --watch",
|
||||||
"test:ci": "jest --runInBand",
|
"test:ci": "jest --runInBand",
|
||||||
@ -18,13 +15,12 @@
|
|||||||
"format:check": "prettier --list-different \"src/{app,environments,assets}/**/*{.ts,.js,.json,.css,.scss}\"",
|
"format:check": "prettier --list-different \"src/{app,environments,assets}/**/*{.ts,.js,.json,.css,.scss}\"",
|
||||||
"format:all": "prettier --write \"src/**/*.{js,jsx,ts,tsx,md,html,css,scss}\"",
|
"format:all": "prettier --write \"src/**/*.{js,jsx,ts,tsx,md,html,css,scss}\"",
|
||||||
"trans": "ng xi18n --output-path=src/locale --i18n-locale=fr",
|
"trans": "ng xi18n --output-path=src/locale --i18n-locale=fr",
|
||||||
"storybook": "start-storybook -p 6006",
|
"compodoc": "compodoc -p tsconfig.app.json"
|
||||||
"build-storybook": "build-storybook"
|
|
||||||
},
|
},
|
||||||
"private": false,
|
"private": false,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^9.1.1",
|
"@angular/animations": "^9.1.1",
|
||||||
"@angular/cdk": "^9.2.0",
|
"@angular/cdk": "^9.2.2",
|
||||||
"@angular/common": "^9.0.7",
|
"@angular/common": "^9.0.7",
|
||||||
"@angular/compiler": "^9.0.7",
|
"@angular/compiler": "^9.0.7",
|
||||||
"@angular/core": "^9.0.7",
|
"@angular/core": "^9.0.7",
|
||||||
@ -39,57 +35,50 @@
|
|||||||
"angular-date-value-accessor": "^1.0.2",
|
"angular-date-value-accessor": "^1.0.2",
|
||||||
"axios": "^0.19.2",
|
"axios": "^0.19.2",
|
||||||
"bulma": "^0.8.2",
|
"bulma": "^0.8.2",
|
||||||
"chart.js": "^2.8.0",
|
"chart.js": "^2.9.3",
|
||||||
"date-fns": "^2.12.0",
|
"date-fns": "^2.12.0",
|
||||||
"font-awesome": "^4.7.0",
|
"fork-awesome": "^1.1.7",
|
||||||
"jest-preset-angular": "^8.1.3",
|
|
||||||
"karma-coverage": "^2.0.1",
|
|
||||||
"karma-firefox-launcher": "^1.3.0",
|
|
||||||
"karma-phantomjs-launcher": "^1.0.4",
|
|
||||||
"locale-enum": "^1.1.0",
|
|
||||||
"ngx-clipboard": "^13.0.0",
|
"ngx-clipboard": "^13.0.0",
|
||||||
"ngx-markdown": "^9.0.0",
|
"ngx-markdown": "^9.0.0",
|
||||||
"ngx-toaster": "^1.0.1",
|
"ngx-webstorage": "^5.0.0",
|
||||||
"primeicons": "^2.0.0",
|
"primeicons": "^2.0.0",
|
||||||
"primeng": "^9.0.5",
|
"primeng": "^9.0.6",
|
||||||
"quill": "^1.3.7",
|
"quill": "^1.3.7",
|
||||||
"rxjs": "^6.5.5",
|
"rxjs": "^6.5.5",
|
||||||
"rxjs-compat": "^6.5.5",
|
"rxjs-compat": "^6.5.5",
|
||||||
"tslib": "^1.11.1",
|
"tslib": "^1.11.1",
|
||||||
"uuid": "^7.0.3",
|
"uuid": "^8.0.0",
|
||||||
"zone.js": "^0.10.3"
|
"zone.js": "^0.10.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-builders/jest": "^9.0.1",
|
"@angular-builders/jest": "^9.0.1",
|
||||||
"@angular-devkit/build-angular": "^0.901.1",
|
"@angular-devkit/build-angular": "^0.901.2",
|
||||||
"@angular/cli": "^9.0.7",
|
"@angular/cli": "^9.1.2",
|
||||||
"@angular/compiler-cli": "^9.1.1",
|
"@angular/compiler-cli": "^9.1.1",
|
||||||
"@angular/language-service": "^9.0.7",
|
"@angular/language-service": "^9.0.7",
|
||||||
"@babel/core": "^7.9.0",
|
"@babel/core": "^7.9.0",
|
||||||
"@storybook/addon-actions": "^5.3.18",
|
"@babel/preset-env": "^7.9.5",
|
||||||
"@storybook/addon-links": "^5.3.18",
|
"@babel/preset-typescript": "^7.9.0",
|
||||||
"@storybook/addon-notes": "^5.3.18",
|
"@compodoc/compodoc": "^1.1.11",
|
||||||
"@storybook/addons": "^5.3.18",
|
|
||||||
"@storybook/angular": "^5.3.18",
|
|
||||||
"@types/jasminewd2": "~2.0.8",
|
|
||||||
"@types/jest": "^25.2.1",
|
"@types/jest": "^25.2.1",
|
||||||
"@types/node": "^13.11.1",
|
"@types/node": "^13.13.2",
|
||||||
"@types/uuid": "^7.0.2",
|
"@types/uuid": "^7.0.2",
|
||||||
"@typescript-eslint/eslint-plugin": "^2.27.0",
|
"@typescript-eslint/eslint-plugin": "^2.27.0",
|
||||||
"@typescript-eslint/parser": "^2.27.0",
|
"@typescript-eslint/parser": "^2.27.0",
|
||||||
"babel-loader": "^8.1.0",
|
"babel-jest": "^25.4.0",
|
||||||
"compodoc": "^0.0.41",
|
|
||||||
"eslint": "^6.8.0",
|
"eslint": "^6.8.0",
|
||||||
"eslint-config-prettier": "^6.10.1",
|
"eslint-config-prettier": "^6.11.0",
|
||||||
"eslint-plugin-prettier": "^3.1.3",
|
"eslint-plugin-prettier": "^3.1.3",
|
||||||
"husky": "^4.2.5",
|
"husky": "^4.2.5",
|
||||||
"jasmine-core": "~3.5.0",
|
"jest": "^25.5.1",
|
||||||
"jasmine-spec-reporter": "~5.0.1",
|
"jest-environment-jsdom-sixteen": "^1.0.3",
|
||||||
"jest": "^25.3.0",
|
"jest-preset-angular": "^8.1.3",
|
||||||
"lint-staged": "^10.1.3",
|
"lint-staged": "^10.1.7",
|
||||||
"prettier": "^2.0.4",
|
"prettier": "^2.0.5",
|
||||||
"protractor": "~5.4.3",
|
"protractor": "~5.4.3",
|
||||||
"ts-node": "~8.8.2",
|
"ts-jest": "^25.4.0",
|
||||||
|
"ts-mockito": "^2.5.0",
|
||||||
|
"ts-node": "~8.9.0",
|
||||||
"typescript": "~3.8.3"
|
"typescript": "~3.8.3"
|
||||||
},
|
},
|
||||||
"husky": {
|
"husky": {
|
||||||
@ -106,6 +95,13 @@
|
|||||||
},
|
},
|
||||||
"jest": {
|
"jest": {
|
||||||
"preset": "jest-preset-angular",
|
"preset": "jest-preset-angular",
|
||||||
"setupFilesAfterEnv": "./jest.config.js"
|
"setupFilesAfterEnv": [
|
||||||
|
"<rootDir>/src/jest.setup.ts"
|
||||||
|
],
|
||||||
|
"testEnvironment": "jest-environment-jsdom-sixteen",
|
||||||
|
"transform": {
|
||||||
|
"^.+\\.(ts|html)$": "ts-jest",
|
||||||
|
"^.+\\.jsx?$": "babel-jest"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,49 +1,35 @@
|
|||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { RouterModule, Routes } from '@angular/router';
|
import { RouterModule, Routes } from '@angular/router';
|
||||||
|
|
||||||
import { AdminComponent } from './pages/admin/admin.component';
|
import { HomeComponent } from './core/components/home/home.component';
|
||||||
import { AnswersComponent } from './pages/answers/answers.component';
|
import { LoginComponent } from './core/components/login/login.component';
|
||||||
import { BaseComponent } from './pages/example/base-page/base.component';
|
import { PageNotFoundComponent } from './shared/components/page-not-found/page-not-found.component';
|
||||||
import { CreateOrRetrieveComponent } from './pages/create-or-retrieve/create-or-retrieve.component';
|
|
||||||
import { DatesComponent } from './pages/dates/dates.component';
|
|
||||||
import { EndConfirmationComponent } from './pages/end-confirmation/end-confirmation.component';
|
|
||||||
import { HomeComponent } from './pages/home/home.component';
|
|
||||||
import { KindComponent } from './pages/example/kind/kind.component';
|
|
||||||
import { PasswordComponent } from './pages/password/password.component';
|
|
||||||
import { PicturesComponent } from './pages/example/pictures/pictures.component';
|
|
||||||
import { PollDisplayComponent } from './pages/poll/poll-display/poll-display.component';
|
|
||||||
import { ResumeComponent } from './pages/resume/resume.component';
|
|
||||||
import { VisibilityComponent } from './pages/visibility/visibility.component';
|
|
||||||
import { VotingChoiceComponent } from './pages/voting/voting-choice/voting-choice.component';
|
|
||||||
import { VotingComponent } from './pages/voting/voting.component';
|
|
||||||
import { PollGraphicComponent } from './pages/poll/poll-graphic/poll-graphic.component';
|
|
||||||
|
|
||||||
const routes: Routes = [
|
const routes: Routes = [
|
||||||
{ path: '', redirectTo: 'step/creation', pathMatch: 'full' },
|
{ path: '', component: HomeComponent },
|
||||||
{ path: 'admin/:token', component: AdminComponent }, // http://localhost:4200/#/admin/srfdgedsTGETHRYJtujTUjTUkTIUKTK
|
{ path: 'login', component: LoginComponent },
|
||||||
{ path: 'home', component: HomeComponent },
|
{
|
||||||
{ path: 'base', component: BaseComponent },
|
path: 'administration',
|
||||||
{ path: 'step/base', component: BaseComponent },
|
loadChildren: () =>
|
||||||
{ path: 'step/creation', component: CreateOrRetrieveComponent },
|
import('./features/administration/administration.module').then((m) => m.AdministrationModule),
|
||||||
{ path: 'step/date', component: DatesComponent },
|
},
|
||||||
{ path: 'step/kind', component: KindComponent },
|
{
|
||||||
{ path: 'step/answers', component: AnswersComponent },
|
path: 'participation',
|
||||||
{ path: 'step/admin', component: AdminComponent },
|
loadChildren: () => import('./features/participation/participation.module').then((m) => m.ParticipationModule),
|
||||||
{ path: 'step/pictures', component: PicturesComponent },
|
},
|
||||||
{ path: 'step/visibility', component: VisibilityComponent },
|
{
|
||||||
{ path: 'step/resume', component: ResumeComponent },
|
path: 'oldstuff',
|
||||||
{ path: 'step/end', component: EndConfirmationComponent },
|
loadChildren: () => import('./features/old-stuff/old-stuff.module').then((m) => m.OldStuffModule),
|
||||||
{ path: 'graphic/:poll', component: PollGraphicComponent },
|
},
|
||||||
{ path: 'vote/poll/id/:poll', component: PollDisplayComponent },
|
{ path: '**', component: PageNotFoundComponent },
|
||||||
{ path: 'vote/poll/slug/:pollSlug', component: PollDisplayComponent },
|
|
||||||
{ path: 'votingchoice', component: VotingChoiceComponent },
|
|
||||||
{ path: 'voting', component: VotingComponent },
|
|
||||||
{ path: 'step/password', component: PasswordComponent },
|
|
||||||
{ path: '**', redirectTo: '/home', pathMatch: 'full' },
|
|
||||||
];
|
];
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [RouterModule.forRoot(routes, { useHash: true, anchorScrolling: 'enabled' })],
|
imports: [
|
||||||
|
RouterModule.forRoot(routes, {
|
||||||
|
// enableTracing: true, // <-- debugging purposes only
|
||||||
|
}),
|
||||||
|
],
|
||||||
exports: [RouterModule],
|
exports: [RouterModule],
|
||||||
})
|
})
|
||||||
export class AppRoutingModule {}
|
export class AppRoutingModule {}
|
||||||
|
@ -1,31 +1,15 @@
|
|||||||
<div id="big_container" class="{{ this.config.preferences.themeClass }}">
|
<div id="big_container" [class]="themeClass">
|
||||||
<header class="big-header">
|
<app-header [isSidebarOpened]="isSidebarOpened" (toggleSidebarEE)="toggleSidebar($event)"></app-header>
|
||||||
<div class="container">
|
|
||||||
<div class="columns">
|
|
||||||
<div class="column">
|
|
||||||
<framadate-master-head></framadate-master-head>
|
|
||||||
</div>
|
|
||||||
<div class="column">
|
|
||||||
<framadate-language></framadate-language>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<div class="container">
|
|
||||||
<div class="columns">
|
|
||||||
<div class="column is-one-quarter togglable-menu" *ngIf="config.menuVisible">
|
|
||||||
<framadate-theme-selector></framadate-theme-selector>
|
|
||||||
|
|
||||||
<framadate-navigation [step]="step"></framadate-navigation>
|
|
||||||
<framadate-debugger *ngIf="isDevelopmentEnv"></framadate-debugger>
|
|
||||||
</div>
|
|
||||||
<div class="column">
|
|
||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</main>
|
</main>
|
||||||
<p-toast position="top-right"></p-toast>
|
|
||||||
|
<app-footer></app-footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<p-toast position="bottom-center"></p-toast>
|
||||||
|
|
||||||
|
<p-sidebar [(visible)]="isSidebarOpened">
|
||||||
|
<app-navigation></app-navigation>
|
||||||
|
</p-sidebar>
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
@charset "UTF-8";
|
|
||||||
|
|
||||||
.big-header {
|
|
||||||
padding: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
i {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.language-selector {
|
|
||||||
width: auto;
|
|
||||||
}
|
|
@ -1,55 +1,57 @@
|
|||||||
import { Component, Inject } from '@angular/core';
|
import { Component, OnDestroy, OnInit } from '@angular/core';
|
||||||
import { TranslateService } from '@ngx-translate/core';
|
import { Title } from '@angular/platform-browser';
|
||||||
import { NavigationStart, Router } from '@angular/router';
|
import { Subscription } from 'rxjs';
|
||||||
import { DOCUMENT } from '@angular/common';
|
|
||||||
import { filter } from 'rxjs/operators';
|
|
||||||
import { ConfigService } from './services/config.service';
|
|
||||||
import { environment } from '../environments/environment';
|
import { environment } from '../environments/environment';
|
||||||
|
import { Theme } from './core/enums/theme.enum';
|
||||||
|
import { UserRole } from './core/enums/user-role.enum';
|
||||||
|
import { MockingService } from './core/services/mocking.service';
|
||||||
|
import { ThemeService } from './core/services/theme.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-root',
|
selector: 'app-root',
|
||||||
templateUrl: './app.component.html',
|
templateUrl: './app.component.html',
|
||||||
styleUrls: ['./app.component.scss'],
|
styleUrls: ['./app.component.scss'],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent implements OnInit, OnDestroy {
|
||||||
step: string;
|
public appTitle: string = environment.appTitle;
|
||||||
isDevelopmentEnv = false;
|
public themeClass: string;
|
||||||
|
public isSidebarOpened = false;
|
||||||
|
private themeSubscription: Subscription;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private translate: TranslateService,
|
private titleService: Title,
|
||||||
public config: ConfigService,
|
private themeService: ThemeService,
|
||||||
@Inject(DOCUMENT) private document,
|
private mockingService: MockingService
|
||||||
private route: Router
|
) {}
|
||||||
) {
|
|
||||||
this.detectCurrentTabOnRouteChange();
|
|
||||||
|
|
||||||
this.isDevelopmentEnv = !environment.production;
|
ngOnInit(): void {
|
||||||
|
if (!environment.production) {
|
||||||
|
this.appTitle += ' [DEV]';
|
||||||
|
this.mockingService.loadUser(UserRole.REGISTERED);
|
||||||
|
}
|
||||||
|
this.titleService.setTitle(this.appTitle);
|
||||||
|
this.themeSubscription = this.themeService.theme.subscribe((theme: Theme) => {
|
||||||
|
switch (theme) {
|
||||||
|
case Theme.DARK:
|
||||||
|
this.themeClass = 'theme-dark-crystal';
|
||||||
|
break;
|
||||||
|
case Theme.RED:
|
||||||
|
this.themeClass = 'theme-hot-covid';
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
this.themeClass = 'theme-light-watermelon';
|
||||||
}
|
}
|
||||||
|
|
||||||
detectCurrentTabOnRouteChange() {
|
|
||||||
this.route.events.subscribe((event: any) => {});
|
|
||||||
this.route.events
|
|
||||||
.pipe(filter((event) => event instanceof NavigationStart))
|
|
||||||
.subscribe((event: NavigationStart) => {
|
|
||||||
this.scrollGoToTop();
|
|
||||||
this.updateCurrentTab(event);
|
|
||||||
// only if there is a poll ID
|
|
||||||
this.config.fetchPollFromRoute(event);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
scrollGoToTop() {
|
ngOnDestroy(): void {
|
||||||
this.document.documentElement.scrollTop = 0;
|
if (this.themeSubscription) {
|
||||||
|
this.themeSubscription.unsubscribe();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
updateCurrentTab(event) {
|
public toggleSidebar(status: boolean): void {
|
||||||
if (event.url) {
|
this.isSidebarOpened = status === true;
|
||||||
const tab = event.url.split('/');
|
|
||||||
if (tab && tab[2]) {
|
|
||||||
this.step = tab[2];
|
|
||||||
} else {
|
|
||||||
this.step = 'home';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
import { CommonModule, registerLocaleData } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { HttpClient, HttpClientModule } from '@angular/common/http';
|
import { HttpClient, HttpClientModule } from '@angular/common/http';
|
||||||
import localeEn from '@angular/common/locales/en';
|
|
||||||
import localeFr from '@angular/common/locales/fr';
|
|
||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { FormsModule } from '@angular/forms';
|
import { FormsModule } from '@angular/forms';
|
||||||
import { BrowserModule } from '@angular/platform-browser';
|
import { BrowserModule, Title } from '@angular/platform-browser';
|
||||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
||||||
import {
|
import {
|
||||||
MissingTranslationHandler,
|
MissingTranslationHandler,
|
||||||
@ -16,127 +14,54 @@ import {
|
|||||||
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
|
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
|
||||||
import { ClipboardModule } from 'ngx-clipboard';
|
import { ClipboardModule } from 'ngx-clipboard';
|
||||||
import { MarkdownModule } from 'ngx-markdown';
|
import { MarkdownModule } from 'ngx-markdown';
|
||||||
import { ConfirmationService, MessageModule, MessageService } from 'primeng';
|
import { NgxWebstorageModule } from 'ngx-webstorage';
|
||||||
import { ConfirmDialogModule } from 'primeng/confirmdialog';
|
|
||||||
import { DialogModule } from 'primeng/dialog';
|
|
||||||
import { ToastModule } from 'primeng/toast';
|
|
||||||
|
|
||||||
|
import { environment } from '../environments/environment';
|
||||||
import { AppRoutingModule } from './app-routing.module';
|
import { AppRoutingModule } from './app-routing.module';
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
import { DateValueAccessorModule } from './custom-lib/date-value-accessor';
|
import { CoreModule } from './core/core.module';
|
||||||
import { DebuggerComponent } from './ui/debugger/debugger.component';
|
import { OldStuffModule } from './features/old-stuff/old-stuff.module';
|
||||||
import { HeaderComponent } from './ui/navigation/header/header.component';
|
import { SharedModule } from './shared/shared.module';
|
||||||
import { AdminComponent } from './pages/admin/admin.component';
|
|
||||||
import { AnswersComponent } from './pages/answers/answers.component';
|
|
||||||
import { BaseComponent } from './pages/example/base-page/base.component';
|
|
||||||
import { CreateOrRetrieveComponent } from './pages/create-or-retrieve/create-or-retrieve.component';
|
|
||||||
import { DatesComponent } from './pages/dates/dates.component';
|
|
||||||
import { EndConfirmationComponent } from './pages/end-confirmation/end-confirmation.component';
|
|
||||||
import { HomeComponent } from './pages/home/home.component';
|
|
||||||
import { KindComponent } from './pages/example/kind/kind.component';
|
|
||||||
import { PasswordComponent } from './pages/password/password.component';
|
|
||||||
import { PicturesComponent } from './pages/example/pictures/pictures.component';
|
|
||||||
import { PollDisplayComponent } from './pages/poll/poll-display/poll-display.component';
|
|
||||||
import { ResumeComponent } from './pages/resume/resume.component';
|
|
||||||
import { VisibilityComponent } from './pages/visibility/visibility.component';
|
|
||||||
import { ChoicesListComponent } from './pages/voting/choices-list/choices-list.component';
|
|
||||||
import { CommentsListComponent } from './pages/voting/comments-list/comments-list.component';
|
|
||||||
import { VotingChoiceComponent } from './pages/voting/voting-choice/voting-choice.component';
|
|
||||||
import { VotingCommentComponent } from './pages/voting/voting-comment/voting-comment.component';
|
|
||||||
import { VotingGraphComponent } from './pages/voting/voting-graph/voting-graph.component';
|
|
||||||
import { VotingNavigationComponent } from './pages/voting/voting-navigation/voting-navigation.component';
|
|
||||||
import { VotingSummaryComponent } from './pages/voting/voting-summary/voting-summary.component';
|
|
||||||
import { VotingComponent } from './pages/voting/voting.component';
|
|
||||||
import { PollGraphicComponent } from './pages/poll/poll-graphic/poll-graphic.component';
|
|
||||||
import { ConfigService } from './services/config.service';
|
|
||||||
import { CopyTextComponent } from './ui/copy-text/copy-text.component';
|
|
||||||
import { ResettableInputDirective } from './ui/directives/resettable-input.directive';
|
|
||||||
import { ErasableInputComponent } from './ui/erasable-input/erasable-input.component';
|
|
||||||
import { MasterHeadComponent } from './ui/navigation/master-head/master-head.component';
|
|
||||||
import { NavigationComponent } from './ui/navigation/navigation.component';
|
|
||||||
import { LanguageComponent } from './ui/selector/language/language.component';
|
|
||||||
import { SelectorComponent } from './ui/selector/selector.component';
|
|
||||||
import { ThemeSelectorComponent } from './ui/selector/theme-selector/theme-selector.component';
|
|
||||||
import { TwoLinksComponent } from './ui/navigation/two-links/two-links.component';
|
|
||||||
|
|
||||||
export class MyMissingTranslationHandler implements MissingTranslationHandler {
|
export class MyMissingTranslationHandler implements MissingTranslationHandler {
|
||||||
handle(params: MissingTranslationHandlerParams) {
|
public handle(params: MissingTranslationHandlerParams): string {
|
||||||
return 'some value';
|
return `MISSING TRANSLATION FOR [${params.key}]`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
registerLocaleData(localeFr, 'fr');
|
|
||||||
registerLocaleData(localeEn, 'en');
|
|
||||||
|
|
||||||
export function HttpLoaderFactory(http: HttpClient): TranslateHttpLoader {
|
export function HttpLoaderFactory(http: HttpClient): TranslateHttpLoader {
|
||||||
return new TranslateHttpLoader(http);
|
return new TranslateHttpLoader(http);
|
||||||
}
|
}
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [
|
declarations: [AppComponent],
|
||||||
AppComponent,
|
|
||||||
BaseComponent,
|
|
||||||
KindComponent,
|
|
||||||
HeaderComponent,
|
|
||||||
NavigationComponent,
|
|
||||||
DatesComponent,
|
|
||||||
DebuggerComponent,
|
|
||||||
VisibilityComponent,
|
|
||||||
ResumeComponent,
|
|
||||||
PicturesComponent,
|
|
||||||
AnswersComponent,
|
|
||||||
EndConfirmationComponent,
|
|
||||||
CreateOrRetrieveComponent,
|
|
||||||
VotingSummaryComponent,
|
|
||||||
VotingGraphComponent,
|
|
||||||
VotingChoiceComponent,
|
|
||||||
PasswordComponent,
|
|
||||||
HomeComponent,
|
|
||||||
PollGraphicComponent,
|
|
||||||
AdminComponent,
|
|
||||||
SelectorComponent,
|
|
||||||
PollDisplayComponent,
|
|
||||||
VotingComponent,
|
|
||||||
VotingCommentComponent,
|
|
||||||
ResettableInputDirective,
|
|
||||||
ErasableInputComponent,
|
|
||||||
CopyTextComponent,
|
|
||||||
CommentsListComponent,
|
|
||||||
ChoicesListComponent,
|
|
||||||
VotingNavigationComponent,
|
|
||||||
ThemeSelectorComponent,
|
|
||||||
MasterHeadComponent,
|
|
||||||
LanguageComponent,
|
|
||||||
TwoLinksComponent,
|
|
||||||
],
|
|
||||||
imports: [
|
imports: [
|
||||||
ConfirmDialogModule,
|
AppRoutingModule,
|
||||||
|
BrowserAnimationsModule,
|
||||||
|
BrowserModule,
|
||||||
ClipboardModule,
|
ClipboardModule,
|
||||||
CommonModule,
|
CommonModule,
|
||||||
BrowserModule,
|
CoreModule,
|
||||||
DialogModule,
|
FormsModule,
|
||||||
DateValueAccessorModule,
|
HttpClientModule,
|
||||||
BrowserAnimationsModule,
|
|
||||||
AppRoutingModule,
|
|
||||||
ToastModule,
|
|
||||||
MessageModule,
|
|
||||||
MarkdownModule.forRoot(),
|
MarkdownModule.forRoot(),
|
||||||
|
NgxWebstorageModule.forRoot({ prefix: environment.localStorage.key }),
|
||||||
|
SharedModule,
|
||||||
TranslateModule.forRoot({
|
TranslateModule.forRoot({
|
||||||
missingTranslationHandler: {
|
|
||||||
provide: MissingTranslationHandler,
|
|
||||||
useClass: MyMissingTranslationHandler,
|
|
||||||
},
|
|
||||||
// useDefaultLang: false,
|
|
||||||
loader: {
|
loader: {
|
||||||
provide: TranslateLoader,
|
provide: TranslateLoader,
|
||||||
useFactory: HttpLoaderFactory,
|
useFactory: HttpLoaderFactory,
|
||||||
deps: [HttpClient],
|
deps: [HttpClient],
|
||||||
},
|
},
|
||||||
|
missingTranslationHandler: {
|
||||||
|
provide: MissingTranslationHandler,
|
||||||
|
useClass: MyMissingTranslationHandler,
|
||||||
|
},
|
||||||
|
useDefaultLang: false,
|
||||||
}),
|
}),
|
||||||
HttpClientModule,
|
OldStuffModule,
|
||||||
FormsModule,
|
|
||||||
],
|
],
|
||||||
providers: [TranslateService, ConfigService, MessageService, ConfirmationService],
|
providers: [Title, TranslateService],
|
||||||
bootstrap: [AppComponent],
|
bootstrap: [AppComponent],
|
||||||
})
|
})
|
||||||
export class AppModule {}
|
export class AppModule {}
|
||||||
|
9
src/app/core/components/footer/footer.component.html
Normal file
9
src/app/core/components/footer/footer.component.html
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<footer class="footer">
|
||||||
|
<div class="content has-text-centered">
|
||||||
|
<p>
|
||||||
|
<strong>Bulma</strong> by <a href="https://jgthms.com">Jeremy Thomas</a>. The source code is licensed
|
||||||
|
<a href="http://opensource.org/licenses/mit-license.php">MIT</a>. The website content is licensed
|
||||||
|
<a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY NC SA 4.0</a>.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</footer>
|
@ -1,19 +1,19 @@
|
|||||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
import { DebuggerComponent } from './debugger.component';
|
import { FooterComponent } from './footer.component';
|
||||||
|
|
||||||
describe('DebuggerComponent', () => {
|
describe('FooterComponent', () => {
|
||||||
let component: DebuggerComponent;
|
let component: FooterComponent;
|
||||||
let fixture: ComponentFixture<DebuggerComponent>;
|
let fixture: ComponentFixture<FooterComponent>;
|
||||||
|
|
||||||
beforeEach(async(() => {
|
beforeEach(async(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [DebuggerComponent],
|
declarations: [FooterComponent],
|
||||||
}).compileComponents();
|
}).compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
fixture = TestBed.createComponent(DebuggerComponent);
|
fixture = TestBed.createComponent(FooterComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
12
src/app/core/components/footer/footer.component.ts
Normal file
12
src/app/core/components/footer/footer.component.ts
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-footer',
|
||||||
|
templateUrl: './footer.component.html',
|
||||||
|
styleUrls: ['./footer.component.scss'],
|
||||||
|
})
|
||||||
|
export class FooterComponent implements OnInit {
|
||||||
|
constructor() {}
|
||||||
|
|
||||||
|
ngOnInit(): void {}
|
||||||
|
}
|
74
src/app/core/components/header/header.component.html
Normal file
74
src/app/core/components/header/header.component.html
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<header>
|
||||||
|
<nav class="navbar" role="navigation" aria-label="main navigation">
|
||||||
|
<div class="navbar-brand">
|
||||||
|
<a class="navbar-item">
|
||||||
|
<a class="navbar-item" role="button" (click)="toggleSidebarOpening()"> Dev menu </a>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a
|
||||||
|
role="button"
|
||||||
|
class="navbar-burger burger"
|
||||||
|
aria-label="menu"
|
||||||
|
aria-expanded="false"
|
||||||
|
data-target="navbarBasicExample"
|
||||||
|
>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="navbarBasicExample" class="navbar-menu">
|
||||||
|
<div class="navbar-start">
|
||||||
|
<a class="navbar-item" routerLink="/" routerLinkActive="is-active">
|
||||||
|
Home
|
||||||
|
</a>
|
||||||
|
<div class="navbar-item has-dropdown is-hoverable">
|
||||||
|
<a class="navbar-link"> Menu </a>
|
||||||
|
<div class="navbar-dropdown">
|
||||||
|
<a class="navbar-item" routerLink="administration" routerLinkActive="is-active">
|
||||||
|
Créer un sondage
|
||||||
|
</a>
|
||||||
|
<a class="navbar-item" routerLink="administration/profile" routerLinkActive="is-active">
|
||||||
|
Mes sondages
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navbar-item has-dropdown is-hoverable">
|
||||||
|
<a class="navbar-link"> Modules </a>
|
||||||
|
<div class="navbar-dropdown">
|
||||||
|
<a class="navbar-item" routerLink="administration" routerLinkActive="is-active">
|
||||||
|
Administration
|
||||||
|
</a>
|
||||||
|
<a class="navbar-item" routerLink="participation" routerLinkActive="is-active">
|
||||||
|
Participation
|
||||||
|
</a>
|
||||||
|
<a class="navbar-item" routerLink="oldstuff" routerLinkActive="is-active">
|
||||||
|
Old stuff
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="navbar-item">
|
||||||
|
<app-theme-selector></app-theme-selector>
|
||||||
|
</div>
|
||||||
|
<div class="navbar-item">
|
||||||
|
<app-language-selector></app-language-selector>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="navbar-end">
|
||||||
|
<div class="navbar-item">
|
||||||
|
<div class="buttons">
|
||||||
|
<a class="button is-primary">
|
||||||
|
<strong>Sign up</strong>
|
||||||
|
</a>
|
||||||
|
<a class="button is-light">
|
||||||
|
Log in
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
16
src/app/core/components/header/header.component.ts
Normal file
16
src/app/core/components/header/header.component.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import { Component, EventEmitter, Output, Input } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-header',
|
||||||
|
templateUrl: './header.component.html',
|
||||||
|
styleUrls: ['./header.component.scss'],
|
||||||
|
})
|
||||||
|
export class HeaderComponent {
|
||||||
|
@Input() isSidebarOpened: boolean;
|
||||||
|
@Output() toggleSidebarEE = new EventEmitter<boolean>();
|
||||||
|
|
||||||
|
public toggleSidebarOpening(): void {
|
||||||
|
this.isSidebarOpened = !this.isSidebarOpened;
|
||||||
|
this.toggleSidebarEE.emit(this.isSidebarOpened);
|
||||||
|
}
|
||||||
|
}
|
19
src/app/core/components/home/home.component.html
Normal file
19
src/app/core/components/home/home.component.html
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<section class="hero">
|
||||||
|
<div class="hero-body">
|
||||||
|
<div class="container">
|
||||||
|
<h1 class="title">
|
||||||
|
Bienvenue sur Framasondage
|
||||||
|
</h1>
|
||||||
|
<h2 class="subtitle">
|
||||||
|
Se consulter simplement pour s’organiser collectivement.
|
||||||
|
</h2>
|
||||||
|
<div class="columns">
|
||||||
|
<div class="column">
|
||||||
|
<a role="button" class="button is-fullwidth" routerLink="administration">
|
||||||
|
Créer un nouveau sondage
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
12
src/app/core/components/home/home.component.ts
Normal file
12
src/app/core/components/home/home.component.ts
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-home',
|
||||||
|
templateUrl: './home.component.html',
|
||||||
|
styleUrls: ['./home.component.scss'],
|
||||||
|
})
|
||||||
|
export class HomeComponent implements OnInit {
|
||||||
|
constructor() {}
|
||||||
|
|
||||||
|
ngOnInit(): void {}
|
||||||
|
}
|
1
src/app/core/components/login/login.component.html
Normal file
1
src/app/core/components/login/login.component.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<p>login works!</p>
|
@ -1,19 +1,19 @@
|
|||||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
import { SelectorComponent } from './selector.component';
|
import { LoginComponent } from './login.component';
|
||||||
|
|
||||||
describe('SelectorComponent', () => {
|
describe('LoginComponent', () => {
|
||||||
let component: SelectorComponent;
|
let component: LoginComponent;
|
||||||
let fixture: ComponentFixture<SelectorComponent>;
|
let fixture: ComponentFixture<LoginComponent>;
|
||||||
|
|
||||||
beforeEach(async(() => {
|
beforeEach(async(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [SelectorComponent],
|
declarations: [LoginComponent],
|
||||||
}).compileComponents();
|
}).compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
fixture = TestBed.createComponent(SelectorComponent);
|
fixture = TestBed.createComponent(LoginComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
12
src/app/core/components/login/login.component.ts
Normal file
12
src/app/core/components/login/login.component.ts
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-login',
|
||||||
|
templateUrl: './login.component.html',
|
||||||
|
styleUrls: ['./login.component.scss'],
|
||||||
|
})
|
||||||
|
export class LoginComponent implements OnInit {
|
||||||
|
constructor() {}
|
||||||
|
|
||||||
|
ngOnInit(): void {}
|
||||||
|
}
|
@ -1,14 +1,13 @@
|
|||||||
<div class="home_link">
|
<div class="home_link">
|
||||||
<a [routerLink]="'home'" aria-roledescription="home">
|
<a class="button" routerLink="/" aria-roledescription="home">
|
||||||
<h1>
|
<h1>
|
||||||
<span class="logo_first">Frama</span>
|
<span class="logo_first">Frama</span>
|
||||||
<span class="logo_second">date</span>
|
<span class="logo_second">Sondage</span>
|
||||||
(démo)
|
|
||||||
</h1>
|
</h1>
|
||||||
</a>
|
</a>
|
||||||
<div class="legend">
|
<a class="button legend" href="https://framasoft.org/" target="_blank">
|
||||||
proposé par
|
proposé par
|
||||||
<span class="legend_first">Frama</span>
|
<span class="legend_first">Frama</span>
|
||||||
<span class="legend_second">soft</span>
|
<span class="legend_second">soft</span>
|
||||||
</div>
|
</a>
|
||||||
</div>
|
</div>
|
@ -1,19 +1,19 @@
|
|||||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
import { LanguageComponent } from './language.component';
|
import { LogoComponent } from './logo.component';
|
||||||
|
|
||||||
describe('LanguageComponent', () => {
|
describe('LogoComponent', () => {
|
||||||
let component: LanguageComponent;
|
let component: LogoComponent;
|
||||||
let fixture: ComponentFixture<LanguageComponent>;
|
let fixture: ComponentFixture<LogoComponent>;
|
||||||
|
|
||||||
beforeEach(async(() => {
|
beforeEach(async(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [LanguageComponent],
|
declarations: [LogoComponent],
|
||||||
}).compileComponents();
|
}).compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
fixture = TestBed.createComponent(LanguageComponent);
|
fixture = TestBed.createComponent(LogoComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
8
src/app/core/components/logo/logo.component.ts
Normal file
8
src/app/core/components/logo/logo.component.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-logo',
|
||||||
|
templateUrl: './logo.component.html',
|
||||||
|
styleUrls: ['./logo.component.scss'],
|
||||||
|
})
|
||||||
|
export class LogoComponent {}
|
@ -0,0 +1,10 @@
|
|||||||
|
<div class="control has-icons-left">
|
||||||
|
<select class="select is-small" [(ngModel)]="currentLang">
|
||||||
|
<ng-container *ngFor="let language of languagesAvailable">
|
||||||
|
<option value="{{ language }}">{{ 'LANGUAGES.' + language | translate }}</option>
|
||||||
|
</ng-container>
|
||||||
|
</select>
|
||||||
|
<div class="icon is-left">
|
||||||
|
<i class="fa fa-globe"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,24 @@
|
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { LanguageSelectorComponent } from './language-selector.component';
|
||||||
|
|
||||||
|
describe('LanguageSelectorComponent', () => {
|
||||||
|
let component: LanguageSelectorComponent;
|
||||||
|
let fixture: ComponentFixture<LanguageSelectorComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [LanguageSelectorComponent],
|
||||||
|
}).compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(LanguageSelectorComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,38 @@
|
|||||||
|
import { Component, DoCheck, OnInit } from '@angular/core';
|
||||||
|
import { TranslateService } from '@ngx-translate/core';
|
||||||
|
|
||||||
|
import { Language } from '../../../enums/language.enum';
|
||||||
|
import { StorageService } from '../../../services/storage.service';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-language-selector',
|
||||||
|
templateUrl: './language-selector.component.html',
|
||||||
|
styleUrls: ['./language-selector.component.scss'],
|
||||||
|
})
|
||||||
|
export class LanguageSelectorComponent implements OnInit, DoCheck {
|
||||||
|
public currentLang: Language;
|
||||||
|
public languagesAvailable: string[] = Object.values(Language);
|
||||||
|
|
||||||
|
constructor(private translate: TranslateService, private storageService: StorageService) {}
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
const currentBrowserLanguage: Language = this.translate.getBrowserLang().toUpperCase() as Language;
|
||||||
|
if (this.storageService.language && Object.keys(Language).includes(this.storageService.language)) {
|
||||||
|
this.currentLang = this.storageService.language;
|
||||||
|
} else if (Object.keys(Language).includes(currentBrowserLanguage)) {
|
||||||
|
this.currentLang = currentBrowserLanguage;
|
||||||
|
} else {
|
||||||
|
this.currentLang = Language.EN;
|
||||||
|
}
|
||||||
|
this.updateLanguage();
|
||||||
|
}
|
||||||
|
|
||||||
|
ngDoCheck(): void {
|
||||||
|
this.updateLanguage();
|
||||||
|
}
|
||||||
|
|
||||||
|
public updateLanguage(): void {
|
||||||
|
this.translate.use(this.currentLang.toString().toUpperCase());
|
||||||
|
this.storageService.language = this.currentLang;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
<div class="buttons has-addons is-centered">
|
||||||
|
<button class="button is-small is-static">Theme</button>
|
||||||
|
<button
|
||||||
|
class="button is-small"
|
||||||
|
[ngClass]="{ 'is-active': (currentTheme | async) === themeEnum.LIGHT }"
|
||||||
|
(click)="selectTheme('LIGHT')"
|
||||||
|
>
|
||||||
|
<i class="fa fa-sun-o"></i>
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="button is-small"
|
||||||
|
[ngClass]="{ 'is-active': (currentTheme | async) === themeEnum.DARK }"
|
||||||
|
(click)="selectTheme('DARK')"
|
||||||
|
>
|
||||||
|
<i class="fa fa-moon"></i>
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="button is-small"
|
||||||
|
[ngClass]="{ 'is-active': (currentTheme | async) === themeEnum.RED }"
|
||||||
|
(click)="selectTheme('RED')"
|
||||||
|
>
|
||||||
|
<i class="fa fa-adjust"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
@ -0,0 +1,25 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
import { Observable } from 'rxjs';
|
||||||
|
|
||||||
|
import { Theme } from '../../../enums/theme.enum';
|
||||||
|
import { ThemeService } from '../../../services/theme.service';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-theme-selector',
|
||||||
|
templateUrl: './theme-selector.component.html',
|
||||||
|
styleUrls: ['./theme-selector.component.scss'],
|
||||||
|
})
|
||||||
|
export class ThemeSelectorComponent implements OnInit {
|
||||||
|
public themeEnum = Theme;
|
||||||
|
public currentTheme: Observable<Theme>;
|
||||||
|
|
||||||
|
constructor(private themeService: ThemeService) {}
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
this.currentTheme = this.themeService.theme;
|
||||||
|
}
|
||||||
|
|
||||||
|
public selectTheme(theme: string): void {
|
||||||
|
this.themeService.selectTheme(theme as Theme);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
<nav>
|
||||||
|
<a class="button" routerLink="administration" routerLinkActive="active"> AdministrationModule</a>
|
||||||
|
<a class="button" routerLink="participation/poll/SuperCustomSlug" routerLinkActive="active">
|
||||||
|
Participate to poll/SuperCustomSlug
|
||||||
|
</a>
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<a class="button" routerLink="oldstuff/home" routerLinkActive="active"> <i class="fa fa-home"></i> Accueil </a>
|
||||||
|
<a class="button" routerLink="oldstuff/step/creation" routerLinkActive="active"> Création </a>
|
||||||
|
<a class="button" routerLink="oldstuff/step/date" routerLinkActive="active"> Les Dates </a>
|
||||||
|
<a class="button" routerLink="oldstuff/step/answers" routerLinkActive="active"> Réponses </a>
|
||||||
|
<a class="button" routerLink="oldstuff/step/visibility" routerLinkActive="active"> Visibilité </a>
|
||||||
|
<a class="button" routerLink="oldstuff/step/resume" routerLinkActive="active"> Résumé </a>
|
||||||
|
<a class="button" routerLink="oldstuff/step/end" routerLinkActive="active"> Confirmation </a>
|
||||||
|
<a class="button" routerLink="oldstuff/step/admin"> Administration </a>
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<a class="button" routerLink="oldstuff/step/kind" routerLinkActive="active"> Page démo </a>
|
||||||
|
<a class="button" routerLink="oldstuff/vote/poll/id/1" routerLinkActive="active"> Sondage 1 </a>
|
||||||
|
<a class="button" routerLink="oldstuff/vote/poll/id/2" routerLinkActive="active"> Sondage 2 </a>
|
||||||
|
<a class="button" routerLink="oldstuff/vote/poll/id/3" routerLinkActive="active"> Sondage 3 (dessins animés) </a>
|
||||||
|
<a class="button" routerLink="oldstuff/graphic/toto" routerLinkActive="active"> Graphique </a>
|
||||||
|
</nav>
|
@ -0,0 +1,18 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
import { MockingService } from '../../../services/mocking.service';
|
||||||
|
import { Poll } from '../../../models/poll.model';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-navigation',
|
||||||
|
templateUrl: './navigation.component.html',
|
||||||
|
styleUrls: ['./navigation.component.scss'],
|
||||||
|
})
|
||||||
|
export class NavigationComponent implements OnInit {
|
||||||
|
public pollsDatabase: Poll[] = [];
|
||||||
|
constructor(private mockingService: MockingService) {}
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
this.pollsDatabase = this.mockingService.pollsDatabase;
|
||||||
|
}
|
||||||
|
}
|
35
src/app/core/core.module.ts
Normal file
35
src/app/core/core.module.ts
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { NgModule, Optional, SkipSelf } from '@angular/core';
|
||||||
|
import { FormsModule } from '@angular/forms';
|
||||||
|
import { RouterModule } from '@angular/router';
|
||||||
|
import { TranslateModule } from '@ngx-translate/core';
|
||||||
|
|
||||||
|
import { FooterComponent } from './components/footer/footer.component';
|
||||||
|
import { HeaderComponent } from './components/header/header.component';
|
||||||
|
import { HomeComponent } from './components/home/home.component';
|
||||||
|
import { LoginComponent } from './components/login/login.component';
|
||||||
|
import { LogoComponent } from './components/logo/logo.component';
|
||||||
|
import { LanguageSelectorComponent } from './components/selectors/language-selector/language-selector.component';
|
||||||
|
import { ThemeSelectorComponent } from './components/selectors/theme-selector/theme-selector.component';
|
||||||
|
import { NavigationComponent } from './components/sibebar/navigation/navigation.component';
|
||||||
|
import { throwIfAlreadyLoaded } from './guards/module-import.guard';
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
declarations: [
|
||||||
|
FooterComponent,
|
||||||
|
HeaderComponent,
|
||||||
|
HomeComponent,
|
||||||
|
LanguageSelectorComponent,
|
||||||
|
LoginComponent,
|
||||||
|
LogoComponent,
|
||||||
|
NavigationComponent,
|
||||||
|
ThemeSelectorComponent,
|
||||||
|
],
|
||||||
|
imports: [CommonModule, FormsModule, RouterModule, TranslateModule],
|
||||||
|
exports: [HeaderComponent, FooterComponent, NavigationComponent, LoginComponent, LogoComponent],
|
||||||
|
})
|
||||||
|
export class CoreModule {
|
||||||
|
constructor(@Optional() @SkipSelf() parentModule: CoreModule) {
|
||||||
|
throwIfAlreadyLoaded(parentModule, 'CoreModule');
|
||||||
|
}
|
||||||
|
}
|
4
src/app/core/enums/language.enum.ts
Normal file
4
src/app/core/enums/language.enum.ts
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
export enum Language {
|
||||||
|
FR = 'FR',
|
||||||
|
EN = 'EN',
|
||||||
|
}
|
6
src/app/core/enums/message-severity.enum.ts
Normal file
6
src/app/core/enums/message-severity.enum.ts
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
export enum MessageSeverity {
|
||||||
|
SUCCESS = 'success',
|
||||||
|
INFO = 'info',
|
||||||
|
WARN = 'warn',
|
||||||
|
ERROR = 'error',
|
||||||
|
}
|
5
src/app/core/enums/theme.enum.ts
Normal file
5
src/app/core/enums/theme.enum.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
export enum Theme {
|
||||||
|
LIGHT = 'LIGHT',
|
||||||
|
DARK = 'DARK',
|
||||||
|
RED = 'RED',
|
||||||
|
}
|
5
src/app/core/enums/user-role.enum.ts
Normal file
5
src/app/core/enums/user-role.enum.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
export enum UserRole {
|
||||||
|
ANONYMOUS = 'ANONYMOUS',
|
||||||
|
REGISTERED = 'ADMIN',
|
||||||
|
ADMIN = 'ADMIN',
|
||||||
|
}
|
5
src/app/core/enums/workflow-step.enum.ts
Normal file
5
src/app/core/enums/workflow-step.enum.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
export enum WorkflowStep {
|
||||||
|
DESCRIPTION = 'DESCRIPTION',
|
||||||
|
OPTIONS = 'OPTIONS',
|
||||||
|
CONFIGURATION = 'CONFIGURATION',
|
||||||
|
}
|
5
src/app/core/guards/module-import.guard.ts
Normal file
5
src/app/core/guards/module-import.guard.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
export function throwIfAlreadyLoaded(parentModule: any, moduleName: string): void {
|
||||||
|
if (parentModule) {
|
||||||
|
throw new Error(`${moduleName} has already been loaded. Import ${moduleName} in the AppModule only.`);
|
||||||
|
}
|
||||||
|
}
|
@ -1,19 +1,23 @@
|
|||||||
import { PollType } from '../enums/poll-type.enum';
|
|
||||||
import { Answer } from './answer.model';
|
import { Answer } from './answer.model';
|
||||||
import { PollConfig } from './poll-config.model';
|
import { PollConfig } from './poll-config.model';
|
||||||
import { PollOption } from './poll-options.model';
|
import { PollOption } from './poll-options.model';
|
||||||
import { User } from './user.model';
|
import { User } from './user.model';
|
||||||
|
import { environment } from 'src/environments/environment';
|
||||||
|
|
||||||
export class Poll {
|
export class Poll {
|
||||||
constructor(
|
constructor(
|
||||||
public id: string,
|
public isDateType: boolean,
|
||||||
public slug: string,
|
|
||||||
public type: PollType,
|
|
||||||
public title: string,
|
public title: string,
|
||||||
public description: string,
|
public description: string,
|
||||||
public owner: User,
|
public slug: string,
|
||||||
public config: PollConfig,
|
public id: string,
|
||||||
|
public owner?: User,
|
||||||
|
public config?: PollConfig,
|
||||||
public options: PollOption[] = [],
|
public options: PollOption[] = [],
|
||||||
public answers: Answer[] = []
|
public answers: Answer[] = []
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
|
public getUrl(): string {
|
||||||
|
return `${environment.api.baseHref}/${this.slug}`;
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,7 +1,9 @@
|
|||||||
import { Poll } from './poll.model';
|
import { Poll } from './poll.model';
|
||||||
|
import { UserRole } from '../enums/user-role.enum';
|
||||||
|
|
||||||
export class User {
|
export class User {
|
||||||
constructor(
|
constructor(
|
||||||
|
public role: UserRole = UserRole.ANONYMOUS,
|
||||||
public isOwner: boolean = false,
|
public isOwner: boolean = false,
|
||||||
public pseudo?: string,
|
public pseudo?: string,
|
||||||
public email?: string,
|
public email?: string,
|
@ -1,5 +1,5 @@
|
|||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import axios, { AxiosResponse } from 'axios';
|
import axios, { AxiosInstance, AxiosResponse } from 'axios';
|
||||||
import { environment } from 'src/environments/environment';
|
import { environment } from 'src/environments/environment';
|
||||||
|
|
||||||
import { Poll } from '../models/poll.model';
|
import { Poll } from '../models/poll.model';
|
||||||
@ -9,14 +9,26 @@ import { User } from '../models/user.model';
|
|||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
})
|
})
|
||||||
export class ApiService {
|
export class ApiService {
|
||||||
|
private axiosInstance: AxiosInstance;
|
||||||
|
private readonly pollsEndpoint = environment.api.endpoints.polls.name;
|
||||||
|
private readonly commentsEndpoint = environment.api.endpoints.polls.comments.name;
|
||||||
|
private readonly votesEndpoint = environment.api.endpoints.polls.votes.name;
|
||||||
|
private readonly slugsEndpoint = environment.api.endpoints.polls.slugs.name;
|
||||||
|
private readonly votesStacksEndpoint = environment.api.endpoints.voteStack.name;
|
||||||
|
private readonly usersEndpoint = environment.api.endpoints.users.name;
|
||||||
|
private readonly usersPollsEndpoint = environment.api.endpoints.users.polls.name;
|
||||||
|
private readonly usersPollsSendEmailEndpoint = environment.api.endpoints.users.polls.sendEmail.name;
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
this.axiosInstance = axios.create({ baseURL: environment.api.baseHref });
|
||||||
|
}
|
||||||
|
|
||||||
////////////
|
////////////
|
||||||
// CREATE //
|
// CREATE //
|
||||||
////////////
|
////////////
|
||||||
public async savePoll(poll: Poll): Promise<void> {
|
public async savePoll(poll: Poll): Promise<void> {
|
||||||
try {
|
try {
|
||||||
await axios.post(`${environment.api.baseHref}${environment.api.endpoints.poll.name}`, {
|
await this.axiosInstance.post(`${this.pollsEndpoint}`, { params: { config: poll.config } });
|
||||||
params: { config: poll.config },
|
|
||||||
});
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.handleError(error);
|
this.handleError(error);
|
||||||
}
|
}
|
||||||
@ -25,10 +37,9 @@ export class ApiService {
|
|||||||
public async saveVote(poll: Poll): Promise<void> {
|
public async saveVote(poll: Poll): Promise<void> {
|
||||||
try {
|
try {
|
||||||
// TODO: add the votestack in the params
|
// TODO: add the votestack in the params
|
||||||
await axios.post(
|
await this.axiosInstance.post(`${this.pollsEndpoint}/${poll.id}${this.votesEndpoint}`, {
|
||||||
`${environment.api.baseHref}${environment.api.endpoints.poll.name}/${poll.id}${environment.api.endpoints.poll.vote.name}`,
|
params: { voteStack: {} },
|
||||||
{ params: { voteStack: {} } }
|
});
|
||||||
);
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.handleError(error);
|
this.handleError(error);
|
||||||
}
|
}
|
||||||
@ -37,10 +48,9 @@ export class ApiService {
|
|||||||
public async saveComment(poll: Poll, comment: string): Promise<void> {
|
public async saveComment(poll: Poll, comment: string): Promise<void> {
|
||||||
try {
|
try {
|
||||||
// TODO: add the comment in the params
|
// TODO: add the comment in the params
|
||||||
await axios.post(
|
await this.axiosInstance.post(`${this.pollsEndpoint}/${poll.id}${this.commentsEndpoint}`, {
|
||||||
`${environment.api.baseHref}${environment.api.endpoints.poll.name}/${poll.id}${environment.api.endpoints.poll.comment.name}`,
|
params: { comment },
|
||||||
{ params: { comment } }
|
});
|
||||||
);
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.handleError(error);
|
this.handleError(error);
|
||||||
}
|
}
|
||||||
@ -52,22 +62,27 @@ export class ApiService {
|
|||||||
public async isSlugAvailable(slug: string): Promise<boolean> {
|
public async isSlugAvailable(slug: string): Promise<boolean> {
|
||||||
try {
|
try {
|
||||||
// TODO: scenario should be : if we can get this slug, it exists. if not, it doesn't. It's just a GET.
|
// TODO: scenario should be : if we can get this slug, it exists. if not, it doesn't. It's just a GET.
|
||||||
const response: AxiosResponse = await axios.get(
|
const response: AxiosResponse = await this.axiosInstance.get(
|
||||||
`${environment.api.baseHref}${environment.api.endpoints.poll.slug.name}/${slug}`
|
`${this.pollsEndpoint}${this.slugsEndpoint}/${slug}`
|
||||||
);
|
);
|
||||||
return response && response.status === 404 ? true : false;
|
if (response?.status !== 404) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
if (error.response?.status === 404) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
this.handleError(error);
|
this.handleError(error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public async sendEmailToUserOfItsPollsList(email: string): Promise<Poll[]> {
|
public async sendEmailToUserOfItsPollsList(user: User): Promise<void> {
|
||||||
// If user is not authenticated: the list of polls is send to user's email by the backend.
|
// If user is not authenticated: the list of polls is send to user's email by the backend.
|
||||||
try {
|
try {
|
||||||
const response: AxiosResponse<Poll[]> = await axios.get<Poll[]>(
|
await this.axiosInstance.get<Poll[]>(
|
||||||
`${environment.api.baseHref}${environment.api.endpoints.user.polls.sendEmail.name}/${email}`
|
`${this.usersEndpoint}/${user.email}${this.usersPollsEndpoint}${this.usersPollsSendEmailEndpoint}`
|
||||||
);
|
);
|
||||||
return response ? response.data : [];
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.handleError(error);
|
this.handleError(error);
|
||||||
}
|
}
|
||||||
@ -77,36 +92,29 @@ export class ApiService {
|
|||||||
// If user is authenticated : retrieve polls & display directly in frontend.
|
// If user is authenticated : retrieve polls & display directly in frontend.
|
||||||
// TODO: Backend should handle this case. Actually the endpoint doesn't exist in backend.
|
// TODO: Backend should handle this case. Actually the endpoint doesn't exist in backend.
|
||||||
try {
|
try {
|
||||||
const response: AxiosResponse<Poll[]> = await axios.get<Poll[]>(
|
const response: AxiosResponse<Poll[]> = await this.axiosInstance.get<Poll[]>(
|
||||||
`${environment.api.baseHref}${environment.api.endpoints.user.polls.name}/${user.email}`
|
`${this.usersEndpoint}/${user.email}${this.usersPollsEndpoint}`
|
||||||
);
|
);
|
||||||
return response ? response.data : [];
|
return response?.data;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.handleError(error);
|
this.handleError(error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public async getPollsByUrl(url: string): Promise<Poll[]> {
|
public async getPollByIdentifier(identifier: string): Promise<Poll | undefined> {
|
||||||
|
// TODO: identifier should be decided according to backend : Id || Slug ?
|
||||||
try {
|
try {
|
||||||
const response: AxiosResponse<Poll[]> = await axios.get<Poll[]>(
|
const response: AxiosResponse<Poll> = await this.axiosInstance.get<Poll>(
|
||||||
`${environment.api.baseHref}${environment.api.endpoints.poll.name}/${url}`
|
`${this.pollsEndpoint}/${identifier}`
|
||||||
);
|
);
|
||||||
return response ? response.data : [];
|
return response?.data;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
if (error.response?.status === 404) {
|
||||||
|
return undefined;
|
||||||
|
} else {
|
||||||
this.handleError(error);
|
this.handleError(error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public async getPollById(id: string, password?: string): Promise<Poll[]> {
|
|
||||||
try {
|
|
||||||
const response: AxiosResponse<Poll[]> = await axios.get<Poll[]>(
|
|
||||||
`${environment.api.baseHref}${environment.api.endpoints.poll.name}/${id}`,
|
|
||||||
password ? { params: { password } } : {}
|
|
||||||
);
|
|
||||||
return response ? response.data : [];
|
|
||||||
} catch (error) {
|
|
||||||
this.handleError(error);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////
|
////////////
|
||||||
@ -115,7 +123,7 @@ export class ApiService {
|
|||||||
public async updatePoll(poll: Poll): Promise<void> {
|
public async updatePoll(poll: Poll): Promise<void> {
|
||||||
try {
|
try {
|
||||||
// TODO: implement the params when entities are finalized.
|
// TODO: implement the params when entities are finalized.
|
||||||
await axios.put(`${environment.api.baseHref}${environment.api.endpoints.poll.name}/${poll.id}`, {
|
await this.axiosInstance.put(`${this.pollsEndpoint}/${poll.id}`, {
|
||||||
params: { voteStack: {}, token: '' },
|
params: { voteStack: {}, token: '' },
|
||||||
});
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@ -126,12 +134,9 @@ export class ApiService {
|
|||||||
public async updateVote(voteStack: any): Promise<void> {
|
public async updateVote(voteStack: any): Promise<void> {
|
||||||
try {
|
try {
|
||||||
// TODO: implement the params when entities are finalized.
|
// TODO: implement the params when entities are finalized.
|
||||||
await axios.patch(
|
await this.axiosInstance.patch(`${this.votesStacksEndpoint}/${voteStack.id}`, {
|
||||||
`${environment.api.baseHref}${environment.api.endpoints.poll.vote.name}/${voteStack.id}`,
|
|
||||||
{
|
|
||||||
params: { voteStack: {}, token: '' },
|
params: { voteStack: {}, token: '' },
|
||||||
}
|
});
|
||||||
);
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.handleError(error);
|
this.handleError(error);
|
||||||
}
|
}
|
||||||
@ -143,7 +148,7 @@ export class ApiService {
|
|||||||
|
|
||||||
public async deletePoll(poll: Poll): Promise<void> {
|
public async deletePoll(poll: Poll): Promise<void> {
|
||||||
try {
|
try {
|
||||||
await axios.delete(`${environment.api.baseHref}${environment.api.endpoints.poll.name}${poll.id}`, {});
|
await this.axiosInstance.delete(`${this.pollsEndpoint}${poll.id}`, {});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.handleError(error);
|
this.handleError(error);
|
||||||
}
|
}
|
||||||
@ -152,9 +157,7 @@ export class ApiService {
|
|||||||
public async deletePollVotes(poll: Poll): Promise<void> {
|
public async deletePollVotes(poll: Poll): Promise<void> {
|
||||||
try {
|
try {
|
||||||
// TODO: update endpoint in Backend
|
// TODO: update endpoint in Backend
|
||||||
await axios.delete(
|
await this.axiosInstance.delete(`${this.pollsEndpoint}${poll.id}${this.votesEndpoint}`);
|
||||||
`${environment.api.baseHref}${environment.api.endpoints.poll.name}${poll.id}${environment.api.endpoints.poll.vote.name}`
|
|
||||||
);
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.handleError(error);
|
this.handleError(error);
|
||||||
}
|
}
|
||||||
@ -163,9 +166,7 @@ export class ApiService {
|
|||||||
public async deletePollComments(poll: Poll): Promise<void> {
|
public async deletePollComments(poll: Poll): Promise<void> {
|
||||||
try {
|
try {
|
||||||
// TODO: modify endpoint in Backend
|
// TODO: modify endpoint in Backend
|
||||||
await axios.delete(
|
await this.axiosInstance.delete(`${this.pollsEndpoint}${poll.id}${this.commentsEndpoint}`);
|
||||||
`${environment.api.baseHref}${environment.api.endpoints.poll.name}${poll.id}${environment.api.endpoints.poll.comment.name}`
|
|
||||||
);
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.handleError(error);
|
this.handleError(error);
|
||||||
}
|
}
|
16
src/app/core/services/message-displayer.service.spec.ts
Normal file
16
src/app/core/services/message-displayer.service.spec.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import { TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { MessageDisplayerService } from './message-displayer.service';
|
||||||
|
|
||||||
|
describe('MessageService', () => {
|
||||||
|
let service: MessageDisplayerService;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
TestBed.configureTestingModule({});
|
||||||
|
service = TestBed.inject(MessageDisplayerService);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be created', () => {
|
||||||
|
expect(service).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
19
src/app/core/services/message-displayer.service.ts
Normal file
19
src/app/core/services/message-displayer.service.ts
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { MessageService } from 'primeng/api';
|
||||||
|
|
||||||
|
import { MessageSeverity } from '../enums/message-severity.enum';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class MessageDisplayerService {
|
||||||
|
constructor(private messageService: MessageService) {}
|
||||||
|
|
||||||
|
public display(severity: MessageSeverity, summary?: string, detail?: string): void {
|
||||||
|
this.messageService.add({
|
||||||
|
severity,
|
||||||
|
summary,
|
||||||
|
detail,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
16
src/app/core/services/mocking.service.spec.ts
Normal file
16
src/app/core/services/mocking.service.spec.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import { TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { MockingService } from './mocking.service';
|
||||||
|
|
||||||
|
describe('MockingService', () => {
|
||||||
|
let service: MockingService;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
TestBed.configureTestingModule({});
|
||||||
|
service = TestBed.inject(MockingService);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be created', () => {
|
||||||
|
expect(service).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
37
src/app/core/services/mocking.service.ts
Normal file
37
src/app/core/services/mocking.service.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
|
||||||
|
import { UserRole } from '../enums/user-role.enum';
|
||||||
|
import { Poll } from '../models/poll.model';
|
||||||
|
import { User } from '../models/user.model';
|
||||||
|
import { PollService } from './poll.service';
|
||||||
|
import { UserService } from './user.service';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class MockingService {
|
||||||
|
public pollsDatabase: Poll[];
|
||||||
|
|
||||||
|
private user: User = new User(UserRole.ANONYMOUS, false, 'toto', 'toto@gafam.com', []);
|
||||||
|
private poll1: Poll = new Poll(false, 'mon super sondage', 'super description 1', 'super_slug_1', 'id1');
|
||||||
|
private poll2: Poll = new Poll(false, 'mon autre sondage', 'super description 2', 'super_slug_2', 'id2');
|
||||||
|
|
||||||
|
constructor(private userService: UserService, private pollService: PollService) {
|
||||||
|
this.pollsDatabase = [this.poll1, this.poll2];
|
||||||
|
this.user.polls = this.pollsDatabase;
|
||||||
|
}
|
||||||
|
|
||||||
|
public loadUser(role: UserRole): void {
|
||||||
|
this.user.role = role;
|
||||||
|
console.info('MOCKING user', { user: this.user });
|
||||||
|
this.userService.updateUser(this.user);
|
||||||
|
}
|
||||||
|
|
||||||
|
public loadPoll(slug: string): void {
|
||||||
|
const poll: Poll | undefined = this.pollsDatabase.find((poll: Poll) => poll.slug === slug);
|
||||||
|
if (poll) {
|
||||||
|
console.info('MOCKING poll', { poll });
|
||||||
|
this.pollService.updateCurrentPoll(poll);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
56
src/app/core/services/poll.service.ts
Normal file
56
src/app/core/services/poll.service.ts
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { BehaviorSubject, Observable } from 'rxjs';
|
||||||
|
|
||||||
|
import { MessageSeverity } from '../enums/message-severity.enum';
|
||||||
|
import { Poll } from '../models/poll.model';
|
||||||
|
import { ApiService } from './api.service';
|
||||||
|
import { MessageDisplayerService } from './message-displayer.service';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class PollService {
|
||||||
|
private _poll: BehaviorSubject<Poll | undefined> = new BehaviorSubject<Poll | undefined>(undefined);
|
||||||
|
public readonly poll: Observable<Poll | undefined> = this._poll.asObservable();
|
||||||
|
|
||||||
|
constructor(private apiService: ApiService, private messageService: MessageDisplayerService) {}
|
||||||
|
|
||||||
|
public updateCurrentPoll(poll: Poll): void {
|
||||||
|
this._poll.next(poll);
|
||||||
|
}
|
||||||
|
|
||||||
|
// SAVE
|
||||||
|
public async savePoll(poll: Poll): Promise<void> {
|
||||||
|
await this.apiService.savePoll(poll);
|
||||||
|
this.messageService.display(MessageSeverity.SUCCESS, 'Le sondage a été créé.');
|
||||||
|
}
|
||||||
|
|
||||||
|
public async saveVote(poll: Poll): Promise<void> {
|
||||||
|
await this.apiService.saveVote(poll);
|
||||||
|
this.messageService.display(MessageSeverity.SUCCESS, 'Votre participation au sondage a été enregistrée.');
|
||||||
|
}
|
||||||
|
|
||||||
|
public async saveComment(poll: Poll, comment: string): Promise<void> {
|
||||||
|
await this.apiService.saveComment(poll, comment);
|
||||||
|
this.messageService.display(MessageSeverity.SUCCESS, 'Votre commentaire a été enregistré.');
|
||||||
|
}
|
||||||
|
|
||||||
|
// GET
|
||||||
|
public async getPollByIdentifier(slug: string): Promise<void> {
|
||||||
|
this.updateCurrentPoll(await this.apiService.getPollByIdentifier(slug));
|
||||||
|
}
|
||||||
|
|
||||||
|
// DELETE
|
||||||
|
public async deletePollVotes(poll: Poll): Promise<void> {
|
||||||
|
await this.apiService.deletePollVotes(poll);
|
||||||
|
this.messageService.display(
|
||||||
|
MessageSeverity.SUCCESS,
|
||||||
|
'Les participations des votants à ce sondage ont été supprimées.'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async deletePollComments(poll: Poll): Promise<void> {
|
||||||
|
await this.apiService.deletePollComments(poll);
|
||||||
|
this.messageService.display(MessageSeverity.SUCCESS, 'Les commentaires de ce sondage ont été supprimés.');
|
||||||
|
}
|
||||||
|
}
|
16
src/app/core/services/storage.service.spec.ts
Normal file
16
src/app/core/services/storage.service.spec.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import { TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { StorageService } from './storage.service';
|
||||||
|
|
||||||
|
describe('StorageService', () => {
|
||||||
|
let service: StorageService;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
TestBed.configureTestingModule({});
|
||||||
|
service = TestBed.inject(StorageService);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be created', () => {
|
||||||
|
expect(service).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
19
src/app/core/services/storage.service.ts
Normal file
19
src/app/core/services/storage.service.ts
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { LocalStorage } from 'ngx-webstorage';
|
||||||
|
|
||||||
|
import { Language } from '../enums/language.enum';
|
||||||
|
import { Theme } from '../enums/theme.enum';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class StorageService {
|
||||||
|
@LocalStorage()
|
||||||
|
public theme: Theme;
|
||||||
|
|
||||||
|
@LocalStorage()
|
||||||
|
public language: Language;
|
||||||
|
|
||||||
|
@LocalStorage()
|
||||||
|
public userPollsIds: string[];
|
||||||
|
}
|
15
src/app/core/services/theme.service.ts
Normal file
15
src/app/core/services/theme.service.ts
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { BehaviorSubject, Observable } from 'rxjs';
|
||||||
|
import { Theme } from '../enums/theme.enum';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class ThemeService {
|
||||||
|
private _theme: BehaviorSubject<Theme> = new BehaviorSubject<Theme>(Theme.RED);
|
||||||
|
public readonly theme: Observable<Theme> = this._theme.asObservable();
|
||||||
|
|
||||||
|
public selectTheme(theme: Theme): void {
|
||||||
|
this._theme.next(theme);
|
||||||
|
}
|
||||||
|
}
|
32
src/app/core/services/user.service.ts
Normal file
32
src/app/core/services/user.service.ts
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { BehaviorSubject, Observable } from 'rxjs';
|
||||||
|
|
||||||
|
import { User } from '../models/user.model';
|
||||||
|
import { ApiService } from './api.service';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class UserService {
|
||||||
|
public anonymous: User = new User();
|
||||||
|
private _user: BehaviorSubject<User> = new BehaviorSubject<User>(this.anonymous);
|
||||||
|
public readonly user: Observable<User> = this._user.asObservable();
|
||||||
|
|
||||||
|
constructor(private apiService: ApiService) {}
|
||||||
|
|
||||||
|
public updateUser(user: User): void {
|
||||||
|
this._user.next(user);
|
||||||
|
}
|
||||||
|
|
||||||
|
// GET
|
||||||
|
public async getUserPolls(): Promise<void> {
|
||||||
|
const currentUser: User = this._user.getValue();
|
||||||
|
currentUser.polls = await this.apiService.getPollsByUserEmail(currentUser);
|
||||||
|
this.updateUser(currentUser);
|
||||||
|
}
|
||||||
|
|
||||||
|
// POST
|
||||||
|
public async sendEmailToUserTheListOfItsPolls(): Promise<void> {
|
||||||
|
await this.apiService.sendEmailToUserOfItsPollsList(this._user.getValue());
|
||||||
|
}
|
||||||
|
}
|
16
src/app/core/services/workflow.service.spec.ts
Normal file
16
src/app/core/services/workflow.service.spec.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import { TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { WorkflowService } from './workflow.service';
|
||||||
|
|
||||||
|
describe('WorkflowService', () => {
|
||||||
|
let service: WorkflowService;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
TestBed.configureTestingModule({});
|
||||||
|
service = TestBed.inject(WorkflowService);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be created', () => {
|
||||||
|
expect(service).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
30
src/app/core/services/workflow.service.ts
Normal file
30
src/app/core/services/workflow.service.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { BehaviorSubject, Observable } from 'rxjs';
|
||||||
|
|
||||||
|
import { WorkflowStep } from '../enums/workflow-step.enum';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class WorkflowService {
|
||||||
|
private steps = [WorkflowStep.DESCRIPTION, WorkflowStep.OPTIONS, WorkflowStep.CONFIGURATION];
|
||||||
|
|
||||||
|
private _currentStep: BehaviorSubject<WorkflowStep> = new BehaviorSubject<WorkflowStep>(WorkflowStep[0]);
|
||||||
|
public readonly currentStep: Observable<WorkflowStep> = this._currentStep.asObservable();
|
||||||
|
|
||||||
|
constructor() {}
|
||||||
|
|
||||||
|
public loadNextStep(): void {
|
||||||
|
this._currentStep.next(WorkflowStep[this.getNewIndex(1)]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public loadPriorStep(): void {
|
||||||
|
this._currentStep.next(WorkflowStep[this.getNewIndex(-1)]);
|
||||||
|
}
|
||||||
|
|
||||||
|
private getNewIndex(way: number): number {
|
||||||
|
const currentIndex: number = Object.keys(WorkflowStep).indexOf(this._currentStep.getValue());
|
||||||
|
const newIndex: number = currentIndex + way;
|
||||||
|
return 0 <= newIndex && newIndex <= Object.keys(WorkflowStep).length ? newIndex : currentIndex;
|
||||||
|
}
|
||||||
|
}
|
@ -15,7 +15,7 @@ export class PollUtilsService {
|
|||||||
* make a uniq slug for the current poll creation
|
* make a uniq slug for the current poll creation
|
||||||
* @param str
|
* @param str
|
||||||
*/
|
*/
|
||||||
public makeSlug(config: PollConfig): string {
|
public makeSlug(config: any): string {
|
||||||
let str = '';
|
let str = '';
|
||||||
str =
|
str =
|
||||||
config.creationDate.getFullYear() +
|
config.creationDate.getFullYear() +
|
@ -0,0 +1,35 @@
|
|||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
import { RouterModule, Routes } from '@angular/router';
|
||||||
|
|
||||||
|
import { AdministrationComponent } from './administration.component';
|
||||||
|
import { EditConfigurationComponent } from './edit-configuration/edit-configuration.component';
|
||||||
|
import { EditDescriptionComponent } from './edit-description/edit-description.component';
|
||||||
|
import { EditOptionsComponent } from './edit-options/edit-options.component';
|
||||||
|
import { PollEditComponent } from './poll-edit/poll-edit.component';
|
||||||
|
import { ProfileComponent } from './profile/profile.component';
|
||||||
|
|
||||||
|
const routes: Routes = [
|
||||||
|
{ path: '', redirectTo: 'edit', pathMatch: 'full' },
|
||||||
|
{
|
||||||
|
path: 'edit',
|
||||||
|
component: AdministrationComponent,
|
||||||
|
children: [
|
||||||
|
{ path: '', redirectTo: 'description', pathMatch: 'full' },
|
||||||
|
{ path: 'description', component: EditDescriptionComponent },
|
||||||
|
{ path: 'description/:slug', component: EditDescriptionComponent },
|
||||||
|
{ path: 'options', component: EditOptionsComponent },
|
||||||
|
{ path: 'options/:slug', component: EditOptionsComponent },
|
||||||
|
{ path: 'configuration', component: EditConfigurationComponent },
|
||||||
|
{ path: 'configuration/:slug', component: EditConfigurationComponent },
|
||||||
|
{ path: 'preview', component: PollEditComponent },
|
||||||
|
{ path: 'preview/:slug', component: PollEditComponent },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{ path: 'profile', component: ProfileComponent },
|
||||||
|
];
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
imports: [RouterModule.forChild(routes)],
|
||||||
|
exports: [RouterModule],
|
||||||
|
})
|
||||||
|
export class AdministrationRoutingModule {}
|
@ -0,0 +1,12 @@
|
|||||||
|
<div class="container has-text-centered">
|
||||||
|
<div class="columns">
|
||||||
|
<div class="column">
|
||||||
|
<app-stepper></app-stepper>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="columns">
|
||||||
|
<div class="column">
|
||||||
|
<router-outlet></router-outlet>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,24 @@
|
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { AdministrationComponent } from './administration.component';
|
||||||
|
|
||||||
|
describe('AdministrationComponent', () => {
|
||||||
|
let component: AdministrationComponent;
|
||||||
|
let fixture: ComponentFixture<AdministrationComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [AdministrationComponent],
|
||||||
|
}).compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(AdministrationComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
16
src/app/features/administration/administration.component.ts
Normal file
16
src/app/features/administration/administration.component.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
import { Poll } from '../../core/models/poll.model';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-administration',
|
||||||
|
templateUrl: './administration.component.html',
|
||||||
|
styleUrls: ['./administration.component.scss'],
|
||||||
|
})
|
||||||
|
export class AdministrationComponent implements OnInit {
|
||||||
|
public poll: Poll;
|
||||||
|
|
||||||
|
constructor() {}
|
||||||
|
|
||||||
|
ngOnInit(): void {}
|
||||||
|
}
|
34
src/app/features/administration/administration.module.ts
Normal file
34
src/app/features/administration/administration.module.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
import { ReactiveFormsModule } from '@angular/forms';
|
||||||
|
import { TranslateModule } from '@ngx-translate/core';
|
||||||
|
|
||||||
|
import { SharedModule } from '../../shared/shared.module';
|
||||||
|
import { AdministrationRoutingModule } from './administration-routing.module';
|
||||||
|
import { AdministrationComponent } from './administration.component';
|
||||||
|
import { PollEditComponent } from './poll-edit/poll-edit.component';
|
||||||
|
import { ProfileComponent } from './profile/profile.component';
|
||||||
|
import { StepperComponent } from './stepper/stepper.component';
|
||||||
|
import { EditDescriptionComponent } from './edit-description/edit-description.component';
|
||||||
|
import { EditOptionsComponent } from './edit-options/edit-options.component';
|
||||||
|
import { EditConfigurationComponent } from './edit-configuration/edit-configuration.component';
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
declarations: [
|
||||||
|
AdministrationComponent,
|
||||||
|
PollEditComponent,
|
||||||
|
StepperComponent,
|
||||||
|
ProfileComponent,
|
||||||
|
EditDescriptionComponent,
|
||||||
|
EditOptionsComponent,
|
||||||
|
EditConfigurationComponent,
|
||||||
|
],
|
||||||
|
imports: [
|
||||||
|
AdministrationRoutingModule,
|
||||||
|
CommonModule,
|
||||||
|
ReactiveFormsModule,
|
||||||
|
SharedModule,
|
||||||
|
TranslateModule.forChild({ extend: true }),
|
||||||
|
],
|
||||||
|
})
|
||||||
|
export class AdministrationModule {}
|
@ -0,0 +1 @@
|
|||||||
|
<p>edit-configuration works!</p>
|
@ -0,0 +1,24 @@
|
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { EditConfigurationComponent } from './edit-configuration.component';
|
||||||
|
|
||||||
|
describe('EditConfigurationComponent', () => {
|
||||||
|
let component: EditConfigurationComponent;
|
||||||
|
let fixture: ComponentFixture<EditConfigurationComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [EditConfigurationComponent],
|
||||||
|
}).compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(EditConfigurationComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,12 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-edit-configuration',
|
||||||
|
templateUrl: './edit-configuration.component.html',
|
||||||
|
styleUrls: ['./edit-configuration.component.scss'],
|
||||||
|
})
|
||||||
|
export class EditConfigurationComponent implements OnInit {
|
||||||
|
constructor() {}
|
||||||
|
|
||||||
|
ngOnInit(): void {}
|
||||||
|
}
|
@ -0,0 +1,33 @@
|
|||||||
|
<div>
|
||||||
|
<p>Form Status: {{ pollForm.status }}</p>
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<form [formGroup]="pollForm" (ngSubmit)="onSubmit()">
|
||||||
|
<div class="field">
|
||||||
|
<label for="primeType">Sondage concerne des dates ?</label>
|
||||||
|
<p-inputSwitch id="primeType" formControlName="type"></p-inputSwitch>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="control is-expanded">
|
||||||
|
<label class="label" for="title">
|
||||||
|
Intitulé
|
||||||
|
<input class="input" type="text" formControlName="title" placeholder="Intitulé" />
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="control is-expanded">
|
||||||
|
<label class="label" for="description">
|
||||||
|
Description
|
||||||
|
<textarea pInputTextarea formControlName="description" placeholder="Description"></textarea>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="control is-expanded">
|
||||||
|
<label class="label" for="slug">
|
||||||
|
Url personnalisée
|
||||||
|
<input class="input" type="text" formControlName="slug" placeholder="Url" />
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button class="button is-fullwidth" type="submit" [disabled]="!pollForm.valid">Créer</button>
|
||||||
|
</form>
|
@ -0,0 +1,24 @@
|
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { EditDescriptionComponent } from './edit-description.component';
|
||||||
|
|
||||||
|
describe('EditDescriptionComponent', () => {
|
||||||
|
let component: EditDescriptionComponent;
|
||||||
|
let fixture: ComponentFixture<EditDescriptionComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [EditDescriptionComponent],
|
||||||
|
}).compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(EditDescriptionComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user