Merge branch 'dev' into US-listarInquilinos
This commit is contained in:
commit
06084ed899
|
@ -5,30 +5,46 @@ name: Node.js CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: ['master']
|
branches: ['master', 'dev']
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ['master']
|
branches: ['master', 'dev']
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build-api:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
working-directory: ./mobile-ui
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node-version: [14.x, 16.x, 18.x]
|
node-version: [14.x, 16.x, 18.x]
|
||||||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- name: checkout
|
||||||
run: cd ./mobile-ui
|
uses: actions/checkout@v3
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
|
- name: Test
|
||||||
run: |
|
run: |
|
||||||
|
cd ./api-gateway
|
||||||
|
npm ci
|
||||||
|
npm run build --if-present
|
||||||
|
build-web:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [14.x, 16.x, 18.x]
|
||||||
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
cache: 'npm'
|
||||||
|
- name: Test
|
||||||
|
run: |
|
||||||
|
cd ./web-ui/web-react/
|
||||||
npm ci
|
npm ci
|
||||||
npm run build --if-present
|
npm run build --if-present
|
||||||
npm test
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"editorconfig": false,
|
||||||
|
"indent_size": 2,
|
||||||
|
"end_with_newline": true,
|
||||||
|
"html": {
|
||||||
|
"brace_style": "collapse",
|
||||||
|
"indent_char": " ",
|
||||||
|
"indent_scripts": "normal",
|
||||||
|
"indent_inner_html": true,
|
||||||
|
"indent_empty_lines": false,
|
||||||
|
"wrap_line_length": 120,
|
||||||
|
"wrap_attributes": "force-expand-multiline",
|
||||||
|
"unformatted": [
|
||||||
|
"sub",
|
||||||
|
"sup",
|
||||||
|
"b",
|
||||||
|
"i",
|
||||||
|
"u",
|
||||||
|
"em",
|
||||||
|
"strong"
|
||||||
|
],
|
||||||
|
"preserve_newlines": true,
|
||||||
|
"max_preserve_newlines": 2
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
node_modules/*
|
||||||
|
e2e/*
|
||||||
|
dist/*
|
||||||
|
src/assets/scss/bootstrap/*
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"printWidth": 80,
|
||||||
|
"tabWidth": 2,
|
||||||
|
"useTabs": false,
|
||||||
|
"singleQuote": true,
|
||||||
|
"trailingComma": "all",
|
||||||
|
"bracketSpacing": true,
|
||||||
|
"arrowParens": "always",
|
||||||
|
"jsxBracketSameLine": false,
|
||||||
|
"semi": true
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
import { Controller, Get, Post, Body, Param, Delete } from '@nestjs/common';
|
import { Controller, Get, Post, Body, Param, Delete } from '@nestjs/common';
|
||||||
import { AppService } from "./app.service";
|
import { AppService } from './app.service';
|
||||||
@Controller()
|
@Controller()
|
||||||
export class AppController {
|
export class AppController {
|
||||||
constructor(private readonly appService: AppService) {}
|
constructor(private readonly appService: AppService) {}
|
||||||
|
@ -11,12 +11,11 @@ export class AppController {
|
||||||
@Body('last_name') last_name: string,
|
@Body('last_name') last_name: string,
|
||||||
@Body('email') email: string,
|
@Body('email') email: string,
|
||||||
@Body('phone') phone: number,
|
@Body('phone') phone: number,
|
||||||
@Body('password') password: string,
|
|
||||||
@Body('user_type') user_type: string,
|
@Body('user_type') user_type: string,
|
||||||
@Body('status') status: string,
|
@Body('status') status: string,
|
||||||
@Body('date_entry') date_entry: Date,
|
@Body('date_entry') date_entry: Date,
|
||||||
) {
|
) {
|
||||||
return this.appService.createAdminSystem(dni, name, last_name, email, phone, password,
|
return this.appService.createAdminSystem(dni, name, last_name, email, phone,
|
||||||
user_type, status, date_entry);
|
user_type, status, date_entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,13 +27,29 @@ export class AppController {
|
||||||
@Body('last_name') last_name: string,
|
@Body('last_name') last_name: string,
|
||||||
@Body('email') email: string,
|
@Body('email') email: string,
|
||||||
@Body('phone') phone: number,
|
@Body('phone') phone: number,
|
||||||
@Body('password') password: string,
|
@Body('user_type') user_type: string,
|
||||||
|
@Body('status') status: string,
|
||||||
|
@Body('date_entry') date_entry: Date,
|
||||||
|
@Body('community_id') community_id: string,
|
||||||
|
) {
|
||||||
|
return this.appService.createGuard(dni, name, last_name, email, phone,
|
||||||
|
user_type, status, date_entry,community_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post('user/createAdminCommunity')
|
||||||
|
createAdminCommunity(
|
||||||
|
//Nombre, Apellidos, Correo electrónico, Cédula, Teléfono, Contraseña
|
||||||
|
@Body('dni') dni: string,
|
||||||
|
@Body('name') name: string,
|
||||||
|
@Body('last_name') last_name: string,
|
||||||
|
@Body('email') email: string,
|
||||||
|
@Body('phone') phone: number,
|
||||||
@Body('user_type') user_type: string,
|
@Body('user_type') user_type: string,
|
||||||
@Body('status') status: string,
|
@Body('status') status: string,
|
||||||
@Body('date_entry') date_entry: Date,
|
@Body('date_entry') date_entry: Date,
|
||||||
@Body('community_id') community_id:string
|
@Body('community_id') community_id:string
|
||||||
) {
|
) {
|
||||||
return this.appService.createGuard(dni, name, last_name, email, phone, password,
|
return this.appService.createAdminCommunity(dni, name, last_name, email, phone,
|
||||||
user_type, status, date_entry,community_id);
|
user_type, status, date_entry,community_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -51,8 +66,18 @@ export class AppController {
|
||||||
@Body('date_entry') date_entry: Date,
|
@Body('date_entry') date_entry: Date,
|
||||||
@Body('community_id') community_id: string,
|
@Body('community_id') community_id: string,
|
||||||
) {
|
) {
|
||||||
return this.appService.createUser(dni, name, last_name, email, phone, password,
|
return this.appService.createUser(
|
||||||
user_type, status, date_entry, community_id);
|
dni,
|
||||||
|
name,
|
||||||
|
last_name,
|
||||||
|
email,
|
||||||
|
phone,
|
||||||
|
password,
|
||||||
|
user_type,
|
||||||
|
status,
|
||||||
|
date_entry,
|
||||||
|
community_id,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('user/allUsers')
|
@Get('user/allUsers')
|
||||||
|
@ -79,9 +104,7 @@ export class AppController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('user/findGuards/:community')
|
@Get('user/findGuards/:community')
|
||||||
findGuardsCommunity(
|
findGuardsCommunity(@Param('community_id') community_id: string) {
|
||||||
@Param('community_id') community_id: string
|
|
||||||
) {
|
|
||||||
return this.appService.findGuardsCommunity(community_id);
|
return this.appService.findGuardsCommunity(community_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,17 +114,12 @@ export class AppController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('user/find/:dni')
|
@Get('user/find/:dni')
|
||||||
findUser(
|
findUser(@Param('dni') paramUserDNI: string) {
|
||||||
@Param('dni') paramUserDNI: string
|
|
||||||
) {
|
|
||||||
return this.appService.findUser(paramUserDNI);
|
return this.appService.findUser(paramUserDNI);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Delete('user/deleteAdminSystem/:id')
|
@Delete('user/deleteAdminSystem/:id')
|
||||||
deleteAdminSystem(
|
deleteAdminSystem(@Param('id') id: string) {
|
||||||
@Param('id') id: string,
|
|
||||||
) {
|
|
||||||
return this.appService.deleteAdminSystem(id);
|
return this.appService.deleteAdminSystem(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,11 +135,18 @@ export class AppController {
|
||||||
@Body('status') status: string,
|
@Body('status') status: string,
|
||||||
@Body('date_entry') date_entry: Date,
|
@Body('date_entry') date_entry: Date,
|
||||||
@Body('houses') houses: [],
|
@Body('houses') houses: [],
|
||||||
|
|
||||||
) {
|
) {
|
||||||
return this.appService.createCommunity(name, province, canton,
|
return this.appService.createCommunity(
|
||||||
district, num_houses, phone,
|
name,
|
||||||
status, date_entry, houses);
|
province,
|
||||||
|
canton,
|
||||||
|
district,
|
||||||
|
num_houses,
|
||||||
|
phone,
|
||||||
|
status,
|
||||||
|
date_entry,
|
||||||
|
houses,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('community/allCommunities')
|
@Get('community/allCommunities')
|
||||||
|
@ -130,25 +155,17 @@ export class AppController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('community/findCommunity/:id')
|
@Get('community/findCommunity/:id')
|
||||||
findCommunity(
|
findCommunity(@Param('id') paramCommunityId: string) {
|
||||||
@Param('id') paramCommunityId: string
|
|
||||||
) {
|
|
||||||
return this.appService.findCommunity(paramCommunityId);
|
return this.appService.findCommunity(paramCommunityId);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('community/findCommunityName/:id')
|
@Get('community/findCommunityName/:id')
|
||||||
findCommunityName(
|
findCommunityName(@Param('id') paramCommunityId: string) {
|
||||||
@Param('id') paramCommunityId: string
|
|
||||||
) {
|
|
||||||
return this.appService.findCommunityName(paramCommunityId);
|
return this.appService.findCommunityName(paramCommunityId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Post('community/findCommunityAdmin')
|
@Post('community/findCommunityAdmin')
|
||||||
findCommunityAdmin(
|
findCommunityAdmin(@Body('community_id') community_id: string) {
|
||||||
@Body('community_id') community_id: string,
|
|
||||||
) {
|
|
||||||
return this.appService.findCommunityAdmin(community_id);
|
return this.appService.findCommunityAdmin(community_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -161,22 +178,22 @@ export class AppController {
|
||||||
@Body('bookable') bookable: number,
|
@Body('bookable') bookable: number,
|
||||||
@Body('community_id') community_id: string,
|
@Body('community_id') community_id: string,
|
||||||
) {
|
) {
|
||||||
|
return this.appService.createCommonArea(
|
||||||
return this.appService.createCommonArea(name, hourMin, hourMax,
|
name,
|
||||||
bookable, community_id);
|
hourMin,
|
||||||
|
hourMax,
|
||||||
|
bookable,
|
||||||
|
community_id,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Get('commonArea/allCommonAreas')
|
@Get('commonArea/allCommonAreas')
|
||||||
allCommonAreas() {
|
allCommonAreas() {
|
||||||
return this.appService.allCommonAreas();
|
return this.appService.allCommonAreas();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Get('commonArea/findCommonArea/:id')
|
@Get('commonArea/findCommonArea/:id')
|
||||||
findCommonArea(
|
findCommonArea(@Param('id') paramCommonAreaId: string) {
|
||||||
@Param('id') paramCommonAreaId: string
|
|
||||||
) {
|
|
||||||
return this.appService.findCommonArea(paramCommonAreaId);
|
return this.appService.findCommonArea(paramCommonAreaId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -192,7 +209,15 @@ export class AppController {
|
||||||
@Body('status') status: string,
|
@Body('status') status: string,
|
||||||
@Body('date_entry') date_entry: Date,
|
@Body('date_entry') date_entry: Date,
|
||||||
) {
|
) {
|
||||||
return this.appService.createGuest(name, last_name, dni, number_plate, phone, status, date_entry);
|
return this.appService.createGuest(
|
||||||
|
name,
|
||||||
|
last_name,
|
||||||
|
dni,
|
||||||
|
number_plate,
|
||||||
|
phone,
|
||||||
|
status,
|
||||||
|
date_entry,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('guest/allGuests')
|
@Get('guest/allGuests')
|
||||||
|
@ -201,13 +226,10 @@ export class AppController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('guest/find/:dni')
|
@Get('guest/find/:dni')
|
||||||
findGuest(
|
findGuest(@Param('dni') paramGuestDNI: string) {
|
||||||
@Param('dni') paramGuestDNI: string
|
|
||||||
) {
|
|
||||||
return this.appService.findGuest(paramGuestDNI);
|
return this.appService.findGuest(paramGuestDNI);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// #==== API Payment
|
// #==== API Payment
|
||||||
|
|
||||||
@Post('payment/createPayment')
|
@Post('payment/createPayment')
|
||||||
|
@ -220,8 +242,15 @@ export class AppController {
|
||||||
@Body('user_id') user_id: string,
|
@Body('user_id') user_id: string,
|
||||||
@Body('communty_id') communty_id: string,
|
@Body('communty_id') communty_id: string,
|
||||||
) {
|
) {
|
||||||
return this.appService.createPayment(date_payment, mount, description,
|
return this.appService.createPayment(
|
||||||
period, status, user_id, communty_id);
|
date_payment,
|
||||||
|
mount,
|
||||||
|
description,
|
||||||
|
period,
|
||||||
|
status,
|
||||||
|
user_id,
|
||||||
|
communty_id,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('payment/allPayments')
|
@Get('payment/allPayments')
|
||||||
|
@ -230,9 +259,7 @@ export class AppController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('payment/find/:dni')
|
@Get('payment/find/:dni')
|
||||||
findPayment(
|
findPayment(@Param('dni') paramPaymentDNI: string) {
|
||||||
@Param('dni') paramPaymentDNI: string
|
|
||||||
) {
|
|
||||||
return this.appService.findPayment(paramPaymentDNI);
|
return this.appService.findPayment(paramPaymentDNI);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -247,8 +274,14 @@ export class AppController {
|
||||||
@Body('user_id') user_id: string,
|
@Body('user_id') user_id: string,
|
||||||
@Body('common_area_id') common_area_id: string,
|
@Body('common_area_id') common_area_id: string,
|
||||||
) {
|
) {
|
||||||
return this.appService.createReservation(start_time, finish_time, status,
|
return this.appService.createReservation(
|
||||||
date_entry, user_id, common_area_id);
|
start_time,
|
||||||
|
finish_time,
|
||||||
|
status,
|
||||||
|
date_entry,
|
||||||
|
user_id,
|
||||||
|
common_area_id,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('reservation/allReservations')
|
@Get('reservation/allReservations')
|
||||||
|
@ -257,13 +290,10 @@ export class AppController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('reservation/find/:id')
|
@Get('reservation/find/:id')
|
||||||
findReservation(
|
findReservation(@Param('id') paramReservation: string) {
|
||||||
@Param('id') paramReservation: string
|
|
||||||
) {
|
|
||||||
return this.appService.findReservation(paramReservation);
|
return this.appService.findReservation(paramReservation);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// #==== API Post
|
// #==== API Post
|
||||||
|
|
||||||
@Post('post/createPost')
|
@Post('post/createPost')
|
||||||
|
@ -282,13 +312,10 @@ export class AppController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('post/find/:id')
|
@Get('post/find/:id')
|
||||||
findPost(
|
findPost(@Param('id') paramPost: string) {
|
||||||
@Param('id') paramPost: string
|
|
||||||
) {
|
|
||||||
return this.appService.findPost(paramPost);
|
return this.appService.findPost(paramPost);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// #==== API Comment
|
// #==== API Comment
|
||||||
|
|
||||||
@Post('post/createComment')
|
@Post('post/createComment')
|
||||||
|
@ -307,14 +334,10 @@ export class AppController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('post/findComment/:id')
|
@Get('post/findComment/:id')
|
||||||
findComment(
|
findComment(@Param('id') paramComment: string) {
|
||||||
@Param('id') paramComment: string
|
|
||||||
) {
|
|
||||||
return this.appService.findComment(paramComment);
|
return this.appService.findComment(paramComment);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// #==== API Report
|
// #==== API Report
|
||||||
|
|
||||||
@Post('report/createReport')
|
@Post('report/createReport')
|
||||||
|
@ -324,7 +347,12 @@ export class AppController {
|
||||||
@Body('date_entry') date_entry: Date,
|
@Body('date_entry') date_entry: Date,
|
||||||
@Body('user_id') user_id: string,
|
@Body('user_id') user_id: string,
|
||||||
) {
|
) {
|
||||||
return this.appService.createReport(action, description, date_entry, user_id);
|
return this.appService.createReport(
|
||||||
|
action,
|
||||||
|
description,
|
||||||
|
date_entry,
|
||||||
|
user_id,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('report/allReports')
|
@Get('report/allReports')
|
||||||
|
@ -333,26 +361,16 @@ export class AppController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('report/find/:id')
|
@Get('report/find/:id')
|
||||||
findReport(
|
findReport(@Param('id') paramReport: string) {
|
||||||
@Param('id') paramReport: string
|
|
||||||
) {
|
|
||||||
return this.appService.findReport(paramReport);
|
return this.appService.findReport(paramReport);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Post('email/sendMail')
|
@Post('email/sendMail')
|
||||||
senMail(
|
senMail(@Body('email') email: string) {
|
||||||
@Body('email') email: string,
|
|
||||||
) {
|
|
||||||
|
|
||||||
return this.appService.sendMail(email);
|
return this.appService.sendMail(email);
|
||||||
}
|
}
|
||||||
@Post('email/html')
|
@Post('email/html')
|
||||||
html(
|
html(@Body('email') email: string, @Body('name') name: string) {
|
||||||
@Body('email') email: string,
|
|
||||||
@Body('name') name: string,
|
|
||||||
) {
|
|
||||||
|
|
||||||
return this.appService.html(email, name);
|
return this.appService.html(email, name);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,99 +1,99 @@
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { AppController } from './app.controller';
|
import { AppController } from './app.controller';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
import { AppService } from './app.service';
|
import { AppService } from './app.service';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_USUARIOS",
|
name: 'SERVICIO_USUARIOS',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3001
|
port: 3001,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_COMUNIDADES",
|
name: 'SERVICIO_COMUNIDADES',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3002
|
port: 3002,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_AREAS_COMUNES",
|
name: 'SERVICIO_AREAS_COMUNES',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3003
|
port: 3003,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_INVITADOS",
|
name: 'SERVICIO_INVITADOS',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3004
|
port: 3004,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_PAGOS",
|
name: 'SERVICIO_PAGOS',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3005
|
port: 3005,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_RESERVACIONES",
|
name: 'SERVICIO_RESERVACIONES',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3006
|
port: 3006,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_POSTS",
|
name: 'SERVICIO_POSTS',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3007
|
port: 3007,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_REPORTES",
|
name: 'SERVICIO_REPORTES',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3008
|
port: 3008,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_NOTIFICACIONES",
|
name: 'SERVICIO_NOTIFICACIONES',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3009
|
port: 3009,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
],
|
],
|
||||||
controllers: [AppController],
|
controllers: [AppController],
|
||||||
|
|
|
@ -1,61 +1,91 @@
|
||||||
import { Injectable, Inject } from '@nestjs/common';
|
import { Injectable, Inject } from '@nestjs/common';
|
||||||
import { ClientProxy } from "@nestjs/microservices";
|
import { ClientProxy } from '@nestjs/microservices';
|
||||||
import { map } from "rxjs/operators";
|
import { map } from 'rxjs/operators';
|
||||||
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class AppService {
|
export class AppService {
|
||||||
constructor(
|
constructor(
|
||||||
@Inject('SERVICIO_USUARIOS') private readonly clientUserApp: ClientProxy,
|
@Inject('SERVICIO_USUARIOS') private readonly clientUserApp: ClientProxy,
|
||||||
@Inject('SERVICIO_COMUNIDADES') private readonly clientCommunityApp: ClientProxy,
|
@Inject('SERVICIO_COMUNIDADES')
|
||||||
@Inject('SERVICIO_AREAS_COMUNES') private readonly clientCommonAreaApp: ClientProxy,
|
private readonly clientCommunityApp: ClientProxy,
|
||||||
|
@Inject('SERVICIO_AREAS_COMUNES')
|
||||||
|
private readonly clientCommonAreaApp: ClientProxy,
|
||||||
@Inject('SERVICIO_INVITADOS') private readonly clientGuestApp: ClientProxy,
|
@Inject('SERVICIO_INVITADOS') private readonly clientGuestApp: ClientProxy,
|
||||||
@Inject('SERVICIO_PAGOS') private readonly clientPaymentApp: ClientProxy,
|
@Inject('SERVICIO_PAGOS') private readonly clientPaymentApp: ClientProxy,
|
||||||
@Inject('SERVICIO_RESERVACIONES') private readonly clientReservationApp: ClientProxy,
|
@Inject('SERVICIO_RESERVACIONES')
|
||||||
|
private readonly clientReservationApp: ClientProxy,
|
||||||
@Inject('SERVICIO_POSTS') private readonly clientPostApp: ClientProxy,
|
@Inject('SERVICIO_POSTS') private readonly clientPostApp: ClientProxy,
|
||||||
@Inject('SERVICIO_REPORTES') private readonly clientReportApp: ClientProxy,
|
@Inject('SERVICIO_REPORTES') private readonly clientReportApp: ClientProxy,
|
||||||
@Inject('SERVICIO_NOTIFICACIONES') private readonly clientNotificationtApp: ClientProxy,
|
@Inject('SERVICIO_NOTIFICACIONES')
|
||||||
|
private readonly clientNotificationtApp: ClientProxy,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
// ====================== USERS ===============================
|
// ====================== USERS ===============================
|
||||||
|
|
||||||
//POST parameter from API
|
//POST parameter from API
|
||||||
createUser(dni: string, name: string, last_name: string, email: string, phone: number
|
createUser(
|
||||||
, password: string, user_type: string, status: string, date_entry: Date, community_id: string) {
|
dni: string,
|
||||||
|
name: string,
|
||||||
|
last_name: string,
|
||||||
|
email: string,
|
||||||
|
phone: number,
|
||||||
|
password: string,
|
||||||
|
user_type: string,
|
||||||
|
status: string,
|
||||||
|
date_entry: Date,
|
||||||
|
community_id: string,
|
||||||
|
) {
|
||||||
const pattern = { cmd: 'createUser' };
|
const pattern = { cmd: 'createUser' };
|
||||||
const payload = {
|
const payload = {
|
||||||
dni: dni, name: name, last_name: last_name, email: email, phone: phone,
|
dni: dni,
|
||||||
password: password, user_type: user_type, status: status, date_entry: date_entry,
|
name: name,
|
||||||
community_id: community_id
|
last_name: last_name,
|
||||||
|
email: email,
|
||||||
|
phone: phone,
|
||||||
|
password: password,
|
||||||
|
user_type: user_type,
|
||||||
|
status: status,
|
||||||
|
date_entry: date_entry,
|
||||||
|
community_id: community_id,
|
||||||
};
|
};
|
||||||
return this.clientUserApp
|
return this.clientUserApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//POST parameter from API
|
//POST parameter from API
|
||||||
createAdminSystem(dni: string, name: string, last_name: string, email: string, phone: number
|
createAdminSystem(dni: string, name: string, last_name: string, email: string, phone: number
|
||||||
, password: string, user_type: string, status: string, date_entry: Date) {
|
, user_type: string, status: string, date_entry: Date) {
|
||||||
const pattern = { cmd: 'createAdminSystem' };
|
const pattern = { cmd: 'createAdminSystem' };
|
||||||
const payload = {
|
const payload = {
|
||||||
dni: dni, name: name, last_name: last_name, email: email, phone: phone,
|
dni: dni, name: name, last_name: last_name, email: email, phone: phone,
|
||||||
password: password, user_type: user_type, status: status, date_entry: date_entry
|
password: this.generatePassword(), user_type: user_type, status: status, date_entry: date_entry
|
||||||
};
|
};
|
||||||
return this.clientUserApp
|
return this.clientUserApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
createGuard(dni: string, name: string, last_name: string, email: string, phone: number
|
createGuard(dni: string, name: string, last_name: string, email: string, phone: number
|
||||||
, password: string, user_type: string, status: string, date_entry: Date, community_id: string) {
|
, user_type: string, status: string, date_entry: Date, community_id: string) {
|
||||||
const pattern = { cmd: 'createGuard' };
|
const pattern = { cmd: 'createGuard' };
|
||||||
const payload = {
|
const payload = {
|
||||||
dni: dni, name: name, last_name: last_name, email: email, phone: phone,
|
dni: dni, name: name, last_name: last_name, email: email, phone: phone,
|
||||||
password: password, user_type: user_type, status: status, date_entry: date_entry, community_id
|
password: this.generatePassword(), user_type: user_type, status: status, date_entry: date_entry, community_id
|
||||||
|
|
||||||
|
};
|
||||||
|
return this.clientUserApp
|
||||||
|
.send<string>(pattern, payload)
|
||||||
|
.pipe(map((message: string) => ({ message })));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
createAdminCommunity(dni: string, name: string, last_name: string, email: string, phone: number
|
||||||
|
, user_type: string, status: string, date_entry: Date, community_id: string) {
|
||||||
|
const pattern = { cmd: 'createAdminCommunity' };
|
||||||
|
const payload = {
|
||||||
|
dni: dni, name: name, last_name: last_name, email: email, phone: phone,
|
||||||
|
password: this.generatePassword(), user_type: user_type, status: status, date_entry: date_entry, community_id
|
||||||
|
|
||||||
};
|
};
|
||||||
return this.clientUserApp
|
return this.clientUserApp
|
||||||
|
@ -70,9 +100,7 @@ export class AppService {
|
||||||
const payload = {};
|
const payload = {};
|
||||||
return this.clientUserApp
|
return this.clientUserApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allUsersAdminSistema() {
|
allUsersAdminSistema() {
|
||||||
|
@ -80,9 +108,7 @@ export class AppService {
|
||||||
const payload = {};
|
const payload = {};
|
||||||
return this.clientUserApp
|
return this.clientUserApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allUsersAdminComunidad() {
|
allUsersAdminComunidad() {
|
||||||
|
@ -90,9 +116,7 @@ export class AppService {
|
||||||
const payload = {};
|
const payload = {};
|
||||||
return this.clientUserApp
|
return this.clientUserApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allUsersTenants() {
|
allUsersTenants() {
|
||||||
|
@ -112,9 +136,7 @@ export class AppService {
|
||||||
const payload = { dni: paramUserDNI };
|
const payload = { dni: paramUserDNI };
|
||||||
return this.clientUserApp
|
return this.clientUserApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
findGuardsCommunity(community_id: string) {
|
findGuardsCommunity(community_id: string) {
|
||||||
|
@ -122,9 +144,7 @@ export class AppService {
|
||||||
const payload = { community_id: community_id };
|
const payload = { community_id: community_id };
|
||||||
return this.clientUserApp
|
return this.clientUserApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -133,9 +153,7 @@ export class AppService {
|
||||||
const payload = { id: id };
|
const payload = { id: id };
|
||||||
return this.clientUserApp
|
return this.clientUserApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inicioSesion(pEmail: string, pPassword: string) {
|
inicioSesion(pEmail: string, pPassword: string) {
|
||||||
|
@ -143,21 +161,16 @@ export class AppService {
|
||||||
const payload = { email: pEmail, password: pPassword };
|
const payload = { email: pEmail, password: pPassword };
|
||||||
return this.clientUserApp
|
return this.clientUserApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//GET parameter from API
|
//GET parameter from API
|
||||||
findCommunityAdmin(community_id: string) {
|
findCommunityAdmin(community_id: string) {
|
||||||
const pattern = { cmd: 'findCommunityAdmin' };
|
const pattern = { cmd: 'findCommunityAdmin' };
|
||||||
const payload = { community_id: community_id };
|
const payload = { community_id: community_id };
|
||||||
return this.clientCommunityApp
|
return this.clientCommunityApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ====================== COMMUNITIES ===============================
|
// ====================== COMMUNITIES ===============================
|
||||||
|
@ -167,14 +180,19 @@ export class AppService {
|
||||||
, num_houses: number, phone: string, status: string, date_entry: Date, houses: []) {
|
, num_houses: number, phone: string, status: string, date_entry: Date, houses: []) {
|
||||||
const pattern = { cmd: 'createCommunity' };
|
const pattern = { cmd: 'createCommunity' };
|
||||||
const payload = {
|
const payload = {
|
||||||
name: name, province: province, canton: canton, district: district, num_houses: num_houses,
|
name: name,
|
||||||
phone: phone, status: status, date_entry: date_entry, houses: houses
|
province: province,
|
||||||
|
canton: canton,
|
||||||
|
district: district,
|
||||||
|
num_houses: num_houses,
|
||||||
|
phone: phone,
|
||||||
|
status: status,
|
||||||
|
date_entry: date_entry,
|
||||||
|
houses: houses,
|
||||||
};
|
};
|
||||||
return this.clientCommunityApp
|
return this.clientCommunityApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allCommunities() {
|
allCommunities() {
|
||||||
|
@ -182,9 +200,7 @@ export class AppService {
|
||||||
const payload = {};
|
const payload = {};
|
||||||
return this.clientCommunityApp
|
return this.clientCommunityApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//GET parameter from API
|
//GET parameter from API
|
||||||
|
@ -193,9 +209,7 @@ export class AppService {
|
||||||
const payload = { id: paramCommunityId };
|
const payload = { id: paramCommunityId };
|
||||||
return this.clientCommunityApp
|
return this.clientCommunityApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
findCommunityName(paramCommunityId: string) {
|
findCommunityName(paramCommunityId: string) {
|
||||||
|
@ -203,27 +217,29 @@ export class AppService {
|
||||||
const payload = { id: paramCommunityId };
|
const payload = { id: paramCommunityId };
|
||||||
return this.clientCommunityApp
|
return this.clientCommunityApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// ====================== COMMON AREAS ===============================
|
// ====================== COMMON AREAS ===============================
|
||||||
//POST parameter from API
|
//POST parameter from API
|
||||||
createCommonArea(name: string, hourMin: string, hourMax: string,
|
createCommonArea(
|
||||||
bookable: number, community_id: string) {
|
name: string,
|
||||||
|
hourMin: string,
|
||||||
|
hourMax: string,
|
||||||
|
bookable: number,
|
||||||
|
community_id: string,
|
||||||
|
) {
|
||||||
const pattern = { cmd: 'createCommonArea' };
|
const pattern = { cmd: 'createCommonArea' };
|
||||||
const payload = {
|
const payload = {
|
||||||
name: name, hourMin: hourMin, hourMax: hourMax, bookable: bookable,
|
name: name,
|
||||||
community_id: community_id
|
hourMin: hourMin,
|
||||||
|
hourMax: hourMax,
|
||||||
|
bookable: bookable,
|
||||||
|
community_id: community_id,
|
||||||
};
|
};
|
||||||
return this.clientCommonAreaApp
|
return this.clientCommonAreaApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allCommonAreas() {
|
allCommonAreas() {
|
||||||
|
@ -231,9 +247,7 @@ export class AppService {
|
||||||
const payload = {};
|
const payload = {};
|
||||||
return this.clientCommonAreaApp
|
return this.clientCommonAreaApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//GET parameter from API
|
//GET parameter from API
|
||||||
|
@ -242,18 +256,21 @@ export class AppService {
|
||||||
const payload = { id: paramCommonAreaId };
|
const payload = { id: paramCommonAreaId };
|
||||||
return this.clientCommonAreaApp
|
return this.clientCommonAreaApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ====================== GUESTS ===============================
|
// ====================== GUESTS ===============================
|
||||||
|
|
||||||
|
|
||||||
//POST parameter from API
|
//POST parameter from API
|
||||||
createGuest(name: string, last_name: string, dni: string, number_plate: string, phone: number
|
createGuest(
|
||||||
, status: string, date_entry: Date) {
|
name: string,
|
||||||
|
last_name: string,
|
||||||
|
dni: string,
|
||||||
|
number_plate: string,
|
||||||
|
phone: number,
|
||||||
|
status: string,
|
||||||
|
date_entry: Date,
|
||||||
|
) {
|
||||||
const pattern = { cmd: 'createGuest' };
|
const pattern = { cmd: 'createGuest' };
|
||||||
const payload = {
|
const payload = {
|
||||||
name: name, last_name: last_name, dni: dni, number_plate: number_plate, phone: phone,
|
name: name, last_name: last_name, dni: dni, number_plate: number_plate, phone: phone,
|
||||||
|
@ -261,9 +278,7 @@ export class AppService {
|
||||||
};
|
};
|
||||||
return this.clientGuestApp
|
return this.clientGuestApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allGuests() {
|
allGuests() {
|
||||||
|
@ -271,9 +286,7 @@ export class AppService {
|
||||||
const payload = {};
|
const payload = {};
|
||||||
return this.clientGuestApp
|
return this.clientGuestApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//GET parameter from API
|
//GET parameter from API
|
||||||
|
@ -282,16 +295,21 @@ export class AppService {
|
||||||
const payload = { dni: paramGuestDNI };
|
const payload = { dni: paramGuestDNI };
|
||||||
return this.clientGuestApp
|
return this.clientGuestApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ====================== PAYMENTS ===============================
|
// ====================== PAYMENTS ===============================
|
||||||
|
|
||||||
//POST parameter from API
|
//POST parameter from API
|
||||||
createPayment(date_payment: Date, mount: number, description: string, period: string
|
createPayment(
|
||||||
, status: string, user_id: string, communty_id: string) {
|
date_payment: Date,
|
||||||
|
mount: number,
|
||||||
|
description: string,
|
||||||
|
period: string,
|
||||||
|
status: string,
|
||||||
|
user_id: string,
|
||||||
|
communty_id: string,
|
||||||
|
) {
|
||||||
const pattern = { cmd: 'createPayment' };
|
const pattern = { cmd: 'createPayment' };
|
||||||
const payload = {
|
const payload = {
|
||||||
date_payment: date_payment, mount: mount, description: description,
|
date_payment: date_payment, mount: mount, description: description,
|
||||||
|
@ -299,9 +317,7 @@ export class AppService {
|
||||||
};
|
};
|
||||||
return this.clientPaymentApp
|
return this.clientPaymentApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allPayments() {
|
allPayments() {
|
||||||
|
@ -309,9 +325,7 @@ export class AppService {
|
||||||
const payload = {};
|
const payload = {};
|
||||||
return this.clientPaymentApp
|
return this.clientPaymentApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//GET parameter from API
|
//GET parameter from API
|
||||||
|
@ -320,12 +334,9 @@ export class AppService {
|
||||||
const payload = { id: paramPaymentId };
|
const payload = { id: paramPaymentId };
|
||||||
return this.clientPaymentApp
|
return this.clientPaymentApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ====================== RESERVATIONS ===============================
|
// ====================== RESERVATIONS ===============================
|
||||||
|
|
||||||
//POST parameter from API
|
//POST parameter from API
|
||||||
|
@ -338,9 +349,7 @@ export class AppService {
|
||||||
};
|
};
|
||||||
return this.clientReservationApp
|
return this.clientReservationApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allReservations() {
|
allReservations() {
|
||||||
|
@ -348,9 +357,7 @@ export class AppService {
|
||||||
const payload = {};
|
const payload = {};
|
||||||
return this.clientReservationApp
|
return this.clientReservationApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//GET parameter from API
|
//GET parameter from API
|
||||||
|
@ -359,12 +366,9 @@ export class AppService {
|
||||||
const payload = { id: paramReservationId };
|
const payload = { id: paramReservationId };
|
||||||
return this.clientReservationApp
|
return this.clientReservationApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ====================== POSTS ===============================
|
// ====================== POSTS ===============================
|
||||||
|
|
||||||
//POST parameter from API
|
//POST parameter from API
|
||||||
|
@ -377,9 +381,7 @@ export class AppService {
|
||||||
};
|
};
|
||||||
return this.clientPostApp
|
return this.clientPostApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allPosts() {
|
allPosts() {
|
||||||
|
@ -387,9 +389,7 @@ export class AppService {
|
||||||
const payload = {};
|
const payload = {};
|
||||||
return this.clientPostApp
|
return this.clientPostApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//GET parameter from API
|
//GET parameter from API
|
||||||
|
@ -398,9 +398,7 @@ export class AppService {
|
||||||
const payload = { id: paramPostId };
|
const payload = { id: paramPostId };
|
||||||
return this.clientPostApp
|
return this.clientPostApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ====================== COMMNENT POSTS ===============================
|
// ====================== COMMNENT POSTS ===============================
|
||||||
|
@ -415,9 +413,7 @@ export class AppService {
|
||||||
};
|
};
|
||||||
return this.clientPostApp
|
return this.clientPostApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allComments() {
|
allComments() {
|
||||||
|
@ -425,9 +421,7 @@ export class AppService {
|
||||||
const payload = {};
|
const payload = {};
|
||||||
return this.clientPostApp
|
return this.clientPostApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//GET parameter from API
|
//GET parameter from API
|
||||||
|
@ -436,9 +430,7 @@ export class AppService {
|
||||||
const payload = { id: paramCommentId };
|
const payload = { id: paramCommentId };
|
||||||
return this.clientPostApp
|
return this.clientPostApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ====================== REPORTS ===============================
|
// ====================== REPORTS ===============================
|
||||||
|
@ -453,9 +445,7 @@ export class AppService {
|
||||||
};
|
};
|
||||||
return this.clientReportApp
|
return this.clientReportApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allReports() {
|
allReports() {
|
||||||
|
@ -463,9 +453,7 @@ export class AppService {
|
||||||
const payload = {};
|
const payload = {};
|
||||||
return this.clientReportApp
|
return this.clientReportApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//GET parameter from API
|
//GET parameter from API
|
||||||
|
@ -474,20 +462,15 @@ export class AppService {
|
||||||
const payload = { id: paramReportId };
|
const payload = { id: paramReportId };
|
||||||
return this.clientReportApp
|
return this.clientReportApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
sendMail(email: string) {
|
sendMail(email: string) {
|
||||||
const pattern = { cmd: 'sendMail' };
|
const pattern = { cmd: 'sendMail' };
|
||||||
const payload = { email: email };
|
const payload = { email: email };
|
||||||
return this.clientNotificationtApp
|
return this.clientNotificationtApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
html(email: string, name: string) {
|
html(email: string, name: string) {
|
||||||
|
@ -495,8 +478,24 @@ export class AppService {
|
||||||
const payload = { email: email, name: name };
|
const payload = { email: email, name: name };
|
||||||
return this.clientNotificationtApp
|
return this.clientNotificationtApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
}
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Function to generate combination of password */
|
||||||
|
generatePassword() {
|
||||||
|
var pass = '';
|
||||||
|
var str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' +
|
||||||
|
'abcdefghijklmnopqrstuvwxyz0123456789@#$';
|
||||||
|
|
||||||
|
for (let i = 1; i <= 8; i++) {
|
||||||
|
var char = Math.floor(Math.random()
|
||||||
|
* str.length + 1);
|
||||||
|
|
||||||
|
pass += str.charAt(char)
|
||||||
|
}
|
||||||
|
|
||||||
|
return pass;
|
||||||
}
|
}
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"devDependencies": {
|
||||||
|
"husky": "^8.0.1",
|
||||||
|
"js-beautify": "^1.14.4",
|
||||||
|
"lint-staged": "^13.0.3",
|
||||||
|
"prettier": "^2.7.1"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"format": "npm run format:prettier && npm run format:html",
|
||||||
|
"format:prettier": "prettier --config .prettierrc \"**/src/**/*.{ts,css,less,scss,js}\" --write",
|
||||||
|
"format:html": "js-beautify --config .jsbeautifyrc --type 'html' --file '**/src/**/*.html' --replace"
|
||||||
|
},
|
||||||
|
"husky": {
|
||||||
|
"hooks": {
|
||||||
|
"pre-commit": "lint-staged"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lint-staged": {
|
||||||
|
"*.{ts,css,less,scss,js}": [
|
||||||
|
"prettier --config .prettierrc --write",
|
||||||
|
"git add"
|
||||||
|
],
|
||||||
|
"*.html": [
|
||||||
|
"js-beautify --config .jsbeautifyrc --type 'html' --replace",
|
||||||
|
"git add"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
|
@ -6,7 +6,9 @@ import { BooksModule } from './books/books.module';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
MongooseModule.forRoot(`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_books?retryWrites=true&w=majority`),
|
MongooseModule.forRoot(
|
||||||
|
`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_books?retryWrites=true&w=majority`,
|
||||||
|
),
|
||||||
BooksModule,
|
BooksModule,
|
||||||
],
|
],
|
||||||
controllers: [AppController],
|
controllers: [AppController],
|
||||||
|
|
|
@ -9,6 +9,6 @@ import { Book, BookSchema } from './schemas/book.schema';
|
||||||
MongooseModule.forFeature([{ name: Book.name, schema: BookSchema }]),
|
MongooseModule.forFeature([{ name: Book.name, schema: BookSchema }]),
|
||||||
],
|
],
|
||||||
controllers: [BooksController],
|
controllers: [BooksController],
|
||||||
providers: [BooksService]
|
providers: [BooksService],
|
||||||
})
|
})
|
||||||
export class BooksModule {}
|
export class BooksModule {}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
import { ApiProperty } from '@nestjs/swagger';
|
import { ApiProperty } from '@nestjs/swagger';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export class CreateBookDto {
|
export class CreateBookDto {
|
||||||
@ApiProperty({
|
@ApiProperty({
|
||||||
example: 'Nest.js: A Progressive Node.js Framework (English Edition)',
|
example: 'Nest.js: A Progressive Node.js Framework (English Edition)',
|
||||||
|
|
|
@ -1,23 +1,25 @@
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { CommonAreasModule } from './common_areas/common_areas.module';
|
import { CommonAreasModule } from './common_areas/common_areas.module';
|
||||||
import { MongooseModule } from '@nestjs/mongoose';
|
import { MongooseModule } from '@nestjs/mongoose';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
|
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_AREAS_COMUNES",
|
name: 'SERVICIO_AREAS_COMUNES',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3003
|
port: 3003,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
MongooseModule.forRoot(`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_areas_comunes?retryWrites=true&w=majority`),
|
MongooseModule.forRoot(
|
||||||
CommonAreasModule],
|
`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_areas_comunes?retryWrites=true&w=majority`,
|
||||||
|
),
|
||||||
|
CommonAreasModule,
|
||||||
|
],
|
||||||
controllers: [],
|
controllers: [],
|
||||||
providers: [],
|
providers: [],
|
||||||
})
|
})
|
||||||
|
|
|
@ -6,9 +6,11 @@ import { MongooseModule } from '@nestjs/mongoose';
|
||||||
import { CommonArea, CommonAreaSchema } from '../schemas/common_area.schema';
|
import { CommonArea, CommonAreaSchema } from '../schemas/common_area.schema';
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
MongooseModule.forFeature([{ name: CommonArea.name, schema: CommonAreaSchema }]),
|
MongooseModule.forFeature([
|
||||||
|
{ name: CommonArea.name, schema: CommonAreaSchema },
|
||||||
|
]),
|
||||||
],
|
],
|
||||||
controllers: [CommonAreasController],
|
controllers: [CommonAreasController],
|
||||||
providers: [CommonAreasService]
|
providers: [CommonAreasService],
|
||||||
})
|
})
|
||||||
export class CommonAreasModule {}
|
export class CommonAreasModule {}
|
||||||
|
|
|
@ -5,9 +5,9 @@ import { Model } from 'mongoose';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class CommonAreasService {
|
export class CommonAreasService {
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
@InjectModel(CommonArea.name) private readonly commonAreaModel: Model<CommonAreaDocument>,
|
@InjectModel(CommonArea.name)
|
||||||
|
private readonly commonAreaModel: Model<CommonAreaDocument>,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
async create(commonArea: CommonAreaDocument): Promise<CommonArea> {
|
async create(commonArea: CommonAreaDocument): Promise<CommonArea> {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { NestFactory } from "@nestjs/core";
|
import { NestFactory } from '@nestjs/core';
|
||||||
import { Transport } from "@nestjs/microservices";
|
import { Transport } from '@nestjs/microservices';
|
||||||
import { AppModule } from "./app.module";
|
import { AppModule } from './app.module';
|
||||||
import { Logger } from "@nestjs/common";
|
import { Logger } from '@nestjs/common';
|
||||||
|
|
||||||
const logger = new Logger();
|
const logger = new Logger();
|
||||||
|
|
||||||
|
@ -9,10 +9,12 @@ async function bootstrap() {
|
||||||
const app = await NestFactory.createMicroservice(AppModule, {
|
const app = await NestFactory.createMicroservice(AppModule, {
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3003
|
port: 3003,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
app.listen().then(() => logger.log("Microservice Áreas Comunes is listening" ));
|
app
|
||||||
|
.listen()
|
||||||
|
.then(() => logger.log('Microservice Áreas Comunes is listening'));
|
||||||
}
|
}
|
||||||
bootstrap();
|
bootstrap();
|
|
@ -1,15 +1,12 @@
|
||||||
|
|
||||||
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
||||||
import { Document } from 'mongoose';
|
import { Document } from 'mongoose';
|
||||||
import { Timestamp } from 'rxjs';
|
import { Timestamp } from 'rxjs';
|
||||||
import { TimerOptions } from 'timers';
|
import { TimerOptions } from 'timers';
|
||||||
|
|
||||||
|
|
||||||
export type CommonAreaDocument = CommonArea & Document;
|
export type CommonAreaDocument = CommonArea & Document;
|
||||||
|
|
||||||
@Schema({ collection: 'common_areas' })
|
@Schema({ collection: 'common_areas' })
|
||||||
export class CommonArea {
|
export class CommonArea {
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
name: string;
|
name: string;
|
||||||
|
|
||||||
|
|
|
@ -1,23 +1,25 @@
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { CommunitiesModule } from './communities/communities.module';
|
import { CommunitiesModule } from './communities/communities.module';
|
||||||
import { MongooseModule } from '@nestjs/mongoose';
|
import { MongooseModule } from '@nestjs/mongoose';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
|
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_COMUNIDADES",
|
name: 'SERVICIO_COMUNIDADES',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3002
|
port: 3002,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
MongooseModule.forRoot(`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_comunidades?retryWrites=true&w=majority`),
|
MongooseModule.forRoot(
|
||||||
CommunitiesModule],
|
`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_comunidades?retryWrites=true&w=majority`,
|
||||||
|
),
|
||||||
|
CommunitiesModule,
|
||||||
|
],
|
||||||
controllers: [],
|
controllers: [],
|
||||||
providers: [],
|
providers: [],
|
||||||
})
|
})
|
||||||
|
|
|
@ -2,26 +2,27 @@ import { Module } from '@nestjs/common';
|
||||||
import { CommunitiesService } from './communities.service';
|
import { CommunitiesService } from './communities.service';
|
||||||
import { CommunitiesController } from './communities.controller';
|
import { CommunitiesController } from './communities.controller';
|
||||||
import { MongooseModule } from '@nestjs/mongoose';
|
import { MongooseModule } from '@nestjs/mongoose';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
|
|
||||||
import { Community, CommunitySchema } from '../schemas/community.schema';
|
import { Community, CommunitySchema } from '../schemas/community.schema';
|
||||||
|
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_USUARIOS",
|
name: 'SERVICIO_USUARIOS',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3001
|
port: 3001,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
|
]),
|
||||||
|
MongooseModule.forFeature([
|
||||||
|
{ name: Community.name, schema: CommunitySchema },
|
||||||
]),
|
]),
|
||||||
MongooseModule.forFeature([{ name: Community.name, schema: CommunitySchema }]),
|
|
||||||
],
|
],
|
||||||
controllers: [CommunitiesController],
|
controllers: [CommunitiesController],
|
||||||
providers: [CommunitiesService]
|
providers: [CommunitiesService],
|
||||||
})
|
})
|
||||||
export class CommunitiesModule {}
|
export class CommunitiesModule {}
|
||||||
|
|
|
@ -7,14 +7,12 @@ import { from, lastValueFrom, map, scan, mergeMap } from 'rxjs';
|
||||||
import { Admin } from 'src/schemas/admin.entity';
|
import { Admin } from 'src/schemas/admin.entity';
|
||||||
import { appendFileSync } from 'fs';
|
import { appendFileSync } from 'fs';
|
||||||
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class CommunitiesService {
|
export class CommunitiesService {
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
@InjectModel(Community.name) private readonly communityModel: Model<CommunityDocument>,
|
@InjectModel(Community.name)
|
||||||
|
private readonly communityModel: Model<CommunityDocument>,
|
||||||
@Inject('SERVICIO_USUARIOS') private readonly clientUserApp: ClientProxy,
|
@Inject('SERVICIO_USUARIOS') private readonly clientUserApp: ClientProxy,
|
||||||
|
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
async create(community: CommunityDocument): Promise<Community> {
|
async create(community: CommunityDocument): Promise<Community> {
|
||||||
|
@ -22,25 +20,26 @@ export class CommunitiesService {
|
||||||
}
|
}
|
||||||
|
|
||||||
async findAll(): Promise<Community[]> {
|
async findAll(): Promise<Community[]> {
|
||||||
|
|
||||||
return await this.communityModel
|
return await this.communityModel
|
||||||
.find()
|
.find()
|
||||||
.setOptions({ sanitizeFilter: true })
|
.setOptions({ sanitizeFilter: true })
|
||||||
.exec()
|
.exec()
|
||||||
.then(async community => {
|
.then(async (community) => {
|
||||||
if (community) {
|
if (community) {
|
||||||
await Promise.all(community.map(async c => {
|
await Promise.all(
|
||||||
|
community.map(async (c) => {
|
||||||
//buscar al usuario con el id de la comunidad anexado
|
//buscar al usuario con el id de la comunidad anexado
|
||||||
let admin = await this.findCommunityAdmin(c["_id"], "2")
|
let admin = await this.findCommunityAdmin(c['_id'], '2');
|
||||||
if (admin) {
|
if (admin) {
|
||||||
c["id_admin"] = admin["_id"]
|
c['id_admin'] = admin['_id'];
|
||||||
c["name_admin"] = admin["name"]
|
c['name_admin'] = admin['name'];
|
||||||
}
|
}
|
||||||
return c
|
return c;
|
||||||
}))
|
}),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return community;
|
return community;
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
findOne(id: string): Promise<Community> {
|
findOne(id: string): Promise<Community> {
|
||||||
|
@ -61,17 +60,14 @@ export class CommunitiesService {
|
||||||
}
|
}
|
||||||
|
|
||||||
async findCommunityAdmin(community: string, user_type: string) {
|
async findCommunityAdmin(community: string, user_type: string) {
|
||||||
const pattern = { cmd: 'findOneCommunityUser' }
|
const pattern = { cmd: 'findOneCommunityUser' };
|
||||||
const payload = { community_id: community, user_type: user_type }
|
const payload = { community_id: community, user_type: user_type };
|
||||||
|
|
||||||
let callback = await this.clientUserApp
|
let callback = await this.clientUserApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((response: string) => ({ response })));
|
||||||
map((response: string) => ({ response }))
|
|
||||||
)
|
|
||||||
|
|
||||||
const finalValue = await lastValueFrom(callback);
|
const finalValue = await lastValueFrom(callback);
|
||||||
return finalValue['response'];
|
return finalValue['response'];
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { NestFactory } from "@nestjs/core";
|
import { NestFactory } from '@nestjs/core';
|
||||||
import { Transport } from "@nestjs/microservices";
|
import { Transport } from '@nestjs/microservices';
|
||||||
import { AppModule } from "./app.module";
|
import { AppModule } from './app.module';
|
||||||
import { Logger } from "@nestjs/common";
|
import { Logger } from '@nestjs/common';
|
||||||
|
|
||||||
const logger = new Logger();
|
const logger = new Logger();
|
||||||
|
|
||||||
|
@ -9,10 +9,14 @@ async function bootstrap() {
|
||||||
const app = await NestFactory.createMicroservice(AppModule, {
|
const app = await NestFactory.createMicroservice(AppModule, {
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3002
|
port: 3002,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
app.listen().then(() => logger.log("Microservice Comunidades de vivienda is listening" ));
|
app
|
||||||
|
.listen()
|
||||||
|
.then(() =>
|
||||||
|
logger.log('Microservice Comunidades de vivienda is listening'),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
bootstrap();
|
bootstrap();
|
|
@ -2,7 +2,6 @@ import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
||||||
import { Document } from 'mongoose';
|
import { Document } from 'mongoose';
|
||||||
import { House, HouseSchema } from './house.schema';
|
import { House, HouseSchema } from './house.schema';
|
||||||
|
|
||||||
|
|
||||||
export type CommunityDocument = Community & Document;
|
export type CommunityDocument = Community & Document;
|
||||||
|
|
||||||
@Schema({ collection: 'communities' })
|
@Schema({ collection: 'communities' })
|
||||||
|
@ -39,8 +38,6 @@ export class Community {
|
||||||
|
|
||||||
@Prop({ type: [HouseSchema] })
|
@Prop({ type: [HouseSchema] })
|
||||||
houses: Array<House>;
|
houses: Array<House>;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export const CommunitySchema = SchemaFactory.createForClass(Community);
|
export const CommunitySchema = SchemaFactory.createForClass(Community);
|
|
@ -4,14 +4,12 @@ import { Document } from 'mongoose';
|
||||||
import { empty } from 'rxjs';
|
import { empty } from 'rxjs';
|
||||||
import { Tenant, TenantSchema } from './tenant.schema';
|
import { Tenant, TenantSchema } from './tenant.schema';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Schema()
|
@Schema()
|
||||||
export class House extends Document {
|
export class House extends Document {
|
||||||
@Prop({ default: " " })
|
@Prop({ default: ' ' })
|
||||||
number_house: string;
|
number_house: string;
|
||||||
|
|
||||||
@Prop({ default: "desocupada" })
|
@Prop({ default: 'desocupada' })
|
||||||
state: string;
|
state: string;
|
||||||
|
|
||||||
@Prop({ type: TenantSchema })
|
@Prop({ type: TenantSchema })
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Schema()
|
@Schema()
|
||||||
export class Tenant {
|
export class Tenant {
|
||||||
@Prop({ default: '' })
|
@Prop({ default: '' })
|
||||||
|
|
|
@ -1,23 +1,27 @@
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { MongooseModule } from '@nestjs/mongoose';
|
import { MongooseModule } from '@nestjs/mongoose';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
import { PostsModule } from './posts/posts.module';
|
import { PostsModule } from './posts/posts.module';
|
||||||
import { PostCommentsModule } from './post-comments/post-comments.module';
|
import { PostCommentsModule } from './post-comments/post-comments.module';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [ ClientsModule.register([
|
imports: [
|
||||||
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_POSTS",
|
name: 'SERVICIO_POSTS',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3007
|
port: 3007,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
MongooseModule.forRoot(`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_posts?retryWrites=true&w=majority`),
|
MongooseModule.forRoot(
|
||||||
|
`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_posts?retryWrites=true&w=majority`,
|
||||||
|
),
|
||||||
PostsModule,
|
PostsModule,
|
||||||
PostCommentsModule],
|
PostCommentsModule,
|
||||||
|
],
|
||||||
controllers: [],
|
controllers: [],
|
||||||
providers: [],
|
providers: [],
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { NestFactory } from "@nestjs/core";
|
import { NestFactory } from '@nestjs/core';
|
||||||
import { Transport } from "@nestjs/microservices";
|
import { Transport } from '@nestjs/microservices';
|
||||||
import { AppModule } from "./app.module";
|
import { AppModule } from './app.module';
|
||||||
import { Logger } from "@nestjs/common";
|
import { Logger } from '@nestjs/common';
|
||||||
|
|
||||||
const logger = new Logger();
|
const logger = new Logger();
|
||||||
|
|
||||||
|
@ -9,10 +9,10 @@ async function bootstrap() {
|
||||||
const app = await NestFactory.createMicroservice(AppModule, {
|
const app = await NestFactory.createMicroservice(AppModule, {
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3007
|
port: 3007,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
app.listen().then(() => logger.log("Microservice Comunicados is listening" ));
|
app.listen().then(() => logger.log('Microservice Comunicados is listening'));
|
||||||
}
|
}
|
||||||
bootstrap();
|
bootstrap();
|
|
@ -3,7 +3,6 @@ import { MessagePattern, Payload } from '@nestjs/microservices';
|
||||||
import { PostCommentsService } from './post-comments.service';
|
import { PostCommentsService } from './post-comments.service';
|
||||||
import { Comment, CommentDocument } from '../schemas/post-comment.schema';
|
import { Comment, CommentDocument } from '../schemas/post-comment.schema';
|
||||||
|
|
||||||
|
|
||||||
@Controller()
|
@Controller()
|
||||||
export class PostCommentsController {
|
export class PostCommentsController {
|
||||||
constructor(private readonly postCommentsService: PostCommentsService) {}
|
constructor(private readonly postCommentsService: PostCommentsService) {}
|
||||||
|
|
|
@ -9,6 +9,6 @@ import { Comment, CommentSchema } from '../schemas/post-comment.schema';
|
||||||
MongooseModule.forFeature([{ name: Comment.name, schema: CommentSchema }]),
|
MongooseModule.forFeature([{ name: Comment.name, schema: CommentSchema }]),
|
||||||
],
|
],
|
||||||
controllers: [PostCommentsController],
|
controllers: [PostCommentsController],
|
||||||
providers: [PostCommentsService]
|
providers: [PostCommentsService],
|
||||||
})
|
})
|
||||||
export class PostCommentsModule {}
|
export class PostCommentsModule {}
|
||||||
|
|
|
@ -3,11 +3,11 @@ import { Comment, CommentDocument } from '../schemas/post-comment.schema';
|
||||||
import { Model } from 'mongoose';
|
import { Model } from 'mongoose';
|
||||||
import { InjectModel } from '@nestjs/mongoose';
|
import { InjectModel } from '@nestjs/mongoose';
|
||||||
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class PostCommentsService {
|
export class PostCommentsService {
|
||||||
constructor(
|
constructor(
|
||||||
@InjectModel(Comment.name) private readonly commentModel: Model<CommentDocument>,
|
@InjectModel(Comment.name)
|
||||||
|
private readonly commentModel: Model<CommentDocument>,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
async create(comment: CommentDocument): Promise<Comment> {
|
async create(comment: CommentDocument): Promise<Comment> {
|
||||||
|
@ -15,10 +15,7 @@ export class PostCommentsService {
|
||||||
}
|
}
|
||||||
|
|
||||||
async findAll(): Promise<Comment[]> {
|
async findAll(): Promise<Comment[]> {
|
||||||
return this.commentModel
|
return this.commentModel.find().setOptions({ sanitizeFilter: true }).exec();
|
||||||
.find()
|
|
||||||
.setOptions({ sanitizeFilter: true })
|
|
||||||
.exec();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async findOne(id: string): Promise<Comment> {
|
async findOne(id: string): Promise<Comment> {
|
||||||
|
|
|
@ -3,7 +3,6 @@ import { MessagePattern, Payload } from '@nestjs/microservices';
|
||||||
import { PostsService } from './posts.service';
|
import { PostsService } from './posts.service';
|
||||||
import { Post, PostDocument } from '../schemas/post.schema';
|
import { Post, PostDocument } from '../schemas/post.schema';
|
||||||
|
|
||||||
|
|
||||||
@Controller()
|
@Controller()
|
||||||
export class PostsController {
|
export class PostsController {
|
||||||
constructor(private readonly postsService: PostsService) {}
|
constructor(private readonly postsService: PostsService) {}
|
||||||
|
|
|
@ -9,6 +9,6 @@ import { MongooseModule } from '@nestjs/mongoose';
|
||||||
MongooseModule.forFeature([{ name: Post.name, schema: PostSchema }]),
|
MongooseModule.forFeature([{ name: Post.name, schema: PostSchema }]),
|
||||||
],
|
],
|
||||||
controllers: [PostsController],
|
controllers: [PostsController],
|
||||||
providers: [PostsService]
|
providers: [PostsService],
|
||||||
})
|
})
|
||||||
export class PostsModule {}
|
export class PostsModule {}
|
||||||
|
|
|
@ -14,10 +14,7 @@ export class PostsService {
|
||||||
}
|
}
|
||||||
|
|
||||||
async findAll(): Promise<Post[]> {
|
async findAll(): Promise<Post[]> {
|
||||||
return this.postModel
|
return this.postModel.find().setOptions({ sanitizeFilter: true }).exec();
|
||||||
.find()
|
|
||||||
.setOptions({ sanitizeFilter: true })
|
|
||||||
.exec();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async findOne(id: string): Promise<Post> {
|
async findOne(id: string): Promise<Post> {
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
||||||
import { Document, ObjectId } from 'mongoose';
|
import { Document, ObjectId } from 'mongoose';
|
||||||
|
|
||||||
|
|
||||||
export type CommentDocument = Comment & Document;
|
export type CommentDocument = Comment & Document;
|
||||||
|
|
||||||
@Schema({ collection: 'comments' })
|
@Schema({ collection: 'comments' })
|
||||||
export class Comment {
|
export class Comment {
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
comment: string;
|
comment: string;
|
||||||
|
|
||||||
|
@ -14,12 +12,10 @@ export class Comment {
|
||||||
date_entry: Date;
|
date_entry: Date;
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
user_id: string
|
user_id: string;
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
post_id: string;
|
post_id: string;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export const CommentSchema = SchemaFactory.createForClass(Comment);
|
export const CommentSchema = SchemaFactory.createForClass(Comment);
|
|
@ -1,12 +1,10 @@
|
||||||
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
||||||
import { Document, ObjectId } from 'mongoose';
|
import { Document, ObjectId } from 'mongoose';
|
||||||
|
|
||||||
|
|
||||||
export type PostDocument = Post & Document;
|
export type PostDocument = Post & Document;
|
||||||
|
|
||||||
@Schema({ collection: 'posts' })
|
@Schema({ collection: 'posts' })
|
||||||
export class Post {
|
export class Post {
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
post: string;
|
post: string;
|
||||||
|
|
||||||
|
@ -14,11 +12,10 @@ export class Post {
|
||||||
date_entry: Date;
|
date_entry: Date;
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
user_id: string
|
user_id: string;
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
community_id: string // id de la comunidad
|
community_id: string; // id de la comunidad
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export const PostSchema = SchemaFactory.createForClass(Post);
|
export const PostSchema = SchemaFactory.createForClass(Post);
|
|
@ -1,23 +1,25 @@
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { GuestsModule } from './guests/guests.module';
|
import { GuestsModule } from './guests/guests.module';
|
||||||
import { MongooseModule } from '@nestjs/mongoose';
|
import { MongooseModule } from '@nestjs/mongoose';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
|
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_INVITADOS",
|
name: 'SERVICIO_INVITADOS',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3004
|
port: 3004,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
MongooseModule.forRoot(`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_invitados?retryWrites=true&w=majority`),
|
MongooseModule.forRoot(
|
||||||
GuestsModule],
|
`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_invitados?retryWrites=true&w=majority`,
|
||||||
|
),
|
||||||
|
GuestsModule,
|
||||||
|
],
|
||||||
controllers: [],
|
controllers: [],
|
||||||
providers: [],
|
providers: [],
|
||||||
})
|
})
|
||||||
|
|
|
@ -8,6 +8,6 @@ import { Guest, GuestSchema } from 'src/schemas/guest.schema';
|
||||||
MongooseModule.forFeature([{ name: Guest.name, schema: GuestSchema }]),
|
MongooseModule.forFeature([{ name: Guest.name, schema: GuestSchema }]),
|
||||||
],
|
],
|
||||||
controllers: [GuestsController],
|
controllers: [GuestsController],
|
||||||
providers: [GuestsService]
|
providers: [GuestsService],
|
||||||
})
|
})
|
||||||
export class GuestsModule {}
|
export class GuestsModule {}
|
||||||
|
|
|
@ -14,18 +14,13 @@ export class GuestsService {
|
||||||
}
|
}
|
||||||
|
|
||||||
async findAll(): Promise<Guest[]> {
|
async findAll(): Promise<Guest[]> {
|
||||||
return this.guestModel
|
return this.guestModel.find().setOptions({ sanitizeFilter: true }).exec();
|
||||||
.find()
|
|
||||||
.setOptions({ sanitizeFilter: true })
|
|
||||||
.exec();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
findOneId(id: string): Promise<Guest> {
|
findOneId(id: string): Promise<Guest> {
|
||||||
return this.guestModel.findOne({ _id: id }).exec();
|
return this.guestModel.findOne({ _id: id }).exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
findOne(id: string): Promise<Guest> {
|
findOne(id: string): Promise<Guest> {
|
||||||
return this.guestModel.findOne({ dni: id }).exec();
|
return this.guestModel.findOne({ dni: id }).exec();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { NestFactory } from "@nestjs/core";
|
import { NestFactory } from '@nestjs/core';
|
||||||
import { Transport } from "@nestjs/microservices";
|
import { Transport } from '@nestjs/microservices';
|
||||||
import { AppModule } from "./app.module";
|
import { AppModule } from './app.module';
|
||||||
import { Logger } from "@nestjs/common";
|
import { Logger } from '@nestjs/common';
|
||||||
|
|
||||||
const logger = new Logger();
|
const logger = new Logger();
|
||||||
|
|
||||||
|
@ -9,10 +9,10 @@ async function bootstrap() {
|
||||||
const app = await NestFactory.createMicroservice(AppModule, {
|
const app = await NestFactory.createMicroservice(AppModule, {
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3004
|
port: 3004,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
app.listen().then(() => logger.log("Microservice Invitados is listening" ));
|
app.listen().then(() => logger.log('Microservice Invitados is listening'));
|
||||||
}
|
}
|
||||||
bootstrap();
|
bootstrap();
|
|
@ -1,12 +1,10 @@
|
||||||
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
||||||
import { Document } from 'mongoose';
|
import { Document } from 'mongoose';
|
||||||
|
|
||||||
|
|
||||||
export type GuestDocument = Guest & Document;
|
export type GuestDocument = Guest & Document;
|
||||||
|
|
||||||
@Schema({ collection: 'guests' })
|
@Schema({ collection: 'guests' })
|
||||||
export class Guest {
|
export class Guest {
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
name: string;
|
name: string;
|
||||||
|
|
||||||
|
@ -36,5 +34,4 @@ export class Guest {
|
||||||
// ver los invitados de x comunidad
|
// ver los invitados de x comunidad
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export const GuestSchema = SchemaFactory.createForClass(Guest);
|
export const GuestSchema = SchemaFactory.createForClass(Guest);
|
||||||
|
|
|
@ -6,6 +6,6 @@ export class AppController {
|
||||||
|
|
||||||
@Get()
|
@Get()
|
||||||
getHello(): string {
|
getHello(): string {
|
||||||
return "hola";
|
return 'hola';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { AppController } from './app.controller';
|
import { AppController } from './app.controller';
|
||||||
import { MailerModule } from '@nestjs-modules/mailer';
|
import { MailerModule } from '@nestjs-modules/mailer';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
import { AuthModule } from './auth/auth.module';
|
import { AuthModule } from './auth/auth.module';
|
||||||
import { EmailController } from './email.controller';
|
import { EmailController } from './email.controller';
|
||||||
import { join } from 'path';
|
import { join } from 'path';
|
||||||
import { HandlebarsAdapter } from '@nestjs-modules/mailer/dist/adapters/handlebars.adapter';
|
import { HandlebarsAdapter } from '@nestjs-modules/mailer/dist/adapters/handlebars.adapter';
|
||||||
import { ConfigModule, ConfigService } from '@nestjs/config';
|
import { ConfigModule, ConfigService } from '@nestjs/config';
|
||||||
|
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
MailerModule.forRootAsync({
|
MailerModule.forRootAsync({
|
||||||
|
@ -42,15 +41,16 @@ import { ConfigModule, ConfigService } from '@nestjs/config';
|
||||||
}),
|
}),
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_NOTIFICACIONES",
|
name: 'SERVICIO_NOTIFICACIONES',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3009
|
port: 3009,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
AuthModule],
|
AuthModule,
|
||||||
|
],
|
||||||
controllers: [AppController, EmailController],
|
controllers: [AppController, EmailController],
|
||||||
providers: [],
|
providers: [],
|
||||||
})
|
})
|
||||||
|
|
|
@ -3,7 +3,6 @@ import { User } from './../user/user.entity';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class AuthService {
|
export class AuthService {
|
||||||
|
|
||||||
async signUp(user: User) {
|
async signUp(user: User) {
|
||||||
const token = Math.floor(1000 + Math.random() * 9000).toString();
|
const token = Math.floor(1000 + Math.random() * 9000).toString();
|
||||||
// create user in db
|
// create user in db
|
||||||
|
|
|
@ -10,10 +10,9 @@ export class EmailController {
|
||||||
|
|
||||||
@MessagePattern({ cmd: 'sendMail' })
|
@MessagePattern({ cmd: 'sendMail' })
|
||||||
sendMail(@Payload() toEmail: string) {
|
sendMail(@Payload() toEmail: string) {
|
||||||
|
|
||||||
var response = this.mailService.sendMail({
|
var response = this.mailService.sendMail({
|
||||||
to: toEmail["email"],
|
to: toEmail['email'],
|
||||||
from: "mbonilla.guti@gmail.com",
|
from: 'mbonilla.guti@gmail.com',
|
||||||
subject: 'Plain Text Email ✔',
|
subject: 'Plain Text Email ✔',
|
||||||
text: 'Welcome NestJS Email Sending Tutorial',
|
text: 'Welcome NestJS Email Sending Tutorial',
|
||||||
});
|
});
|
||||||
|
@ -23,7 +22,7 @@ export class EmailController {
|
||||||
@MessagePattern({ cmd: 'html' })
|
@MessagePattern({ cmd: 'html' })
|
||||||
async postHTMLEmail(@Payload() user: any) {
|
async postHTMLEmail(@Payload() user: any) {
|
||||||
const url = "http://localhost:3000/";
|
const url = "http://localhost:3000/";
|
||||||
const image = "images/email.ong";
|
const image = "images/email.png";
|
||||||
var response = await this.mailService.sendMail({
|
var response = await this.mailService.sendMail({
|
||||||
to: user["email"],
|
to: user["email"],
|
||||||
from: "mbonilla.guti@gmail.com",
|
from: "mbonilla.guti@gmail.com",
|
||||||
|
@ -43,4 +42,39 @@ export class EmailController {
|
||||||
});
|
});
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@MessagePattern({ cmd: 'emailCreateUserAdminCommunity' })
|
||||||
|
async emailCreateUserAdmin(@Payload() user: any) {
|
||||||
|
const url = "http://localhost:3000/";
|
||||||
|
const image = "images/email.png";
|
||||||
|
const logo = "images/Logo Katoikia.png";
|
||||||
|
var response = await this.mailService.sendMail({
|
||||||
|
to: user["email"],
|
||||||
|
from: "mbonilla.guti@gmail.com",
|
||||||
|
subject: 'Usuario registrado',
|
||||||
|
template: 'emailCreateUserAdminCommunity',
|
||||||
|
context: {
|
||||||
|
name: user["name"],
|
||||||
|
password: user["password"],
|
||||||
|
date_entry: user["date_entry"],
|
||||||
|
email: user["email"],
|
||||||
|
community_name: user['community_name'],
|
||||||
|
url
|
||||||
|
},
|
||||||
|
attachments: [
|
||||||
|
{
|
||||||
|
filename: 'email.png',
|
||||||
|
path: __dirname + '/mails/images/email.png',
|
||||||
|
cid: 'image_email' //my mistake was putting "cid:logo@cid" here!
|
||||||
|
},
|
||||||
|
{
|
||||||
|
filename: 'Logo_Katoikia.png',
|
||||||
|
path: __dirname + '/mails/images/Logo_Katoikia.png',
|
||||||
|
cid: 'logoKatoikia' //my mistake was putting "cid:logo@cid" here!
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
return response;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,457 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8"> <!-- utf-8 works for most cases -->
|
||||||
|
<meta name="viewport" content="width=device-width"> <!-- Forcing initial-scale shouldn't be necessary -->
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Use the latest (edge) version of IE rendering engine -->
|
||||||
|
<meta name="x-apple-disable-message-reformatting"> <!-- Disable auto-scale in iOS 10 Mail entirely -->
|
||||||
|
<title></title> <!-- The title tag shows in email notifications, like Android 4.4. -->
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
|
||||||
|
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
|
||||||
|
crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||||
|
|
||||||
|
|
||||||
|
<!-- CSS Reset : BEGIN -->
|
||||||
|
<style>
|
||||||
|
html,
|
||||||
|
body {
|
||||||
|
margin: 0 auto !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
height: 100% !important;
|
||||||
|
width: 100% !important;
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Stops email clients resizing small text. */
|
||||||
|
* {
|
||||||
|
-ms-text-size-adjust: 100%;
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Centers email on Android 4.4 */
|
||||||
|
div[style*="margin: 16px 0"] {
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Stops Outlook from adding extra spacing to tables. */
|
||||||
|
table,
|
||||||
|
td {
|
||||||
|
mso-table-lspace: 0pt !important;
|
||||||
|
mso-table-rspace: 0pt !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Fixes webkit padding issue. */
|
||||||
|
table {
|
||||||
|
border-spacing: 0 !important;
|
||||||
|
border-collapse: collapse !important;
|
||||||
|
table-layout: fixed !important;
|
||||||
|
margin: 0 auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Uses a better rendering method when resizing images in IE. */
|
||||||
|
img {
|
||||||
|
-ms-interpolation-mode: bicubic;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: A work-around for email clients meddling in triggered links. */
|
||||||
|
*[x-apple-data-detectors],
|
||||||
|
/* iOS */
|
||||||
|
.unstyle-auto-detected-links *,
|
||||||
|
.aBn {
|
||||||
|
border-bottom: 0 !important;
|
||||||
|
cursor: default !important;
|
||||||
|
color: inherit !important;
|
||||||
|
text-decoration: none !important;
|
||||||
|
font-size: inherit !important;
|
||||||
|
font-family: inherit !important;
|
||||||
|
font-weight: inherit !important;
|
||||||
|
line-height: inherit !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Prevents Gmail from displaying a download button on large, non-linked images. */
|
||||||
|
.a6S {
|
||||||
|
display: none !important;
|
||||||
|
opacity: 0.01 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Prevents Gmail from changing the text color in conversation threads. */
|
||||||
|
.im {
|
||||||
|
color: inherit !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* If the above doesn't work, add a .g-img class to any image in question. */
|
||||||
|
img.g-img+div {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Removes right gutter in Gmail iOS app: https://github.com/TedGoas/Cerberus/issues/89 */
|
||||||
|
/* Create one of these media queries for each additional viewport size you'd like to fix */
|
||||||
|
|
||||||
|
/* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
|
||||||
|
@media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
|
||||||
|
u~div .email-container {
|
||||||
|
min-width: 320px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* iPhone 6, 6S, 7, 8, and X */
|
||||||
|
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
|
||||||
|
u~div .email-container {
|
||||||
|
min-width: 375px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* iPhone 6+, 7+, and 8+ */
|
||||||
|
@media only screen and (min-device-width: 414px) {
|
||||||
|
u~div .email-container {
|
||||||
|
min-width: 414px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<!-- CSS Reset : END -->
|
||||||
|
|
||||||
|
<!-- Progressive Enhancements : BEGIN -->
|
||||||
|
<style>
|
||||||
|
.primary {
|
||||||
|
background: #D7A86E;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg_white {
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg_light {
|
||||||
|
background: #fafafa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg_black {
|
||||||
|
background: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg_dark {
|
||||||
|
background: rgba(0, 0, 0, .8);
|
||||||
|
}
|
||||||
|
|
||||||
|
.email-section {
|
||||||
|
padding: 2.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*BUTTON*/
|
||||||
|
.btn {
|
||||||
|
padding: 10px 15px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn.btn-primary {
|
||||||
|
border-radius: 5px;
|
||||||
|
background: #D7A86E;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn.btn-white {
|
||||||
|
border-radius: 5px;
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn.btn-white-outline {
|
||||||
|
border-radius: 5px;
|
||||||
|
background: transparent;
|
||||||
|
border: 1px solid #fff;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn.btn-black-outline {
|
||||||
|
border-radius: 0px;
|
||||||
|
background: transparent;
|
||||||
|
border: 2px solid #000;
|
||||||
|
color: #000;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
font-family: 'Lato', sans-serif;
|
||||||
|
color: #000000;
|
||||||
|
margin-top: 0;
|
||||||
|
font-weight: 400;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Lato', sans-serif;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 15px;
|
||||||
|
line-height: 1.8;
|
||||||
|
color: rgba(0, 0, 0, 0.808);
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #D7A86E;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {}
|
||||||
|
|
||||||
|
/*LOGO*/
|
||||||
|
|
||||||
|
.logo h1 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo h1 a {
|
||||||
|
color: #D7A86E;
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 700;
|
||||||
|
font-family: 'Lato', sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*HERO*/
|
||||||
|
.hero {
|
||||||
|
position: relative;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero .text {
|
||||||
|
color: rgba(0, 0, 0, 0.884);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero .text h2 {
|
||||||
|
color: #000;
|
||||||
|
font-size: 40px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1.4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero .text h3 {
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero .text h2 span {
|
||||||
|
font-weight: 600;
|
||||||
|
color: #D7A86E;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*HEADING SECTION*/
|
||||||
|
.heading-section {}
|
||||||
|
|
||||||
|
.heading-section h2 {
|
||||||
|
color: #000000;
|
||||||
|
font-size: 28px;
|
||||||
|
margin-top: 0;
|
||||||
|
line-height: 1.4;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section .subheading {
|
||||||
|
margin-bottom: 20px !important;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 13px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
color: rgba(0, 0, 0, .4);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section .subheading::after {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: -10px;
|
||||||
|
content: '';
|
||||||
|
width: 100%;
|
||||||
|
height: 2px;
|
||||||
|
background: #D7A86E;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section-white {
|
||||||
|
color: rgba(255, 255, 255, .8);
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section-white h2 {
|
||||||
|
line-height: 1;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section-white h2 {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section-white .subheading {
|
||||||
|
margin-bottom: 0;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 13px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
color: rgba(255, 255, 255, .4);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ul.social {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.social li {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*FOOTER*/
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
border-top: 1px solid rgba(0, 0, 0, .05);
|
||||||
|
color: rgba(0, 0, 0, .5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer .heading {
|
||||||
|
color: #000;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer ul {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer ul li {
|
||||||
|
list-style: none;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer ul li a {
|
||||||
|
color: rgba(0, 0, 0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media screen and (max-width: 500px) {}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body width="100%" style="margin: 0; padding: 0 !important; mso-line-height-rule: exactly; background-color: #f1f1f1;">
|
||||||
|
<center style="width: 100%; background-color: #f1f1f1;">
|
||||||
|
<div
|
||||||
|
style="display: none; font-size: 1px;max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;">
|
||||||
|
‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
|
||||||
|
</div>
|
||||||
|
<div style="max-width: 600px; margin: 0 auto;" class="email-container">
|
||||||
|
<!-- BEGIN BODY -->
|
||||||
|
<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%"
|
||||||
|
style="margin: auto;">
|
||||||
|
<tr>
|
||||||
|
<td valign="top" class="bg_white" style="padding: 1em 2.5em 0 2.5em;">
|
||||||
|
<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
|
||||||
|
<td class="logo" style="text-align: right;">
|
||||||
|
<img src="cid:logoLatoikia" alt="Logo Katoikia"
|
||||||
|
style="width: 60px; max-width: 60px; height: auto; margin: auto; display: block; float: right;">
|
||||||
|
</td>
|
||||||
|
<td class="logo" style="text-align: left;">
|
||||||
|
<h1><a href="#">Katoikia</a></h1>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
</tr><!-- end tr -->
|
||||||
|
<tr>
|
||||||
|
<td valign="middle" class="hero bg_white" style="padding: 3em 0 2em 0;">
|
||||||
|
<img src="cid:image_email" alt="Logo Katoikia"
|
||||||
|
style="width: 150px; max-width: 300px; height: auto; margin: auto; display: block;">
|
||||||
|
</td>
|
||||||
|
</tr><!-- end tr -->
|
||||||
|
<tr>
|
||||||
|
<td valign="middle" class="hero bg_white" style="padding: 2em 0 4em 0;">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<div class="text" style="padding: 0 2.5em; text-align: center;">
|
||||||
|
<h2> Hola , {{ name }} <i class="fa-regular fa-face-smile-wink"
|
||||||
|
style="color:#D7A86E; font-size: 0.8em; margin-left: 20px;"></i></h2>
|
||||||
|
<h3>Ha sido registrado como un Administrador General del sitio web Katoikia</h3>
|
||||||
|
<h4><i class="fa-solid fa-calendar-day"
|
||||||
|
style="color:#D7A86E; margin-right: 10px;"></i> Fecha de registro
|
||||||
|
{{date_entry}}</h4>
|
||||||
|
</div>
|
||||||
|
<div class="text" style="padding: 0 4em; text-align: left;">
|
||||||
|
<h3>Estas son sus credenciales:</h3>
|
||||||
|
<p><i class="fa-regular fa-envelope" style="color:#D7A86E; margin-right: 10px;"></i> Correo electronico: {{email}}</p>
|
||||||
|
<p><i class="fa-solid fa-key" style="color:#D7A86E; margin-right: 10px;"></i> Password: {{password}}</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="text" style="padding: 0 2.5em; text-align: center;">
|
||||||
|
<h3>Inicie sesión en el sitio web para poder acceder y disfrutar todos sus
|
||||||
|
beneficios</h3>
|
||||||
|
<p><a href="{{ url }}" class="btn btn-primary">Iniciar sesión</a></p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr><!-- end tr -->
|
||||||
|
|
||||||
|
<!-- 1 Column Text + Button : END -->
|
||||||
|
</table>
|
||||||
|
<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%"
|
||||||
|
style="margin: auto;">
|
||||||
|
<td valign="middle" class="bg_light footer email-section">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td valign="top" width="33.333%" style="padding-top: 20px">
|
||||||
|
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="text-align: left; padding-right: 10px">
|
||||||
|
<h3 class="heading">Acerca de</h3>
|
||||||
|
<p>Katoikia es su compañero más cercano para poder estar en contacto con sus vecinos y conocer sobre los mejores anuncios sobre su comunidad.</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td valign="top" width="33.333%" style="padding-top: 20px">
|
||||||
|
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="text-align: left; padding-left: 5px; padding-right: 5px">
|
||||||
|
<h3 class="heading">Información de contacto</h3>
|
||||||
|
<ul>
|
||||||
|
<li><span href="mailto:katoikiaapp@gmail.com" class="text">katoikiaapp@gmail.com</span></li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<!-- end: tr -->
|
||||||
|
<tr>
|
||||||
|
<td class="bg_light" style="text-align: center">
|
||||||
|
<p><a href="http://localhost:3000" style="color: rgba(0, 0, 0, 0.8)">katoikiaapp.org</a></p>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</center>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
|
@ -0,0 +1,464 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml"
|
||||||
|
xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8"> <!-- utf-8 works for most cases -->
|
||||||
|
<meta name="viewport" content="width=device-width"> <!-- Forcing initial-scale shouldn't be necessary -->
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Use the latest (edge) version of IE rendering engine -->
|
||||||
|
<meta name="x-apple-disable-message-reformatting"> <!-- Disable auto-scale in iOS 10 Mail entirely -->
|
||||||
|
<title></title> <!-- The title tag shows in email notifications, like Android 4.4. -->
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
|
||||||
|
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
|
||||||
|
crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||||
|
|
||||||
|
|
||||||
|
<!-- CSS Reset : BEGIN -->
|
||||||
|
<style>
|
||||||
|
html,
|
||||||
|
body {
|
||||||
|
margin: 0 auto !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
height: 100% !important;
|
||||||
|
width: 100% !important;
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Stops email clients resizing small text. */
|
||||||
|
* {
|
||||||
|
-ms-text-size-adjust: 100%;
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Centers email on Android 4.4 */
|
||||||
|
div[style*="margin: 16px 0"] {
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Stops Outlook from adding extra spacing to tables. */
|
||||||
|
table,
|
||||||
|
td {
|
||||||
|
mso-table-lspace: 0pt !important;
|
||||||
|
mso-table-rspace: 0pt !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Fixes webkit padding issue. */
|
||||||
|
table {
|
||||||
|
border-spacing: 0 !important;
|
||||||
|
border-collapse: collapse !important;
|
||||||
|
table-layout: fixed !important;
|
||||||
|
margin: 0 auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Uses a better rendering method when resizing images in IE. */
|
||||||
|
img {
|
||||||
|
-ms-interpolation-mode: bicubic;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: A work-around for email clients meddling in triggered links. */
|
||||||
|
*[x-apple-data-detectors],
|
||||||
|
/* iOS */
|
||||||
|
.unstyle-auto-detected-links *,
|
||||||
|
.aBn {
|
||||||
|
border-bottom: 0 !important;
|
||||||
|
cursor: default !important;
|
||||||
|
color: inherit !important;
|
||||||
|
text-decoration: none !important;
|
||||||
|
font-size: inherit !important;
|
||||||
|
font-family: inherit !important;
|
||||||
|
font-weight: inherit !important;
|
||||||
|
line-height: inherit !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Prevents Gmail from displaying a download button on large, non-linked images. */
|
||||||
|
.a6S {
|
||||||
|
display: none !important;
|
||||||
|
opacity: 0.01 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Prevents Gmail from changing the text color in conversation threads. */
|
||||||
|
.im {
|
||||||
|
color: inherit !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* If the above doesn't work, add a .g-img class to any image in question. */
|
||||||
|
img.g-img+div {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* What it does: Removes right gutter in Gmail iOS app: https://github.com/TedGoas/Cerberus/issues/89 */
|
||||||
|
/* Create one of these media queries for each additional viewport size you'd like to fix */
|
||||||
|
|
||||||
|
/* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
|
||||||
|
@media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
|
||||||
|
u~div .email-container {
|
||||||
|
min-width: 320px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* iPhone 6, 6S, 7, 8, and X */
|
||||||
|
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
|
||||||
|
u~div .email-container {
|
||||||
|
min-width: 375px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* iPhone 6+, 7+, and 8+ */
|
||||||
|
@media only screen and (min-device-width: 414px) {
|
||||||
|
u~div .email-container {
|
||||||
|
min-width: 414px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<!-- CSS Reset : END -->
|
||||||
|
|
||||||
|
<!-- Progressive Enhancements : BEGIN -->
|
||||||
|
<style>
|
||||||
|
.primary {
|
||||||
|
background: #D7A86E;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg_white {
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg_light {
|
||||||
|
background: #fafafa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg_black {
|
||||||
|
background: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg_dark {
|
||||||
|
background: rgba(0, 0, 0, .8);
|
||||||
|
}
|
||||||
|
|
||||||
|
.email-section {
|
||||||
|
padding: 2.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*BUTTON*/
|
||||||
|
.btn {
|
||||||
|
padding: 10px 15px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn.btn-primary {
|
||||||
|
border-radius: 5px;
|
||||||
|
background: #D7A86E;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn.btn-white {
|
||||||
|
border-radius: 5px;
|
||||||
|
background: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn.btn-white-outline {
|
||||||
|
border-radius: 5px;
|
||||||
|
background: transparent;
|
||||||
|
border: 1px solid #fff;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn.btn-black-outline {
|
||||||
|
border-radius: 0px;
|
||||||
|
background: transparent;
|
||||||
|
border: 2px solid #000;
|
||||||
|
color: #000;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
font-family: 'Lato', sans-serif;
|
||||||
|
color: #000000;
|
||||||
|
margin-top: 0;
|
||||||
|
font-weight: 400;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Lato', sans-serif;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 15px;
|
||||||
|
line-height: 1.8;
|
||||||
|
color: rgba(0, 0, 0, 0.808);
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #D7A86E;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {}
|
||||||
|
|
||||||
|
/*LOGO*/
|
||||||
|
|
||||||
|
.logo h1 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo h1 a {
|
||||||
|
color: #D7A86E;
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 700;
|
||||||
|
font-family: 'Lato', sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*HERO*/
|
||||||
|
.hero {
|
||||||
|
position: relative;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero .text {
|
||||||
|
color: rgba(0, 0, 0, 0.884);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero .text h2 {
|
||||||
|
color: #000;
|
||||||
|
font-size: 40px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1.4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero .text h3 {
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero .text h2 span {
|
||||||
|
font-weight: 600;
|
||||||
|
color: #D7A86E;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*HEADING SECTION*/
|
||||||
|
.heading-section {}
|
||||||
|
|
||||||
|
.heading-section h2 {
|
||||||
|
color: #000000;
|
||||||
|
font-size: 28px;
|
||||||
|
margin-top: 0;
|
||||||
|
line-height: 1.4;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section .subheading {
|
||||||
|
margin-bottom: 20px !important;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 13px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
color: rgba(0, 0, 0, .4);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section .subheading::after {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: -10px;
|
||||||
|
content: '';
|
||||||
|
width: 100%;
|
||||||
|
height: 2px;
|
||||||
|
background: #D7A86E;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section-white {
|
||||||
|
color: rgba(255, 255, 255, .8);
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section-white h2 {
|
||||||
|
line-height: 1;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section-white h2 {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-section-white .subheading {
|
||||||
|
margin-bottom: 0;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 13px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
color: rgba(255, 255, 255, .4);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ul.social {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.social li {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*FOOTER*/
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
border-top: 1px solid rgba(0, 0, 0, .05);
|
||||||
|
color: rgba(0, 0, 0, .5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer .heading {
|
||||||
|
color: #000;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer ul {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer ul li {
|
||||||
|
list-style: none;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer ul li a {
|
||||||
|
color: rgba(0, 0, 0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media screen and (max-width: 500px) {}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body width="100%" style="margin: 0; padding: 0 !important; mso-line-height-rule: exactly; background-color: #f1f1f1;">
|
||||||
|
<center style="width: 100%; background-color: #f1f1f1;">
|
||||||
|
<div
|
||||||
|
style="display: none; font-size: 1px;max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;">
|
||||||
|
‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
|
||||||
|
</div>
|
||||||
|
<div style="max-width: 600px; margin: 0 auto;" class="email-container">
|
||||||
|
<!-- BEGIN BODY -->
|
||||||
|
<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%"
|
||||||
|
style="margin: auto;">
|
||||||
|
<tr>
|
||||||
|
<td valign="top" class="bg_white" style="padding: 1em 2.5em 0 2.5em;">
|
||||||
|
<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
|
||||||
|
<td class="logo" style="text-align: right;">
|
||||||
|
<img src="cid:logoKatoikia" alt="Logo Katoikia"
|
||||||
|
style="width: 60px; max-width: 60px; height: auto; margin: auto; display: block; float: right;">
|
||||||
|
</td>
|
||||||
|
<td class="logo" style="text-align: left;">
|
||||||
|
<h1><a href="#">Katoikia</a></h1>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
</tr><!-- end tr -->
|
||||||
|
<tr>
|
||||||
|
<td valign="middle" class="hero bg_white" style="padding: 3em 0 2em 0;">
|
||||||
|
<img src="cid:image_email" alt="Logo Katoikia"
|
||||||
|
style="width: 150px; max-width: 300px; height: auto; margin: auto; display: block;">
|
||||||
|
</td>
|
||||||
|
</tr><!-- end tr -->
|
||||||
|
<tr>
|
||||||
|
<td valign="middle" class="hero bg_white" style="padding: 2em 0 4em 0;">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<div class="text" style="padding: 0 2.5em; text-align: center;">
|
||||||
|
<h2> Hola , {{ name }} <i class="fa-regular fa-face-smile-wink"
|
||||||
|
style="color:#D7A86E; font-size: 0.8em; margin-left: 20px;"></i></h2>
|
||||||
|
<h3>Ha sido registrado como un Administrador de la Comunidad `{{community_name}}`
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<h4><i class="fa-solid fa-calendar-day"
|
||||||
|
style="color:#D7A86E; margin-right: 10px;"></i> Fecha de registro
|
||||||
|
{{date_entry}}</h4>
|
||||||
|
</div>
|
||||||
|
<div class="text" style="padding: 0 4em; text-align: left;">
|
||||||
|
<h3>Estas son sus credenciales:</h3>
|
||||||
|
<p><i class="fa fa-regular fa-envelope"
|
||||||
|
style="color:#D7A86E; margin-right: 10px;"></i> Correo electronico:
|
||||||
|
{{email}}</p>
|
||||||
|
<p><i class="fa-solid fa-key" style="color:#D7A86E; margin-right: 10px;"></i>
|
||||||
|
Password: {{password}}</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="text" style="padding: 0 2.5em; text-align: center;">
|
||||||
|
<h3>Inicie sesión en el sitio web para poder acceder y disfrutar todos sus
|
||||||
|
beneficios</h3>
|
||||||
|
<p><a href="{{ url }}" class="btn btn-primary">Iniciar sesión</a></p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr><!-- end tr -->
|
||||||
|
|
||||||
|
<!-- 1 Column Text + Button : END -->
|
||||||
|
</table>
|
||||||
|
<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%"
|
||||||
|
style="margin: auto;">
|
||||||
|
<td valign="middle" class="bg_light footer email-section">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td valign="top" width="33.333%" style="padding-top: 20px">
|
||||||
|
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="text-align: left; padding-right: 10px">
|
||||||
|
<h3 class="heading">Acerca de</h3>
|
||||||
|
<p>Katoikia es su compañero más cercano para poder estar en contacto con sus
|
||||||
|
vecinos y conocer sobre los mejores anuncios sobre su comunidad.</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td valign="top" width="33.333%" style="padding-top: 20px">
|
||||||
|
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
|
||||||
|
<tr>
|
||||||
|
<td style="text-align: left; padding-left: 5px; padding-right: 5px">
|
||||||
|
<h3 class="heading">Información de contacto</h3>
|
||||||
|
<ul>
|
||||||
|
<li><span href="mailto:katoikiaapp@gmail.com"
|
||||||
|
class="text">katoikiaapp@gmail.com</span></li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<!-- end: tr -->
|
||||||
|
<tr>
|
||||||
|
<td class="bg_light" style="text-align: center">
|
||||||
|
<p><a href="http://localhost:3000" style="color: rgba(0, 0, 0, 0.8)">katoikiaapp.org</a></p>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</center>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 66 KiB |
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
|
@ -1,7 +1,7 @@
|
||||||
import { NestFactory } from "@nestjs/core";
|
import { NestFactory } from '@nestjs/core';
|
||||||
import { Transport } from "@nestjs/microservices";
|
import { Transport } from '@nestjs/microservices';
|
||||||
import { AppModule } from "./app.module";
|
import { AppModule } from './app.module';
|
||||||
import { Logger } from "@nestjs/common";
|
import { Logger } from '@nestjs/common';
|
||||||
|
|
||||||
const logger = new Logger();
|
const logger = new Logger();
|
||||||
|
|
||||||
|
@ -9,10 +9,12 @@ async function bootstrap() {
|
||||||
const app = await NestFactory.createMicroservice(AppModule, {
|
const app = await NestFactory.createMicroservice(AppModule, {
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3009
|
port: 3009,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
app.listen().then(() => logger.log("Microservice Notificaciones is listening" ));
|
app
|
||||||
|
.listen()
|
||||||
|
.then(() => logger.log('Microservice Notificaciones is listening'));
|
||||||
}
|
}
|
||||||
bootstrap();
|
bootstrap();
|
|
@ -25,7 +25,10 @@ export class NotificationsController {
|
||||||
|
|
||||||
@MessagePattern({ cmd: 'updateNotification' })
|
@MessagePattern({ cmd: 'updateNotification' })
|
||||||
update(@Payload() updateNotificationDto: UpdateNotificationDto) {
|
update(@Payload() updateNotificationDto: UpdateNotificationDto) {
|
||||||
return this.notificationsService.update(updateNotificationDto.id, updateNotificationDto);
|
return this.notificationsService.update(
|
||||||
|
updateNotificationDto.id,
|
||||||
|
updateNotificationDto,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@MessagePattern({ cmd: 'removeNotification' })
|
@MessagePattern({ cmd: 'removeNotification' })
|
||||||
|
|
|
@ -4,6 +4,6 @@ import { NotificationsController } from './notifications.controller';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
controllers: [NotificationsController],
|
controllers: [NotificationsController],
|
||||||
providers: [NotificationsService]
|
providers: [NotificationsService],
|
||||||
})
|
})
|
||||||
export class NotificationsModule {}
|
export class NotificationsModule {}
|
||||||
|
|
|
@ -1,23 +1,25 @@
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { PaymentsModule } from './payments/payments.module';
|
import { PaymentsModule } from './payments/payments.module';
|
||||||
import { MongooseModule } from '@nestjs/mongoose';
|
import { MongooseModule } from '@nestjs/mongoose';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
|
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_PAGOS",
|
name: 'SERVICIO_PAGOS',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3005
|
port: 3005,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
MongooseModule.forRoot(`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_pagos?retryWrites=true&w=majority`),
|
MongooseModule.forRoot(
|
||||||
PaymentsModule],
|
`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_pagos?retryWrites=true&w=majority`,
|
||||||
|
),
|
||||||
|
PaymentsModule,
|
||||||
|
],
|
||||||
controllers: [],
|
controllers: [],
|
||||||
providers: [],
|
providers: [],
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { NestFactory } from "@nestjs/core";
|
import { NestFactory } from '@nestjs/core';
|
||||||
import { Transport } from "@nestjs/microservices";
|
import { Transport } from '@nestjs/microservices';
|
||||||
import { AppModule } from "./app.module";
|
import { AppModule } from './app.module';
|
||||||
import { Logger } from "@nestjs/common";
|
import { Logger } from '@nestjs/common';
|
||||||
|
|
||||||
const logger = new Logger();
|
const logger = new Logger();
|
||||||
|
|
||||||
|
@ -9,10 +9,10 @@ async function bootstrap() {
|
||||||
const app = await NestFactory.createMicroservice(AppModule, {
|
const app = await NestFactory.createMicroservice(AppModule, {
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3005
|
port: 3005,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
app.listen().then(() => logger.log("Microservice Invitados is listening" ));
|
app.listen().then(() => logger.log('Microservice Invitados is listening'));
|
||||||
}
|
}
|
||||||
bootstrap();
|
bootstrap();
|
|
@ -4,12 +4,11 @@ import { PaymentsController } from './payments.controller';
|
||||||
import { MongooseModule } from '@nestjs/mongoose';
|
import { MongooseModule } from '@nestjs/mongoose';
|
||||||
import { Payment, PaymentSchema } from 'src/schemas/payment.schema';
|
import { Payment, PaymentSchema } from 'src/schemas/payment.schema';
|
||||||
|
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
MongooseModule.forFeature([{ name: Payment.name, schema: PaymentSchema }]),
|
MongooseModule.forFeature([{ name: Payment.name, schema: PaymentSchema }]),
|
||||||
],
|
],
|
||||||
controllers: [PaymentsController],
|
controllers: [PaymentsController],
|
||||||
providers: [PaymentsService]
|
providers: [PaymentsService],
|
||||||
})
|
})
|
||||||
export class PaymentsModule {}
|
export class PaymentsModule {}
|
||||||
|
|
|
@ -3,11 +3,11 @@ import { Payment, PaymentDocument } from 'src/schemas/payment.schema';
|
||||||
import { Model } from 'mongoose';
|
import { Model } from 'mongoose';
|
||||||
import { InjectModel } from '@nestjs/mongoose';
|
import { InjectModel } from '@nestjs/mongoose';
|
||||||
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class PaymentsService {
|
export class PaymentsService {
|
||||||
constructor(
|
constructor(
|
||||||
@InjectModel(Payment.name) private readonly paymentModel: Model<PaymentDocument>,
|
@InjectModel(Payment.name)
|
||||||
|
private readonly paymentModel: Model<PaymentDocument>,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
async create(payment: PaymentDocument): Promise<Payment> {
|
async create(payment: PaymentDocument): Promise<Payment> {
|
||||||
|
@ -15,18 +15,13 @@ export class PaymentsService {
|
||||||
}
|
}
|
||||||
|
|
||||||
async findAll(): Promise<Payment[]> {
|
async findAll(): Promise<Payment[]> {
|
||||||
return this.paymentModel
|
return this.paymentModel.find().setOptions({ sanitizeFilter: true }).exec();
|
||||||
.find()
|
|
||||||
.setOptions({ sanitizeFilter: true })
|
|
||||||
.exec();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
findOneId(id: string): Promise<Payment> {
|
findOneId(id: string): Promise<Payment> {
|
||||||
return this.paymentModel.findOne({ _id: id }).exec();
|
return this.paymentModel.findOne({ _id: id }).exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
findByUser(id: string): Promise<Payment> {
|
findByUser(id: string): Promise<Payment> {
|
||||||
return this.paymentModel.findOne({ user_id: id }).exec();
|
return this.paymentModel.findOne({ user_id: id }).exec();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,10 @@
|
||||||
|
|
||||||
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
||||||
import { Document } from 'mongoose';
|
import { Document } from 'mongoose';
|
||||||
|
|
||||||
|
|
||||||
export type PaymentDocument = Payment & Document;
|
export type PaymentDocument = Payment & Document;
|
||||||
|
|
||||||
@Schema({ collection: 'payments' })
|
@Schema({ collection: 'payments' })
|
||||||
export class Payment {
|
export class Payment {
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
date_payment: Date;
|
date_payment: Date;
|
||||||
|
|
||||||
|
|
|
@ -1,24 +1,25 @@
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { ReportsModule } from './reports/reports.module';
|
import { ReportsModule } from './reports/reports.module';
|
||||||
import { MongooseModule } from '@nestjs/mongoose';
|
import { MongooseModule } from '@nestjs/mongoose';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_REPORTES",
|
name: 'SERVICIO_REPORTES',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3008
|
port: 3008,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
MongooseModule.forRoot(`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_reportes?retryWrites=true&w=majority`),
|
MongooseModule.forRoot(
|
||||||
ReportsModule],
|
`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_reportes?retryWrites=true&w=majority`,
|
||||||
|
),
|
||||||
|
ReportsModule,
|
||||||
|
],
|
||||||
controllers: [],
|
controllers: [],
|
||||||
providers: [],
|
providers: [],
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { NestFactory } from "@nestjs/core";
|
import { NestFactory } from '@nestjs/core';
|
||||||
import { Transport } from "@nestjs/microservices";
|
import { Transport } from '@nestjs/microservices';
|
||||||
import { AppModule } from "./app.module";
|
import { AppModule } from './app.module';
|
||||||
import { Logger } from "@nestjs/common";
|
import { Logger } from '@nestjs/common';
|
||||||
|
|
||||||
const logger = new Logger();
|
const logger = new Logger();
|
||||||
|
|
||||||
|
@ -9,10 +9,10 @@ async function bootstrap() {
|
||||||
const app = await NestFactory.createMicroservice(AppModule, {
|
const app = await NestFactory.createMicroservice(AppModule, {
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3008
|
port: 3008,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
app.listen().then(() => logger.log("Microservice Reportes is listening" ));
|
app.listen().then(() => logger.log('Microservice Reportes is listening'));
|
||||||
}
|
}
|
||||||
bootstrap();
|
bootstrap();
|
|
@ -7,7 +7,6 @@ import { Report, ReportDocument } from '../schemas/report.schema';
|
||||||
export class ReportsController {
|
export class ReportsController {
|
||||||
constructor(private readonly reportsService: ReportsService) {}
|
constructor(private readonly reportsService: ReportsService) {}
|
||||||
|
|
||||||
|
|
||||||
@MessagePattern({ cmd: 'createReport' })
|
@MessagePattern({ cmd: 'createReport' })
|
||||||
create(@Payload() report: ReportDocument) {
|
create(@Payload() report: ReportDocument) {
|
||||||
return this.reportsService.create(report);
|
return this.reportsService.create(report);
|
||||||
|
|
|
@ -9,6 +9,6 @@ import { Report, ReportSchema } from '../schemas/report.schema';
|
||||||
MongooseModule.forFeature([{ name: Report.name, schema: ReportSchema }]),
|
MongooseModule.forFeature([{ name: Report.name, schema: ReportSchema }]),
|
||||||
],
|
],
|
||||||
controllers: [ReportsController],
|
controllers: [ReportsController],
|
||||||
providers: [ReportsService]
|
providers: [ReportsService],
|
||||||
})
|
})
|
||||||
export class ReportsModule {}
|
export class ReportsModule {}
|
||||||
|
|
|
@ -1,16 +1,15 @@
|
||||||
import { Injectable, Inject } from '@nestjs/common';
|
import { Injectable, Inject } from '@nestjs/common';
|
||||||
import { ClientProxy } from "@nestjs/microservices";
|
import { ClientProxy } from '@nestjs/microservices';
|
||||||
import { Model } from 'mongoose';
|
import { Model } from 'mongoose';
|
||||||
import { InjectModel } from '@nestjs/mongoose';
|
import { InjectModel } from '@nestjs/mongoose';
|
||||||
import { Report, ReportDocument } from '../schemas/report.schema';
|
import { Report, ReportDocument } from '../schemas/report.schema';
|
||||||
import { map } from "rxjs/operators";
|
import { map } from 'rxjs/operators';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class ReportsService {
|
export class ReportsService {
|
||||||
constructor(
|
constructor(
|
||||||
@InjectModel(Report.name) private readonly reportModel: Model<ReportDocument>,
|
@InjectModel(Report.name)
|
||||||
|
private readonly reportModel: Model<ReportDocument>, //
|
||||||
//
|
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
async create(report: ReportDocument): Promise<Report> {
|
async create(report: ReportDocument): Promise<Report> {
|
||||||
|
@ -18,17 +17,13 @@ export class ReportsService {
|
||||||
}
|
}
|
||||||
|
|
||||||
async findAll(): Promise<Report[]> {
|
async findAll(): Promise<Report[]> {
|
||||||
return this.reportModel
|
return this.reportModel.find().setOptions({ sanitizeFilter: true }).exec();
|
||||||
.find()
|
|
||||||
.setOptions({ sanitizeFilter: true })
|
|
||||||
.exec();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async findOne(id: string): Promise<Report> {
|
async findOne(id: string): Promise<Report> {
|
||||||
return this.reportModel.findOne({ _id: id }).exec();
|
return this.reportModel.findOne({ _id: id }).exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
async update(id: string, report: ReportDocument) {
|
async update(id: string, report: ReportDocument) {
|
||||||
return this.reportModel.findOneAndUpdate({ _id: id }, report, {
|
return this.reportModel.findOneAndUpdate({ _id: id }, report, {
|
||||||
new: true,
|
new: true,
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
||||||
import { Document, ObjectId } from 'mongoose';
|
import { Document, ObjectId } from 'mongoose';
|
||||||
|
|
||||||
|
|
||||||
export type ReportDocument = Report & Document;
|
export type ReportDocument = Report & Document;
|
||||||
|
|
||||||
@Schema({ collection: 'reports' })
|
@Schema({ collection: 'reports' })
|
||||||
export class Report {
|
export class Report {
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
action: string;
|
action: string;
|
||||||
|
|
||||||
|
@ -17,8 +15,7 @@ export class Report {
|
||||||
date_entry: Date;
|
date_entry: Date;
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
user_id: string
|
user_id: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export const ReportSchema = SchemaFactory.createForClass(Report);
|
export const ReportSchema = SchemaFactory.createForClass(Report);
|
|
@ -1,22 +1,25 @@
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { ReservationsModule } from './reservations/reservations.module';
|
import { ReservationsModule } from './reservations/reservations.module';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
import { MongooseModule } from '@nestjs/mongoose';
|
import { MongooseModule } from '@nestjs/mongoose';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_RESERVACIONES",
|
name: 'SERVICIO_RESERVACIONES',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3006
|
port: 3006,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
MongooseModule.forRoot(`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_reservaciones?retryWrites=true&w=majority`),
|
MongooseModule.forRoot(
|
||||||
ReservationsModule],
|
`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_reservaciones?retryWrites=true&w=majority`,
|
||||||
|
),
|
||||||
|
ReservationsModule,
|
||||||
|
],
|
||||||
controllers: [],
|
controllers: [],
|
||||||
providers: [],
|
providers: [],
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { NestFactory } from "@nestjs/core";
|
import { NestFactory } from '@nestjs/core';
|
||||||
import { Transport } from "@nestjs/microservices";
|
import { Transport } from '@nestjs/microservices';
|
||||||
import { AppModule } from "./app.module";
|
import { AppModule } from './app.module';
|
||||||
import { Logger } from "@nestjs/common";
|
import { Logger } from '@nestjs/common';
|
||||||
|
|
||||||
const logger = new Logger();
|
const logger = new Logger();
|
||||||
|
|
||||||
|
@ -9,10 +9,12 @@ async function bootstrap() {
|
||||||
const app = await NestFactory.createMicroservice(AppModule, {
|
const app = await NestFactory.createMicroservice(AppModule, {
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3006
|
port: 3006,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
app.listen().then(() => logger.log("Microservice Reservaciones is listening" ));
|
app
|
||||||
|
.listen()
|
||||||
|
.then(() => logger.log('Microservice Reservaciones is listening'));
|
||||||
}
|
}
|
||||||
bootstrap();
|
bootstrap();
|
|
@ -1,7 +1,10 @@
|
||||||
import { Controller } from '@nestjs/common';
|
import { Controller } from '@nestjs/common';
|
||||||
import { MessagePattern, Payload } from '@nestjs/microservices';
|
import { MessagePattern, Payload } from '@nestjs/microservices';
|
||||||
import { ReservationsService } from './reservations.service';
|
import { ReservationsService } from './reservations.service';
|
||||||
import { Reservation, ReservationDocument } from '../schemas/reservation.schema';
|
import {
|
||||||
|
Reservation,
|
||||||
|
ReservationDocument,
|
||||||
|
} from '../schemas/reservation.schema';
|
||||||
|
|
||||||
@Controller()
|
@Controller()
|
||||||
export class ReservationsController {
|
export class ReservationsController {
|
||||||
|
|
|
@ -7,9 +7,11 @@ import { Reservation, ReservationSchema} from '../schemas/reservation.schema';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
MongooseModule.forFeature([{ name: Reservation.name, schema: ReservationSchema }]),
|
MongooseModule.forFeature([
|
||||||
|
{ name: Reservation.name, schema: ReservationSchema },
|
||||||
|
]),
|
||||||
],
|
],
|
||||||
controllers: [ReservationsController],
|
controllers: [ReservationsController],
|
||||||
providers: [ReservationsService]
|
providers: [ReservationsService],
|
||||||
})
|
})
|
||||||
export class ReservationsModule {}
|
export class ReservationsModule {}
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { Reservation, ReservationDocument} from '../schemas/reservation.schema';
|
import {
|
||||||
|
Reservation,
|
||||||
|
ReservationDocument,
|
||||||
|
} from '../schemas/reservation.schema';
|
||||||
import { Model } from 'mongoose';
|
import { Model } from 'mongoose';
|
||||||
import { InjectModel } from '@nestjs/mongoose';
|
import { InjectModel } from '@nestjs/mongoose';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class ReservationsService {
|
export class ReservationsService {
|
||||||
constructor(
|
constructor(
|
||||||
@InjectModel(Reservation.name) private readonly reservationModel: Model<ReservationDocument>,
|
@InjectModel(Reservation.name)
|
||||||
|
private readonly reservationModel: Model<ReservationDocument>,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
create(reservation: ReservationDocument) {
|
create(reservation: ReservationDocument) {
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
||||||
import { Document, ObjectId } from 'mongoose';
|
import { Document, ObjectId } from 'mongoose';
|
||||||
|
|
||||||
|
|
||||||
export type ReservationDocument = Reservation & Document;
|
export type ReservationDocument = Reservation & Document;
|
||||||
|
|
||||||
@Schema({ collection: 'reservations' })
|
@Schema({ collection: 'reservations' })
|
||||||
export class Reservation {
|
export class Reservation {
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
start_time: string;
|
start_time: string;
|
||||||
|
|
||||||
|
@ -23,8 +21,7 @@ export class Reservation {
|
||||||
common_area_id: string;
|
common_area_id: string;
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
user_id: string
|
user_id: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export const ReservationSchema = SchemaFactory.createForClass(Reservation);
|
export const ReservationSchema = SchemaFactory.createForClass(Reservation);
|
File diff suppressed because it is too large
Load Diff
|
@ -29,10 +29,12 @@
|
||||||
"@nestjs/platform-express": "^8.0.0",
|
"@nestjs/platform-express": "^8.0.0",
|
||||||
"@nestjs/swagger": "^5.2.1",
|
"@nestjs/swagger": "^5.2.1",
|
||||||
"buffer": "^5.7.1",
|
"buffer": "^5.7.1",
|
||||||
|
"class-validator": "^0.13.2",
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"crypto-browserify": "^3.12.0",
|
"crypto-browserify": "^3.12.0",
|
||||||
"md5-typescript": "^1.0.5",
|
"md5-typescript": "^1.0.5",
|
||||||
"mongoose": "^6.4.1",
|
"mongoose": "^6.4.1",
|
||||||
|
"mongoose-unique-validator": "^3.1.0",
|
||||||
"reflect-metadata": "^0.1.13",
|
"reflect-metadata": "^0.1.13",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"rxjs": "^7.2.0",
|
"rxjs": "^7.2.0",
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
import { ArgumentsHost, Catch, ConflictException, ExceptionFilter } from '@nestjs/common';
|
||||||
|
import { MongoError } from 'mongodb';
|
||||||
|
|
||||||
|
@Catch(MongoError)
|
||||||
|
export class MongoExceptionFilter implements ExceptionFilter {
|
||||||
|
catch(exception: MongoError, host: ArgumentsHost) {
|
||||||
|
switch (exception.code) {
|
||||||
|
case 11000:
|
||||||
|
console.log('llave duplicada')
|
||||||
|
// duplicate exception
|
||||||
|
// do whatever you want here, for instance send error to client
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,22 +1,26 @@
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { MongooseModule } from '@nestjs/mongoose';
|
import { MongooseModule } from '@nestjs/mongoose';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
import { UsersModule } from './users/users.module';
|
import { UsersModule } from './users/users.module';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_USUARIOS",
|
name: 'SERVICIO_USUARIOS',
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3001
|
port: 3001,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]),
|
]),
|
||||||
MongooseModule.forRoot(`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_usuarios?retryWrites=true&w=majority`),
|
MongooseModule.forRoot(
|
||||||
UsersModule],
|
`mongodb+srv://proyecto_4:proyecto_4@proyecto4.yv4fb.mongodb.net/servicio_usuarios?retryWrites=true&w=majority`
|
||||||
|
|
||||||
|
),
|
||||||
|
UsersModule,
|
||||||
|
],
|
||||||
controllers: [],
|
controllers: [],
|
||||||
providers: [],
|
providers: [],
|
||||||
})
|
})
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
import { Injectable } from "@nestjs/common";
|
||||||
|
import { Model } from 'mongoose';
|
||||||
|
import { User, UserDocument } from '../schemas/user.schema';
|
||||||
|
import { InjectModel } from '@nestjs/mongoose';
|
||||||
|
import { ValidationArguments, ValidatorConstraint, ValidatorConstraintInterface } from "class-validator";
|
||||||
|
|
||||||
|
|
||||||
|
@ValidatorConstraint({ name: 'UserExists', async: true })
|
||||||
|
@Injectable()
|
||||||
|
export class UserExistsRule implements ValidatorConstraintInterface {
|
||||||
|
constructor(
|
||||||
|
@InjectModel(User.name) private readonly userModel: Model<UserDocument>,
|
||||||
|
) {}
|
||||||
|
|
||||||
|
async validate(value: string) {
|
||||||
|
try {
|
||||||
|
await this.userModel.find({email: value});
|
||||||
|
} catch (e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
defaultMessage(args: ValidationArguments) {
|
||||||
|
return `User doesn't exist`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { NestFactory } from "@nestjs/core";
|
import { NestFactory } from '@nestjs/core';
|
||||||
import { Transport } from "@nestjs/microservices";
|
import { Transport } from '@nestjs/microservices';
|
||||||
import { AppModule } from "./app.module";
|
import { AppModule } from './app.module';
|
||||||
import { Logger } from "@nestjs/common";
|
import { Logger } from '@nestjs/common';
|
||||||
|
|
||||||
const logger = new Logger();
|
const logger = new Logger();
|
||||||
|
|
||||||
|
@ -9,10 +9,10 @@ async function bootstrap() {
|
||||||
const app = await NestFactory.createMicroservice(AppModule, {
|
const app = await NestFactory.createMicroservice(AppModule, {
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: '127.0.0.1',
|
||||||
port: 3001
|
port: 3001,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
app.listen().then(() => logger.log("Microservice Usuarios is listening" ));
|
app.listen().then(() => logger.log('Microservice Usuarios is listening'));
|
||||||
}
|
}
|
||||||
bootstrap();
|
bootstrap();
|
|
@ -1,27 +1,25 @@
|
||||||
|
|
||||||
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
import { Schema, Prop, SchemaFactory } from '@nestjs/mongoose';
|
||||||
import { Document } from 'mongoose';
|
import { Document } from 'mongoose';
|
||||||
|
var uniqueValidator = require('mongoose-unique-validator');
|
||||||
|
import { IsEmail, IsNotEmpty, IsString, Validate } from 'class-validator';
|
||||||
|
|
||||||
export type UserDocument = User & Document;
|
export type UserDocument = User & Document;
|
||||||
|
|
||||||
|
|
||||||
@Schema({ collection: 'users'})
|
@Schema({ collection: 'users'})
|
||||||
export class User {
|
export class User {
|
||||||
|
@Prop({index: true})
|
||||||
|
dni!: string;
|
||||||
|
|
||||||
@Prop()
|
@Prop({required: true})
|
||||||
dni: string;
|
|
||||||
|
|
||||||
@Prop()
|
|
||||||
name: string;
|
name: string;
|
||||||
|
|
||||||
@Prop()
|
@Prop({required: true})
|
||||||
last_name: string;
|
last_name: string;
|
||||||
|
|
||||||
@Prop()
|
@Prop({required: true, unique: true})
|
||||||
email: string;
|
email: string;
|
||||||
|
|
||||||
@Prop()
|
@Prop({required: true, unique: true})
|
||||||
phone: number;
|
phone: number;
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
|
@ -36,11 +34,9 @@ export class User {
|
||||||
@Prop()
|
@Prop()
|
||||||
date_entry: Date;
|
date_entry: Date;
|
||||||
|
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
community_id?: string;
|
community_id?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export const UserSchema = SchemaFactory.createForClass(User);
|
export const UserSchema = SchemaFactory.createForClass(User);
|
||||||
|
UserSchema.plugin(uniqueValidator);
|
|
@ -1,7 +1,8 @@
|
||||||
import { Controller } from '@nestjs/common';
|
import { Controller, UseFilters } from '@nestjs/common';
|
||||||
import { MessagePattern, Payload } from '@nestjs/microservices';
|
import { MessagePattern, Payload } from '@nestjs/microservices';
|
||||||
import { User, UserDocument } from '../schemas/user.schema';
|
import { User, UserDocument } from '../schemas/user.schema';
|
||||||
import { UsersService } from './users.service';
|
import { UsersService } from './users.service';
|
||||||
|
import { MongoExceptionFilter } from 'src/MongoExceptionFilter';
|
||||||
|
|
||||||
@Controller()
|
@Controller()
|
||||||
export class UsersController {
|
export class UsersController {
|
||||||
|
@ -13,6 +14,7 @@ export class UsersController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@MessagePattern({ cmd: 'createAdminSystem' })
|
@MessagePattern({ cmd: 'createAdminSystem' })
|
||||||
|
@UseFilters(MongoExceptionFilter)
|
||||||
createUserAdmin(@Payload() user: UserDocument) {
|
createUserAdmin(@Payload() user: UserDocument) {
|
||||||
return this.userService.create(user);
|
return this.userService.create(user);
|
||||||
}
|
}
|
||||||
|
@ -22,6 +24,10 @@ export class UsersController {
|
||||||
return this.userService.create(user);
|
return this.userService.create(user);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@MessagePattern({ cmd: 'createAdminCommunity' })
|
||||||
|
createAdminCommunity(@Payload() user: UserDocument) {
|
||||||
|
return this.userService.createAdminCommunity(user);
|
||||||
|
}
|
||||||
|
|
||||||
@MessagePattern({ cmd: 'findAllUsers' })
|
@MessagePattern({ cmd: 'findAllUsers' })
|
||||||
findAll() {
|
findAll() {
|
||||||
|
@ -40,7 +46,6 @@ export class UsersController {
|
||||||
return this.userService.findGuardsCommunity(pcommunity_id);
|
return this.userService.findGuardsCommunity(pcommunity_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@MessagePattern({ cmd: 'findTenantsCommunity' })
|
@MessagePattern({ cmd: 'findTenantsCommunity' })
|
||||||
findTenantsCommunity(@Payload() community_id: string) {
|
findTenantsCommunity(@Payload() community_id: string) {
|
||||||
let pcommunity_id = community_id['community_id'];
|
let pcommunity_id = community_id['community_id'];
|
||||||
|
@ -93,15 +98,19 @@ export class UsersController {
|
||||||
//buscar usuario de una comunidad
|
//buscar usuario de una comunidad
|
||||||
@MessagePattern({ cmd: 'findOneCommunityUser' })
|
@MessagePattern({ cmd: 'findOneCommunityUser' })
|
||||||
findCommunityUser(@Payload() user: any) {
|
findCommunityUser(@Payload() user: any) {
|
||||||
return this.userService.findCommunityUser(user["community_id"], user["user_type"]);
|
return this.userService.findCommunityUser(
|
||||||
|
user['community_id'],
|
||||||
|
user['user_type'],
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@MessagePattern({ cmd: 'deleteAdminSystem' })
|
@MessagePattern({ cmd: 'deleteAdminSystem' })
|
||||||
deleteAdminSystem(@Payload() user: any) {
|
deleteAdminSystem(@Payload() user: any) {
|
||||||
console.log("entró")
|
console.log('entró');
|
||||||
|
|
||||||
return this.userService.deleteAdminSystem(user["id"]);
|
return this.userService.deleteAdminSystem(user['id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -4,23 +4,33 @@ import { MongooseModule } from '@nestjs/mongoose';
|
||||||
|
|
||||||
import { UsersController } from './users.controller';
|
import { UsersController } from './users.controller';
|
||||||
import { User, UserSchema } from '../schemas/user.schema';
|
import { User, UserSchema } from '../schemas/user.schema';
|
||||||
import { ClientsModule, Transport } from "@nestjs/microservices";
|
import { ClientsModule, Transport } from '@nestjs/microservices';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ClientsModule.register([
|
ClientsModule.register([
|
||||||
{
|
{
|
||||||
name: "SERVICIO_NOTIFICACIONES",
|
name: 'SERVICIO_NOTIFICACIONES',
|
||||||
|
transport: Transport.TCP,
|
||||||
|
options: {
|
||||||
|
host: '127.0.0.1',
|
||||||
|
port: 3009,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
ClientsModule.register([
|
||||||
|
{
|
||||||
|
name: "SERVICIO_COMUNIDADES",
|
||||||
transport: Transport.TCP,
|
transport: Transport.TCP,
|
||||||
options: {
|
options: {
|
||||||
host: "127.0.0.1",
|
host: "127.0.0.1",
|
||||||
port: 3009
|
port: 3002
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]),
|
]),
|
||||||
MongooseModule.forFeature([{ name: User.name, schema: UserSchema }]),
|
MongooseModule.forFeature([{ name: User.name, schema: UserSchema }]),
|
||||||
],
|
],
|
||||||
controllers: [UsersController],
|
controllers: [UsersController],
|
||||||
providers: [UsersService]
|
providers: [UsersService],
|
||||||
})
|
})
|
||||||
export class UsersModule {}
|
export class UsersModule {}
|
||||||
|
|
|
@ -2,18 +2,18 @@ import { Injectable, Inject } from '@nestjs/common';
|
||||||
import { Model } from 'mongoose';
|
import { Model } from 'mongoose';
|
||||||
import { User, UserDocument } from '../schemas/user.schema';
|
import { User, UserDocument } from '../schemas/user.schema';
|
||||||
import { InjectModel } from '@nestjs/mongoose';
|
import { InjectModel } from '@nestjs/mongoose';
|
||||||
import { Md5 } from "md5-typescript";
|
import { Md5 } from 'md5-typescript';
|
||||||
import { map } from 'rxjs/operators';
|
import { map } from 'rxjs/operators';
|
||||||
|
import { lastValueFrom } from 'rxjs';
|
||||||
|
|
||||||
import { RpcException, ClientProxy } from '@nestjs/microservices';
|
import { RpcException, ClientProxy } from '@nestjs/microservices';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class UsersService {
|
export class UsersService {
|
||||||
constructor(
|
constructor(
|
||||||
@InjectModel(User.name) private readonly userModel: Model<UserDocument>,
|
@InjectModel(User.name) private readonly userModel: Model<UserDocument>,
|
||||||
@Inject('SERVICIO_NOTIFICACIONES') private readonly clientNotificationtApp: ClientProxy,
|
@Inject('SERVICIO_NOTIFICACIONES') private readonly clientNotificationtApp: ClientProxy,
|
||||||
|
@Inject('SERVICIO_COMUNIDADES') private readonly clientCommunityApp: ClientProxy,
|
||||||
|
|
||||||
) { }
|
) { }
|
||||||
private publicKey: string;
|
private publicKey: string;
|
||||||
|
@ -23,11 +23,44 @@ export class UsersService {
|
||||||
return this.userModel.create(user);
|
return this.userModel.create(user);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
async createAdminCommunity(user: UserDocument) {
|
||||||
|
let password = user.password;
|
||||||
|
let passwordEncriptada = Md5.init(user.password);
|
||||||
|
user.password = passwordEncriptada;
|
||||||
|
|
||||||
|
this.userModel.create(user)
|
||||||
|
|
||||||
|
|
||||||
|
let community = await this.findCommunity(user.community_id);
|
||||||
|
user.community_id = community['name'];
|
||||||
|
|
||||||
|
const pattern = { cmd: 'emailCreateUserAdminCommunity' };
|
||||||
|
const payload = { email: user['email'], password: password, name: user['name'],
|
||||||
|
date_entry: user['date_entry'], community_name: community['name'] };
|
||||||
|
return this.clientNotificationtApp
|
||||||
|
.send<string>(pattern, payload)
|
||||||
|
.pipe(
|
||||||
|
map((message: string) => ({ message })),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
async findCommunity(community_id: string) {
|
||||||
|
const pattern = { cmd: 'findOneCommunity' }
|
||||||
|
const payload = { _id: community_id }
|
||||||
|
|
||||||
|
let callback = await this.clientCommunityApp
|
||||||
|
.send<string>(pattern, payload)
|
||||||
|
.pipe(
|
||||||
|
map((response: string) => ({ response }))
|
||||||
|
)
|
||||||
|
const finalValue = await lastValueFrom(callback);
|
||||||
|
return finalValue['response'];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
async findAll(): Promise<User[]> {
|
async findAll(): Promise<User[]> {
|
||||||
return this.userModel
|
return this.userModel.find().setOptions({ sanitizeFilter: true }).exec();
|
||||||
.find()
|
|
||||||
.setOptions({ sanitizeFilter: true })
|
|
||||||
.exec();
|
|
||||||
}
|
}
|
||||||
async findOne(id: string): Promise<User> {
|
async findOne(id: string): Promise<User> {
|
||||||
return this.userModel.findOne({ _id: id }).exec();
|
return this.userModel.findOne({ _id: id }).exec();
|
||||||
|
@ -56,13 +89,11 @@ export class UsersService {
|
||||||
repo.find({ email: email }).exec((err, res) => {
|
repo.find({ email: email }).exec((err, res) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
reject(err);
|
reject(err);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
let passwordEncriptada = Md5.init(password);
|
let passwordEncriptada = Md5.init(password);
|
||||||
if (res[0].password == passwordEncriptada) {
|
if (res[0].password == passwordEncriptada) {
|
||||||
resolve(res[0]);
|
resolve(res[0]);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
resolve(null);
|
resolve(null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -77,7 +108,6 @@ export class UsersService {
|
||||||
return this.userModel.find({ user_type: 1 }).exec();
|
return this.userModel.find({ user_type: 1 }).exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//find admin del sistema
|
//find admin del sistema
|
||||||
async findGuardsCommunity(pcommunity_id: string): Promise<User[]> {
|
async findGuardsCommunity(pcommunity_id: string): Promise<User[]> {
|
||||||
return this.userModel.find({ user_type: 4 }).exec();
|
return this.userModel.find({ user_type: 4 }).exec();
|
||||||
|
@ -102,7 +132,7 @@ export class UsersService {
|
||||||
async testSendMail(user: UserDocument) {
|
async testSendMail(user: UserDocument) {
|
||||||
let passwordEncriptada = Md5.init(user.password);
|
let passwordEncriptada = Md5.init(user.password);
|
||||||
user.password = passwordEncriptada;
|
user.password = passwordEncriptada;
|
||||||
this.userModel.create(user)
|
this.userModel.create(user);
|
||||||
/*.then(() => {
|
/*.then(() => {
|
||||||
|
|
||||||
} );*/
|
} );*/
|
||||||
|
@ -111,17 +141,38 @@ export class UsersService {
|
||||||
const payload = { email: user['email'], name: user['name'] };
|
const payload = { email: user['email'], name: user['name'] };
|
||||||
return this.clientNotificationtApp
|
return this.clientNotificationtApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
.pipe(
|
.pipe(map((message: string) => ({ message })));
|
||||||
map((message: string) => ({ message })),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async findCommunityUser(community_id: string, user_type: number): Promise<User> {
|
async findCommunityUser(
|
||||||
return this.userModel.findOne({ community_id: community_id, user_type: user_type }).exec();
|
community_id: string,
|
||||||
|
user_type: number,
|
||||||
|
): Promise<User> {
|
||||||
|
return this.userModel
|
||||||
|
.findOne({ community_id: community_id, user_type: user_type })
|
||||||
|
.exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
async deleteAdminSystem(id: string) {
|
async deleteAdminSystem(id: string) {
|
||||||
return this.userModel.deleteOne({ _id: id }).exec();
|
return this.userModel.deleteOne({ _id: id }).exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async validateEmail(email: string) {
|
||||||
|
let repo1 = this.userModel;
|
||||||
|
return new Promise<User>((resolve, reject) => {
|
||||||
|
let repo = repo1;
|
||||||
|
|
||||||
|
repo.find({ email: email }).exec((err, res) => {
|
||||||
|
if (err) {
|
||||||
|
reject(err);
|
||||||
|
} else {
|
||||||
|
if (res.length > 0) {
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,7 @@ import {PrimeIcons} from 'primereact/api';
|
||||||
|
|
||||||
const App = () => {
|
const App = () => {
|
||||||
const [layoutMode, setLayoutMode] = useState('static');
|
const [layoutMode, setLayoutMode] = useState('static');
|
||||||
const [layoutColorMode, setLayoutColorMode] = useState('light')
|
const [layoutColorMode, setLayoutColorMode] = useState('light');
|
||||||
const [inputStyle, setInputStyle] = useState('outlined');
|
const [inputStyle, setInputStyle] = useState('outlined');
|
||||||
const [ripple, setRipple] = useState(true);
|
const [ripple, setRipple] = useState(true);
|
||||||
const [staticMenuInactive, setStaticMenuInactive] = useState(false);
|
const [staticMenuInactive, setStaticMenuInactive] = useState(false);
|
||||||
|
@ -71,32 +71,34 @@ const App = () => {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (mobileMenuActive) {
|
if (mobileMenuActive) {
|
||||||
addClass(document.body, "body-overflow-hidden");
|
addClass(document.body, 'body-overflow-hidden');
|
||||||
} else {
|
} else {
|
||||||
removeClass(document.body, "body-overflow-hidden");
|
removeClass(document.body, 'body-overflow-hidden');
|
||||||
}
|
}
|
||||||
}, [mobileMenuActive]);
|
}, [mobileMenuActive]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
copyTooltipRef && copyTooltipRef.current && copyTooltipRef.current.updateTargetEvents();
|
copyTooltipRef &&
|
||||||
|
copyTooltipRef.current &&
|
||||||
|
copyTooltipRef.current.updateTargetEvents();
|
||||||
}, [location]);
|
}, [location]);
|
||||||
|
|
||||||
const onInputStyleChange = (inputStyle) => {
|
const onInputStyleChange = (inputStyle) => {
|
||||||
setInputStyle(inputStyle);
|
setInputStyle(inputStyle);
|
||||||
}
|
};
|
||||||
|
|
||||||
const onRipple = (e) => {
|
const onRipple = (e) => {
|
||||||
PrimeReact.ripple = e.value;
|
PrimeReact.ripple = e.value;
|
||||||
setRipple(e.value)
|
setRipple(e.value);
|
||||||
}
|
};
|
||||||
|
|
||||||
const onLayoutModeChange = (mode) => {
|
const onLayoutModeChange = (mode) => {
|
||||||
setLayoutMode(mode)
|
setLayoutMode(mode);
|
||||||
}
|
};
|
||||||
|
|
||||||
const onColorModeChange = (mode) => {
|
const onColorModeChange = (mode) => {
|
||||||
setLayoutColorMode(mode)
|
setLayoutColorMode(mode);
|
||||||
}
|
};
|
||||||
|
|
||||||
const onWrapperClick = (event) => {
|
const onWrapperClick = (event) => {
|
||||||
if (!menuClick) {
|
if (!menuClick) {
|
||||||
|
@ -110,7 +112,7 @@ const App = () => {
|
||||||
|
|
||||||
mobileTopbarMenuClick = false;
|
mobileTopbarMenuClick = false;
|
||||||
menuClick = false;
|
menuClick = false;
|
||||||
}
|
};
|
||||||
|
|
||||||
const onToggleMenuClick = (event) => {
|
const onToggleMenuClick = (event) => {
|
||||||
menuClick = true;
|
menuClick = true;
|
||||||
|
@ -123,186 +125,254 @@ const App = () => {
|
||||||
|
|
||||||
setOverlayMenuActive((prevState) => !prevState);
|
setOverlayMenuActive((prevState) => !prevState);
|
||||||
setMobileMenuActive(false);
|
setMobileMenuActive(false);
|
||||||
}
|
} else if (layoutMode === 'static') {
|
||||||
else if (layoutMode === 'static') {
|
|
||||||
setStaticMenuInactive((prevState) => !prevState);
|
setStaticMenuInactive((prevState) => !prevState);
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
setMobileMenuActive((prevState) => !prevState);
|
setMobileMenuActive((prevState) => !prevState);
|
||||||
}
|
}
|
||||||
|
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}
|
};
|
||||||
|
|
||||||
const onSidebarClick = () => {
|
const onSidebarClick = () => {
|
||||||
menuClick = true;
|
menuClick = true;
|
||||||
}
|
};
|
||||||
|
|
||||||
const onMobileTopbarMenuClick = (event) => {
|
const onMobileTopbarMenuClick = (event) => {
|
||||||
mobileTopbarMenuClick = true;
|
mobileTopbarMenuClick = true;
|
||||||
|
|
||||||
setMobileTopbarMenuActive((prevState) => !prevState);
|
setMobileTopbarMenuActive((prevState) => !prevState);
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}
|
};
|
||||||
|
|
||||||
const onMobileSubTopbarMenuClick = (event) => {
|
const onMobileSubTopbarMenuClick = (event) => {
|
||||||
mobileTopbarMenuClick = true;
|
mobileTopbarMenuClick = true;
|
||||||
|
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}
|
};
|
||||||
|
|
||||||
const onMenuItemClick = (event) => {
|
const onMenuItemClick = (event) => {
|
||||||
if (!event.item.items) {
|
if (!event.item.items) {
|
||||||
setOverlayMenuActive(false);
|
setOverlayMenuActive(false);
|
||||||
setMobileMenuActive(false);
|
setMobileMenuActive(false);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
const isDesktop = () => {
|
const isDesktop = () => {
|
||||||
return window.innerWidth >= 992;
|
return window.innerWidth >= 992;
|
||||||
}
|
};
|
||||||
|
|
||||||
const menu = [
|
const menu = [
|
||||||
{
|
{
|
||||||
label: 'Home',
|
label: 'Home',
|
||||||
items: [
|
items: [
|
||||||
{ label: 'Dashboard', icon: 'pi pi-fw pi-home', to: '/' },
|
{ label: 'Dashboard', icon: 'pi pi-fw pi-home', to: '/' },
|
||||||
{label: 'Administradores del sistema', icon: PrimeIcons.USERS, to: '/administradoresSistema'},
|
{
|
||||||
{label: 'Administradores de comunidad', icon: PrimeIcons.USERS, to: '/administradoresComunidad'},
|
label: 'Administradores del sistema',
|
||||||
{label: 'Guardas de seguridad', icon: PrimeIcons.LOCK, to: '/guardasSeguridad'},
|
icon: PrimeIcons.USERS,
|
||||||
{label: 'Comunidadades', icon: PrimeIcons.BUILDING, to: '/comunidadesViviendas'},
|
to: '/administradoresSistema',
|
||||||
{label: 'Inquilinos', icon: PrimeIcons.USER, to: '/inquilinos'},
|
|
||||||
{label: 'Log in', icon: 'pi pi-fw pi-id-card', to: '/logIn'}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'UI Components', icon: 'pi pi-fw pi-sitemap',
|
label: 'Administradores de comunidad',
|
||||||
|
icon: PrimeIcons.USERS,
|
||||||
|
to: '/administradoresComunidad',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Guardas de seguridad',
|
||||||
|
icon: PrimeIcons.LOCK,
|
||||||
|
to: '/guardasSeguridad',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Comunidadades',
|
||||||
|
icon: PrimeIcons.BUILDING,
|
||||||
|
to: '/comunidadesViviendas',
|
||||||
|
},
|
||||||
|
{ label: 'Inquilinos', icon: PrimeIcons.USER, to: '/inquilinos' },
|
||||||
|
{ label: 'Log in', icon: 'pi pi-fw pi-id-card', to: '/logIn' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'UI Components',
|
||||||
|
icon: 'pi pi-fw pi-sitemap',
|
||||||
items: [
|
items: [
|
||||||
{ label: 'Form Layout', icon: 'pi pi-fw pi-id-card', to: '/formlayout' },
|
{
|
||||||
|
label: 'Form Layout',
|
||||||
|
icon: 'pi pi-fw pi-id-card',
|
||||||
|
to: '/formlayout',
|
||||||
|
},
|
||||||
{ label: 'Input', icon: 'pi pi-fw pi-check-square', to: '/input' },
|
{ label: 'Input', icon: 'pi pi-fw pi-check-square', to: '/input' },
|
||||||
{ label: "Float Label", icon: "pi pi-fw pi-bookmark", to: "/floatlabel" },
|
{
|
||||||
{ label: "Invalid State", icon: "pi pi-fw pi-exclamation-circle", to: "invalidstate" },
|
label: 'Float Label',
|
||||||
|
icon: 'pi pi-fw pi-bookmark',
|
||||||
|
to: '/floatlabel',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Invalid State',
|
||||||
|
icon: 'pi pi-fw pi-exclamation-circle',
|
||||||
|
to: 'invalidstate',
|
||||||
|
},
|
||||||
{ label: 'Button', icon: 'pi pi-fw pi-mobile', to: '/button' },
|
{ label: 'Button', icon: 'pi pi-fw pi-mobile', to: '/button' },
|
||||||
{ label: 'Table', icon: 'pi pi-fw pi-table', to: '/table' },
|
{ label: 'Table', icon: 'pi pi-fw pi-table', to: '/table' },
|
||||||
{ label: 'List', icon: 'pi pi-fw pi-list', to: '/list' },
|
{ label: 'List', icon: 'pi pi-fw pi-list', to: '/list' },
|
||||||
{ label: 'Tree', icon: 'pi pi-fw pi-share-alt', to: '/tree' },
|
{ label: 'Tree', icon: 'pi pi-fw pi-share-alt', to: '/tree' },
|
||||||
{ label: 'Panel', icon: 'pi pi-fw pi-tablet', to: '/panel' },
|
{ label: 'Panel', icon: 'pi pi-fw pi-tablet', to: '/panel' },
|
||||||
{ label: 'Overlay', icon: 'pi pi-fw pi-clone', to: '/overlay' },
|
{ label: 'Overlay', icon: 'pi pi-fw pi-clone', to: '/overlay' },
|
||||||
{ label: "Media", icon: "pi pi-fw pi-image", to: "/media" },
|
{ label: 'Media', icon: 'pi pi-fw pi-image', to: '/media' },
|
||||||
{ label: 'Menu', icon: 'pi pi-fw pi-bars', to: '/menu' },
|
{ label: 'Menu', icon: 'pi pi-fw pi-bars', to: '/menu' },
|
||||||
{ label: 'Message', icon: 'pi pi-fw pi-comment', to: '/messages' },
|
{ label: 'Message', icon: 'pi pi-fw pi-comment', to: '/messages' },
|
||||||
{ label: 'File', icon: 'pi pi-fw pi-file', to: '/file' },
|
{ label: 'File', icon: 'pi pi-fw pi-file', to: '/file' },
|
||||||
{ label: 'Chart', icon: 'pi pi-fw pi-chart-bar', to: '/chart' },
|
{ label: 'Chart', icon: 'pi pi-fw pi-chart-bar', to: '/chart' },
|
||||||
{ label: 'Misc', icon: 'pi pi-fw pi-circle-off', to: '/misc' },
|
{ label: 'Misc', icon: 'pi pi-fw pi-circle-off', to: '/misc' },
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'UI Blocks',
|
label: 'UI Blocks',
|
||||||
items: [
|
items: [
|
||||||
{ label: 'Free Blocks', icon: 'pi pi-fw pi-eye', to: '/blocks', badge: "NEW" },
|
{
|
||||||
{ label: 'All Blocks', icon: 'pi pi-fw pi-globe', url: 'https://www.primefaces.org/primeblocks-react' }
|
label: 'Free Blocks',
|
||||||
]
|
icon: 'pi pi-fw pi-eye',
|
||||||
|
to: '/blocks',
|
||||||
|
badge: 'NEW',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'All Blocks',
|
||||||
|
icon: 'pi pi-fw pi-globe',
|
||||||
|
url: 'https://www.primefaces.org/primeblocks-react',
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Icons',
|
label: 'Icons',
|
||||||
items: [
|
items: [{ label: 'PrimeIcons', icon: 'pi pi-fw pi-prime', to: '/icons' }],
|
||||||
{ label: 'PrimeIcons', icon: 'pi pi-fw pi-prime', to: '/icons' }
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Pages', icon: 'pi pi-fw pi-clone',
|
label: 'Pages',
|
||||||
|
icon: 'pi pi-fw pi-clone',
|
||||||
items: [
|
items: [
|
||||||
{ label: 'Crud', icon: 'pi pi-fw pi-user-edit', to: '/crud' },
|
{ label: 'Crud', icon: 'pi pi-fw pi-user-edit', to: '/crud' },
|
||||||
{ label: 'Timeline', icon: 'pi pi-fw pi-calendar', to: '/timeline' },
|
{ label: 'Timeline', icon: 'pi pi-fw pi-calendar', to: '/timeline' },
|
||||||
{ label: 'Empty', icon: 'pi pi-fw pi-circle-off', to: '/empty' }
|
{ label: 'Empty', icon: 'pi pi-fw pi-circle-off', to: '/empty' },
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Menu Hierarchy', icon: 'pi pi-fw pi-search',
|
label: 'Menu Hierarchy',
|
||||||
|
icon: 'pi pi-fw pi-search',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: 'Submenu 1', icon: 'pi pi-fw pi-bookmark',
|
label: 'Submenu 1',
|
||||||
|
icon: 'pi pi-fw pi-bookmark',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: 'Submenu 1.1', icon: 'pi pi-fw pi-bookmark',
|
label: 'Submenu 1.1',
|
||||||
|
icon: 'pi pi-fw pi-bookmark',
|
||||||
items: [
|
items: [
|
||||||
{ label: 'Submenu 1.1.1', icon: 'pi pi-fw pi-bookmark' },
|
{ label: 'Submenu 1.1.1', icon: 'pi pi-fw pi-bookmark' },
|
||||||
{ label: 'Submenu 1.1.2', icon: 'pi pi-fw pi-bookmark' },
|
{ label: 'Submenu 1.1.2', icon: 'pi pi-fw pi-bookmark' },
|
||||||
{ label: 'Submenu 1.1.3', icon: 'pi pi-fw pi-bookmark' },
|
{ label: 'Submenu 1.1.3', icon: 'pi pi-fw pi-bookmark' },
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Submenu 1.2', icon: 'pi pi-fw pi-bookmark',
|
label: 'Submenu 1.2',
|
||||||
|
icon: 'pi pi-fw pi-bookmark',
|
||||||
items: [
|
items: [
|
||||||
{ label: 'Submenu 1.2.1', icon: 'pi pi-fw pi-bookmark' },
|
{ label: 'Submenu 1.2.1', icon: 'pi pi-fw pi-bookmark' },
|
||||||
{ label: 'Submenu 1.2.2', icon: 'pi pi-fw pi-bookmark' }
|
{ label: 'Submenu 1.2.2', icon: 'pi pi-fw pi-bookmark' },
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Submenu 2', icon: 'pi pi-fw pi-bookmark',
|
label: 'Submenu 2',
|
||||||
|
icon: 'pi pi-fw pi-bookmark',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: 'Submenu 2.1', icon: 'pi pi-fw pi-bookmark',
|
label: 'Submenu 2.1',
|
||||||
|
icon: 'pi pi-fw pi-bookmark',
|
||||||
items: [
|
items: [
|
||||||
{ label: 'Submenu 2.1.1', icon: 'pi pi-fw pi-bookmark' },
|
{ label: 'Submenu 2.1.1', icon: 'pi pi-fw pi-bookmark' },
|
||||||
{ label: 'Submenu 2.1.2', icon: 'pi pi-fw pi-bookmark' },
|
{ label: 'Submenu 2.1.2', icon: 'pi pi-fw pi-bookmark' },
|
||||||
{ label: 'Submenu 2.1.3', icon: 'pi pi-fw pi-bookmark' },
|
{ label: 'Submenu 2.1.3', icon: 'pi pi-fw pi-bookmark' },
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Submenu 2.2', icon: 'pi pi-fw pi-bookmark',
|
label: 'Submenu 2.2',
|
||||||
|
icon: 'pi pi-fw pi-bookmark',
|
||||||
items: [
|
items: [
|
||||||
{ label: 'Submenu 2.2.1', icon: 'pi pi-fw pi-bookmark' },
|
{ label: 'Submenu 2.2.1', icon: 'pi pi-fw pi-bookmark' },
|
||||||
{ label: 'Submenu 2.2.2', icon: 'pi pi-fw pi-bookmark' }
|
{ label: 'Submenu 2.2.2', icon: 'pi pi-fw pi-bookmark' },
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const addClass = (element, className) => {
|
const addClass = (element, className) => {
|
||||||
if (element.classList)
|
if (element.classList) element.classList.add(className);
|
||||||
element.classList.add(className);
|
else element.className += ' ' + className;
|
||||||
else
|
};
|
||||||
element.className += ' ' + className;
|
|
||||||
}
|
|
||||||
|
|
||||||
const removeClass = (element, className) => {
|
const removeClass = (element, className) => {
|
||||||
if (element.classList)
|
if (element.classList) element.classList.remove(className);
|
||||||
element.classList.remove(className);
|
|
||||||
else
|
else
|
||||||
element.className = element.className.replace(new RegExp('(^|\\b)' + className.split(' ').join('|') + '(\\b|$)', 'gi'), ' ');
|
element.className = element.className.replace(
|
||||||
}
|
new RegExp(
|
||||||
|
'(^|\\b)' + className.split(' ').join('|') + '(\\b|$)',
|
||||||
|
'gi',
|
||||||
|
),
|
||||||
|
' ',
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
const wrapperClass = classNames('layout-wrapper', {
|
const wrapperClass = classNames('layout-wrapper', {
|
||||||
'layout-overlay': layoutMode === 'overlay',
|
'layout-overlay': layoutMode === 'overlay',
|
||||||
'layout-static': layoutMode === 'static',
|
'layout-static': layoutMode === 'static',
|
||||||
'layout-static-sidebar-inactive': staticMenuInactive && layoutMode === 'static',
|
'layout-static-sidebar-inactive':
|
||||||
'layout-overlay-sidebar-active': overlayMenuActive && layoutMode === 'overlay',
|
staticMenuInactive && layoutMode === 'static',
|
||||||
|
'layout-overlay-sidebar-active':
|
||||||
|
overlayMenuActive && layoutMode === 'overlay',
|
||||||
'layout-mobile-sidebar-active': mobileMenuActive,
|
'layout-mobile-sidebar-active': mobileMenuActive,
|
||||||
'p-input-filled': inputStyle === 'filled',
|
'p-input-filled': inputStyle === 'filled',
|
||||||
'p-ripple-disabled': ripple === false,
|
'p-ripple-disabled': ripple === false,
|
||||||
'layout-theme-light': layoutColorMode === 'light'
|
'layout-theme-light': layoutColorMode === 'light',
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={wrapperClass} onClick={onWrapperClick}>
|
<div className={wrapperClass} onClick={onWrapperClick}>
|
||||||
<Tooltip ref={copyTooltipRef} target=".block-action-copy" position="bottom" content="Copied to clipboard" event="focus" />
|
<Tooltip
|
||||||
|
ref={copyTooltipRef}
|
||||||
|
target=".block-action-copy"
|
||||||
|
position="bottom"
|
||||||
|
content="Copied to clipboard"
|
||||||
|
event="focus"
|
||||||
|
/>
|
||||||
|
|
||||||
<AppTopbar onToggleMenuClick={onToggleMenuClick} layoutColorMode={layoutColorMode}
|
<AppTopbar
|
||||||
mobileTopbarMenuActive={mobileTopbarMenuActive} onMobileTopbarMenuClick={onMobileTopbarMenuClick} onMobileSubTopbarMenuClick={onMobileSubTopbarMenuClick} />
|
onToggleMenuClick={onToggleMenuClick}
|
||||||
|
layoutColorMode={layoutColorMode}
|
||||||
|
mobileTopbarMenuActive={mobileTopbarMenuActive}
|
||||||
|
onMobileTopbarMenuClick={onMobileTopbarMenuClick}
|
||||||
|
onMobileSubTopbarMenuClick={onMobileSubTopbarMenuClick}
|
||||||
|
/>
|
||||||
|
|
||||||
<div className="layout-sidebar" onClick={onSidebarClick}>
|
<div className="layout-sidebar" onClick={onSidebarClick}>
|
||||||
<AppMenu model={menu} onMenuItemClick={onMenuItemClick} layoutColorMode={layoutColorMode} />
|
<AppMenu
|
||||||
|
model={menu}
|
||||||
|
onMenuItemClick={onMenuItemClick}
|
||||||
|
layoutColorMode={layoutColorMode}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="layout-main-container">
|
<div className="layout-main-container">
|
||||||
<div className="layout-main">
|
<div className="layout-main">
|
||||||
<Route path="/" exact render={() => <Dashboard colorMode={layoutColorMode} location={location} />} />
|
<Route
|
||||||
|
path="/"
|
||||||
|
exact
|
||||||
|
render={() => (
|
||||||
|
<Dashboard colorMode={layoutColorMode} location={location} />
|
||||||
|
)}
|
||||||
|
/>
|
||||||
<Route path="/formlayout" component={FormLayoutDemo} />
|
<Route path="/formlayout" component={FormLayoutDemo} />
|
||||||
<Route path="/input" component={InputDemo} />
|
<Route path="/input" component={InputDemo} />
|
||||||
<Route path="/floatlabel" component={FloatLabelDemo} />
|
<Route path="/floatlabel" component={FloatLabelDemo} />
|
||||||
|
@ -319,14 +389,25 @@ const App = () => {
|
||||||
<Route path="/blocks" component={BlocksDemo} />
|
<Route path="/blocks" component={BlocksDemo} />
|
||||||
<Route path="/icons" component={IconsDemo} />
|
<Route path="/icons" component={IconsDemo} />
|
||||||
<Route path="/file" component={FileDemo} />
|
<Route path="/file" component={FileDemo} />
|
||||||
<Route path="/chart" render={() => <ChartDemo colorMode={layoutColorMode} location={location} />} />
|
<Route
|
||||||
|
path="/chart"
|
||||||
|
render={() => (
|
||||||
|
<ChartDemo colorMode={layoutColorMode} location={location} />
|
||||||
|
)}
|
||||||
|
/>
|
||||||
<Route path="/misc" component={MiscDemo} />
|
<Route path="/misc" component={MiscDemo} />
|
||||||
<Route path="/timeline" component={TimelineDemo} />
|
<Route path="/timeline" component={TimelineDemo} />
|
||||||
<Route path="/crud" component={Crud} />
|
<Route path="/crud" component={Crud} />
|
||||||
<Route path="/empty" component={EmptyPage} />
|
<Route path="/empty" component={EmptyPage} />
|
||||||
<Route path="/documentation" component={Documentation} />
|
<Route path="/documentation" component={Documentation} />
|
||||||
<Route path="/administradoresSistema" component={AdministradoresSistema} />
|
<Route
|
||||||
<Route path="/administradoresComunidad" component={AdministradoresComunidad} />
|
path="/administradoresSistema"
|
||||||
|
component={AdministradoresSistema}
|
||||||
|
/>
|
||||||
|
<Route
|
||||||
|
path="/administradoresComunidad"
|
||||||
|
component={AdministradoresComunidad}
|
||||||
|
/>
|
||||||
<Route path="/guardasSeguridad" component={GuardasSeguridad} />
|
<Route path="/guardasSeguridad" component={GuardasSeguridad} />
|
||||||
<Route path="/comunidadesViviendas" component={Communities} />
|
<Route path="/comunidadesViviendas" component={Communities} />
|
||||||
<Route path="/inquilinos" component={Inquilinos} />
|
<Route path="/inquilinos" component={Inquilinos} />
|
||||||
|
@ -336,17 +417,27 @@ const App = () => {
|
||||||
<AppFooter layoutColorMode={layoutColorMode} />
|
<AppFooter layoutColorMode={layoutColorMode} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<AppConfig rippleEffect={ripple} onRippleEffect={onRipple} inputStyle={inputStyle} onInputStyleChange={onInputStyleChange}
|
<AppConfig
|
||||||
layoutMode={layoutMode} onLayoutModeChange={onLayoutModeChange} layoutColorMode={layoutColorMode} onColorModeChange={onColorModeChange} />
|
rippleEffect={ripple}
|
||||||
|
onRippleEffect={onRipple}
|
||||||
|
inputStyle={inputStyle}
|
||||||
|
onInputStyleChange={onInputStyleChange}
|
||||||
|
layoutMode={layoutMode}
|
||||||
|
onLayoutModeChange={onLayoutModeChange}
|
||||||
|
layoutColorMode={layoutColorMode}
|
||||||
|
onColorModeChange={onColorModeChange}
|
||||||
|
/>
|
||||||
|
|
||||||
<CSSTransition classNames="layout-mask" timeout={{ enter: 200, exit: 200 }} in={mobileMenuActive} unmountOnExit>
|
<CSSTransition
|
||||||
|
classNames="layout-mask"
|
||||||
|
timeout={{ enter: 200, exit: 200 }}
|
||||||
|
in={mobileMenuActive}
|
||||||
|
unmountOnExit
|
||||||
|
>
|
||||||
<div className="layout-mask p-component-overlay"></div>
|
<div className="layout-mask p-component-overlay"></div>
|
||||||
</CSSTransition>
|
</CSSTransition>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
};
|
||||||
}
|
|
||||||
|
|
||||||
export default App;
|
export default App;
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
|
|
|
@ -2,10 +2,9 @@ import React, { useCallback, useEffect, useRef, useState } from 'react';
|
||||||
import { RadioButton } from 'primereact/radiobutton';
|
import { RadioButton } from 'primereact/radiobutton';
|
||||||
import { InputSwitch } from 'primereact/inputswitch';
|
import { InputSwitch } from 'primereact/inputswitch';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import { Button } from "primereact/button";
|
import { Button } from 'primereact/button';
|
||||||
|
|
||||||
export const AppConfig = (props) => {
|
export const AppConfig = (props) => {
|
||||||
|
|
||||||
const [active, setActive] = useState(false);
|
const [active, setActive] = useState(false);
|
||||||
const [scale, setScale] = useState(14);
|
const [scale, setScale] = useState(14);
|
||||||
const [scales] = useState([12, 13, 14, 15, 16]);
|
const [scales] = useState([12, 13, 14, 15, 16]);
|
||||||
|
@ -20,11 +19,14 @@ export const AppConfig = (props) => {
|
||||||
}
|
}
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const hideConfigurator = useCallback((event) => {
|
const hideConfigurator = useCallback(
|
||||||
|
(event) => {
|
||||||
setActive(false);
|
setActive(false);
|
||||||
unbindOutsideClickListener();
|
unbindOutsideClickListener();
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}, [unbindOutsideClickListener]);
|
},
|
||||||
|
[unbindOutsideClickListener],
|
||||||
|
);
|
||||||
|
|
||||||
const bindOutsideClickListener = useCallback(() => {
|
const bindOutsideClickListener = useCallback(() => {
|
||||||
if (!outsideClickListener.current) {
|
if (!outsideClickListener.current) {
|
||||||
|
@ -39,36 +41,38 @@ export const AppConfig = (props) => {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (active) {
|
if (active) {
|
||||||
bindOutsideClickListener()
|
bindOutsideClickListener();
|
||||||
}
|
} else {
|
||||||
else {
|
unbindOutsideClickListener();
|
||||||
unbindOutsideClickListener()
|
|
||||||
}
|
}
|
||||||
}, [active, bindOutsideClickListener, unbindOutsideClickListener]);
|
}, [active, bindOutsideClickListener, unbindOutsideClickListener]);
|
||||||
|
|
||||||
const isOutsideClicked = (event) => {
|
const isOutsideClicked = (event) => {
|
||||||
return !(config.current.isSameNode(event.target) || config.current.contains(event.target));
|
return !(
|
||||||
}
|
config.current.isSameNode(event.target) ||
|
||||||
|
config.current.contains(event.target)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
const decrementScale = () => {
|
const decrementScale = () => {
|
||||||
setScale((prevState) => --prevState);
|
setScale((prevState) => --prevState);
|
||||||
}
|
};
|
||||||
|
|
||||||
const incrementScale = () => {
|
const incrementScale = () => {
|
||||||
setScale((prevState) => ++prevState);
|
setScale((prevState) => ++prevState);
|
||||||
}
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
document.documentElement.style.fontSize = scale + 'px';
|
document.documentElement.style.fontSize = scale + 'px';
|
||||||
}, [scale])
|
}, [scale]);
|
||||||
|
|
||||||
const toggleConfigurator = (event) => {
|
const toggleConfigurator = (event) => {
|
||||||
setActive(prevState => !prevState);
|
setActive((prevState) => !prevState);
|
||||||
}
|
};
|
||||||
|
|
||||||
const configClassName = classNames('layout-config', {
|
const configClassName = classNames('layout-config', {
|
||||||
'layout-config-active': active
|
'layout-config-active': active,
|
||||||
})
|
});
|
||||||
|
|
||||||
const replaceLink = useCallback((linkElement, href, callback) => {
|
const replaceLink = useCallback((linkElement, href, callback) => {
|
||||||
if (isIE()) {
|
if (isIE()) {
|
||||||
|
@ -77,15 +81,17 @@ export const AppConfig = (props) => {
|
||||||
if (callback) {
|
if (callback) {
|
||||||
callback();
|
callback();
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
const id = linkElement.getAttribute('id');
|
const id = linkElement.getAttribute('id');
|
||||||
const cloneLinkElement = linkElement.cloneNode(true);
|
const cloneLinkElement = linkElement.cloneNode(true);
|
||||||
|
|
||||||
cloneLinkElement.setAttribute('href', href);
|
cloneLinkElement.setAttribute('href', href);
|
||||||
cloneLinkElement.setAttribute('id', id + '-clone');
|
cloneLinkElement.setAttribute('id', id + '-clone');
|
||||||
|
|
||||||
linkElement.parentNode.insertBefore(cloneLinkElement, linkElement.nextSibling);
|
linkElement.parentNode.insertBefore(
|
||||||
|
cloneLinkElement,
|
||||||
|
linkElement.nextSibling,
|
||||||
|
);
|
||||||
|
|
||||||
cloneLinkElement.addEventListener('load', () => {
|
cloneLinkElement.addEventListener('load', () => {
|
||||||
linkElement.remove();
|
linkElement.remove();
|
||||||
|
@ -96,66 +102,115 @@ export const AppConfig = (props) => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}, [])
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
let themeElement = document.getElementById('theme-link');
|
let themeElement = document.getElementById('theme-link');
|
||||||
const themeHref = 'assets/themes/' + theme + '/theme.css';
|
const themeHref = 'assets/themes/' + theme + '/theme.css';
|
||||||
replaceLink(themeElement, themeHref);
|
replaceLink(themeElement, themeHref);
|
||||||
|
}, [theme, replaceLink]);
|
||||||
}, [theme, replaceLink])
|
|
||||||
|
|
||||||
const isIE = () => {
|
const isIE = () => {
|
||||||
return /(MSIE|Trident\/|Edge\/)/i.test(window.navigator.userAgent)
|
return /(MSIE|Trident\/|Edge\/)/i.test(window.navigator.userAgent);
|
||||||
}
|
};
|
||||||
|
|
||||||
const changeTheme = (e, theme, scheme) => {
|
const changeTheme = (e, theme, scheme) => {
|
||||||
props.onColorModeChange(scheme);
|
props.onColorModeChange(scheme);
|
||||||
setTheme(theme);
|
setTheme(theme);
|
||||||
}
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div ref={config} className={configClassName} id={"layout-config"}>
|
<div ref={config} className={configClassName} id={'layout-config'}>
|
||||||
<button className="layout-config-button p-link" id="layout-config-button" onClick={toggleConfigurator}>
|
<button
|
||||||
|
className="layout-config-button p-link"
|
||||||
|
id="layout-config-button"
|
||||||
|
onClick={toggleConfigurator}
|
||||||
|
>
|
||||||
<i className="pi pi-cog"></i>
|
<i className="pi pi-cog"></i>
|
||||||
</button>
|
</button>
|
||||||
<Button className="p-button-danger layout-config-close p-button-rounded p-button-text" icon="pi pi-times" onClick={hideConfigurator} />
|
<Button
|
||||||
|
className="p-button-danger layout-config-close p-button-rounded p-button-text"
|
||||||
|
icon="pi pi-times"
|
||||||
|
onClick={hideConfigurator}
|
||||||
|
/>
|
||||||
|
|
||||||
<div className="layout-config-content">
|
<div className="layout-config-content">
|
||||||
<h5 className="mt-0">Component Scale</h5>
|
<h5 className="mt-0">Component Scale</h5>
|
||||||
<div className="config-scale">
|
<div className="config-scale">
|
||||||
<Button icon="pi pi-minus" onClick={decrementScale} className="p-button-text" disabled={scale === scales[0]} />
|
<Button
|
||||||
{
|
icon="pi pi-minus"
|
||||||
scales.map((item) => {
|
onClick={decrementScale}
|
||||||
return <i className={classNames('pi pi-circle-on', { 'scale-active': item === scale })} key={item} />
|
className="p-button-text"
|
||||||
})
|
disabled={scale === scales[0]}
|
||||||
}
|
/>
|
||||||
<Button icon="pi pi-plus" onClick={incrementScale} className="p-button-text" disabled={scale === scales[scales.length - 1]} />
|
{scales.map((item) => {
|
||||||
|
return (
|
||||||
|
<i
|
||||||
|
className={classNames('pi pi-circle-on', {
|
||||||
|
'scale-active': item === scale,
|
||||||
|
})}
|
||||||
|
key={item}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
<Button
|
||||||
|
icon="pi pi-plus"
|
||||||
|
onClick={incrementScale}
|
||||||
|
className="p-button-text"
|
||||||
|
disabled={scale === scales[scales.length - 1]}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h5>Input Style</h5>
|
<h5>Input Style</h5>
|
||||||
<div className="p-formgroup-inline">
|
<div className="p-formgroup-inline">
|
||||||
<div className="field-radiobutton">
|
<div className="field-radiobutton">
|
||||||
<RadioButton inputId="input_outlined" name="inputstyle" value="outlined" onChange={(e) => props.onInputStyleChange(e.value)} checked={props.inputStyle === 'outlined'} />
|
<RadioButton
|
||||||
|
inputId="input_outlined"
|
||||||
|
name="inputstyle"
|
||||||
|
value="outlined"
|
||||||
|
onChange={(e) => props.onInputStyleChange(e.value)}
|
||||||
|
checked={props.inputStyle === 'outlined'}
|
||||||
|
/>
|
||||||
<label htmlFor="input_outlined">Outlined</label>
|
<label htmlFor="input_outlined">Outlined</label>
|
||||||
</div>
|
</div>
|
||||||
<div className="field-radiobutton">
|
<div className="field-radiobutton">
|
||||||
<RadioButton inputId="input_filled" name="inputstyle" value="filled" onChange={(e) => props.onInputStyleChange(e.value)} checked={props.inputStyle === 'filled'} />
|
<RadioButton
|
||||||
|
inputId="input_filled"
|
||||||
|
name="inputstyle"
|
||||||
|
value="filled"
|
||||||
|
onChange={(e) => props.onInputStyleChange(e.value)}
|
||||||
|
checked={props.inputStyle === 'filled'}
|
||||||
|
/>
|
||||||
<label htmlFor="input_filled">Filled</label>
|
<label htmlFor="input_filled">Filled</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h5>Ripple Effect</h5>
|
<h5>Ripple Effect</h5>
|
||||||
<InputSwitch checked={props.rippleEffect} onChange={props.onRippleEffect} />
|
<InputSwitch
|
||||||
|
checked={props.rippleEffect}
|
||||||
|
onChange={props.onRippleEffect}
|
||||||
|
/>
|
||||||
|
|
||||||
<h5>Menu Type</h5>
|
<h5>Menu Type</h5>
|
||||||
<div className="p-formgroup-inline">
|
<div className="p-formgroup-inline">
|
||||||
<div className="field-radiobutton">
|
<div className="field-radiobutton">
|
||||||
<RadioButton inputId="static" name="layoutMode" value="static" onChange={(e) => props.onLayoutModeChange(e.value)} checked={props.layoutMode === 'static'} />
|
<RadioButton
|
||||||
|
inputId="static"
|
||||||
|
name="layoutMode"
|
||||||
|
value="static"
|
||||||
|
onChange={(e) => props.onLayoutModeChange(e.value)}
|
||||||
|
checked={props.layoutMode === 'static'}
|
||||||
|
/>
|
||||||
<label htmlFor="static">Static</label>
|
<label htmlFor="static">Static</label>
|
||||||
</div>
|
</div>
|
||||||
<div className="field-radiobutton">
|
<div className="field-radiobutton">
|
||||||
<RadioButton inputId="overlay" name="layoutMode" value="overlay" onChange={(e) => props.onLayoutModeChange(e.value)} checked={props.layoutMode === 'overlay'} />
|
<RadioButton
|
||||||
|
inputId="overlay"
|
||||||
|
name="layoutMode"
|
||||||
|
value="overlay"
|
||||||
|
onChange={(e) => props.onLayoutModeChange(e.value)}
|
||||||
|
checked={props.layoutMode === 'overlay'}
|
||||||
|
/>
|
||||||
<label htmlFor="overlay">Overlay</label>
|
<label htmlFor="overlay">Overlay</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -164,23 +219,49 @@ export const AppConfig = (props) => {
|
||||||
<h6 className="mt-0">Bootstrap</h6>
|
<h6 className="mt-0">Bootstrap</h6>
|
||||||
<div className="grid free-themes">
|
<div className="grid free-themes">
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'bootstrap4-light-blue', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/bootstrap4-light-blue.svg" alt="Bootstrap Light Blue" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'bootstrap4-light-blue', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/bootstrap4-light-blue.svg"
|
||||||
|
alt="Bootstrap Light Blue"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'bootstrap4-light-purple', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/bootstrap4-light-purple.svg" alt="Bootstrap Light Purple" />
|
className="p-link"
|
||||||
|
onClick={(e) =>
|
||||||
|
changeTheme(e, 'bootstrap4-light-purple', 'light')
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/bootstrap4-light-purple.svg"
|
||||||
|
alt="Bootstrap Light Purple"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'bootstrap4-dark-blue', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/bootstrap4-dark-blue.svg" alt="Bootstrap Dark Blue" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'bootstrap4-dark-blue', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/bootstrap4-dark-blue.svg"
|
||||||
|
alt="Bootstrap Dark Blue"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'bootstrap4-dark-purple', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/bootstrap4-dark-purple.svg" alt="Bootstrap Dark Purple" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'bootstrap4-dark-purple', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/bootstrap4-dark-purple.svg"
|
||||||
|
alt="Bootstrap Dark Purple"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -188,28 +269,58 @@ export const AppConfig = (props) => {
|
||||||
<h6>Material Design</h6>
|
<h6>Material Design</h6>
|
||||||
<div className="grid free-themes">
|
<div className="grid free-themes">
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'md-light-indigo', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/md-light-indigo.svg" alt="Material Light Indigo" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'md-light-indigo', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/md-light-indigo.svg"
|
||||||
|
alt="Material Light Indigo"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'md-light-indigo', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/md-light-indigo.svg" alt="Material Light Indigo" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'md-light-indigo', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/md-light-indigo.svg"
|
||||||
|
alt="Material Light Indigo"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'md-light-deeppurple', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/md-light-deeppurple.svg" alt="Material Light DeepPurple" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'md-light-deeppurple', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/md-light-deeppurple.svg"
|
||||||
|
alt="Material Light DeepPurple"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'md-dark-indigo', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/md-dark-indigo.svg" alt="Material Dark Indigo" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'md-dark-indigo', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/md-dark-indigo.svg"
|
||||||
|
alt="Material Dark Indigo"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'md-dark-deeppurple', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/md-dark-deeppurple.svg" alt="Material Dark DeepPurple" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'md-dark-deeppurple', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/md-dark-deeppurple.svg"
|
||||||
|
alt="Material Dark DeepPurple"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -217,23 +328,47 @@ export const AppConfig = (props) => {
|
||||||
<h6>Material Design Compact</h6>
|
<h6>Material Design Compact</h6>
|
||||||
<div className="grid free-themes">
|
<div className="grid free-themes">
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'mdc-light-indigo', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/md-light-indigo.svg" alt="Material Light Indigo" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'mdc-light-indigo', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/md-light-indigo.svg"
|
||||||
|
alt="Material Light Indigo"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'mdc-light-deeppurple', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/md-light-deeppurple.svg" alt="Material Light DeepPurple" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'mdc-light-deeppurple', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/md-light-deeppurple.svg"
|
||||||
|
alt="Material Light DeepPurple"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'mdc-dark-indigo', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/md-dark-indigo.svg" alt="Material Dark Indigo" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'mdc-dark-indigo', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/md-dark-indigo.svg"
|
||||||
|
alt="Material Dark Indigo"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'mdc-dark-deeppurple', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/md-dark-deeppurple.svg" alt="Material Dark DeepPurple" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'mdc-dark-deeppurple', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/md-dark-deeppurple.svg"
|
||||||
|
alt="Material Dark DeepPurple"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -241,8 +376,14 @@ export const AppConfig = (props) => {
|
||||||
<h6>Tailwind</h6>
|
<h6>Tailwind</h6>
|
||||||
<div className="grid free-themes">
|
<div className="grid free-themes">
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'tailwind-light', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/tailwind-light.png" alt="Tailwind Light" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'tailwind-light', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/tailwind-light.png"
|
||||||
|
alt="Tailwind Light"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -250,8 +391,14 @@ export const AppConfig = (props) => {
|
||||||
<h6>Fluent UI</h6>
|
<h6>Fluent UI</h6>
|
||||||
<div className="grid free-themes">
|
<div className="grid free-themes">
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'fluent-light', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/fluent-light.png" alt="Fluent Light" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'fluent-light', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/fluent-light.png"
|
||||||
|
alt="Fluent Light"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -259,48 +406,102 @@ export const AppConfig = (props) => {
|
||||||
<h6>PrimeOne Design - 2022</h6>
|
<h6>PrimeOne Design - 2022</h6>
|
||||||
<div className="grid free-themes">
|
<div className="grid free-themes">
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={(e) => changeTheme(e, 'khaki', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/lara-light-indigo.png" alt="Khaki" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'khaki', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/lara-light-indigo.png"
|
||||||
|
alt="Khaki"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={(e) => changeTheme(e, 'lara-light-indigo', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/lara-light-indigo.png" alt="Lara Light Indigo" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'lara-light-indigo', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/lara-light-indigo.png"
|
||||||
|
alt="Lara Light Indigo"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={(e) => changeTheme(e, 'lara-light-blue', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/lara-light-blue.png" alt="Lara Light Blue" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'lara-light-blue', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/lara-light-blue.png"
|
||||||
|
alt="Lara Light Blue"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={(e) => changeTheme(e, 'lara-light-purple', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/lara-light-purple.png" alt="Lara Light Purple" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'lara-light-purple', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/lara-light-purple.png"
|
||||||
|
alt="Lara Light Purple"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={(e) => changeTheme(e, 'lara-light-teal', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/lara-light-teal.png" alt="Lara Light Teal" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'lara-light-teal', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/lara-light-teal.png"
|
||||||
|
alt="Lara Light Teal"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={(e) => changeTheme(e, 'lara-dark-indigo', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/lara-dark-indigo.png" alt="Lara Dark Indigo" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'lara-dark-indigo', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/lara-dark-indigo.png"
|
||||||
|
alt="Lara Dark Indigo"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={(e) => changeTheme(e, 'lara-dark-blue', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/lara-dark-blue.png" alt="Lara Dark Blue" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'lara-dark-blue', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/lara-dark-blue.png"
|
||||||
|
alt="Lara Dark Blue"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={(e) => changeTheme(e, 'lara-dark-purple', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/lara-dark-purple.png" alt="Lara Dark Purple" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'lara-dark-purple', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/lara-dark-purple.png"
|
||||||
|
alt="Lara Dark Purple"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={(e) => changeTheme(e, 'lara-dark-teal', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/lara-dark-teal.png" alt="Lara Dark Teal" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'lara-dark-teal', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/lara-dark-teal.png"
|
||||||
|
alt="Lara Dark Teal"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -308,68 +509,139 @@ export const AppConfig = (props) => {
|
||||||
<h6>PrimeOne Design - 2021</h6>
|
<h6>PrimeOne Design - 2021</h6>
|
||||||
<div className="grid free-themes">
|
<div className="grid free-themes">
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'saga-blue', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/saga-blue.png" alt="Saga Blue" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'saga-blue', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/saga-blue.png"
|
||||||
|
alt="Saga Blue"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'saga-green', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/saga-green.png" alt="Saga Green" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'saga-green', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/saga-green.png"
|
||||||
|
alt="Saga Green"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'saga-orange', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/saga-orange.png" alt="Saga Orange" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'saga-orange', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/saga-orange.png"
|
||||||
|
alt="Saga Orange"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'saga-purple', 'light')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/saga-purple.png" alt="Saga Purple" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'saga-purple', 'light')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/saga-purple.png"
|
||||||
|
alt="Saga Purple"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'vela-blue', 'dim')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/vela-blue.png" alt="Vela Blue" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'vela-blue', 'dim')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/vela-blue.png"
|
||||||
|
alt="Vela Blue"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'vela-green', 'dim')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/vela-green.png" alt="Vela Green" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'vela-green', 'dim')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/vela-green.png"
|
||||||
|
alt="Vela Green"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'vela-orange', 'dim')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/vela-orange.png" alt="Vela Orange" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'vela-orange', 'dim')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/vela-orange.png"
|
||||||
|
alt="Vela Orange"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'vela-purple', 'dim')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/vela-purple.png" alt="Vela Purple" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'vela-purple', 'dim')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/vela-purple.png"
|
||||||
|
alt="Vela Purple"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'arya-blue', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/arya-blue.png" alt="Arya Blue" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'arya-blue', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/arya-blue.png"
|
||||||
|
alt="Arya Blue"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'arya-green', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/arya-green.png" alt="Arya Green" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'arya-green', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/arya-green.png"
|
||||||
|
alt="Arya Green"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'arya-orange', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/arya-orange.png" alt="Arya Orange" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'arya-orange', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/arya-orange.png"
|
||||||
|
alt="Arya Orange"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-3 text-center">
|
<div className="col-3 text-center">
|
||||||
<button className="p-link" onClick={e => changeTheme(e, 'arya-purple', 'dark')}>
|
<button
|
||||||
<img src="assets/layout/images/themes/arya-purple.png" alt="Arya Purple" />
|
className="p-link"
|
||||||
|
onClick={(e) => changeTheme(e, 'arya-purple', 'dark')}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="assets/layout/images/themes/arya-purple.png"
|
||||||
|
alt="Arya Purple"
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
|
@ -1,12 +1,20 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
export const AppFooter = (props) => {
|
export const AppFooter = (props) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="layout-footer">
|
<div className="layout-footer">
|
||||||
<img src={props.layoutColorMode === 'light' ? 'assets/layout/images/logo-dark.svg' : 'assets/layout/images/logo-white.svg'} alt="Logo" height="20" className="mr-2" />
|
<img
|
||||||
|
src={
|
||||||
|
props.layoutColorMode === 'light'
|
||||||
|
? 'assets/layout/images/logo-dark.svg'
|
||||||
|
: 'assets/layout/images/logo-white.svg'
|
||||||
|
}
|
||||||
|
alt="Logo"
|
||||||
|
height="20"
|
||||||
|
className="mr-2"
|
||||||
|
/>
|
||||||
by
|
by
|
||||||
<span className="font-medium ml-2">PrimeReact</span>
|
<span className="font-medium ml-2">PrimeReact</span>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
|
@ -2,12 +2,11 @@ import React, { useState } from 'react';
|
||||||
import { NavLink } from 'react-router-dom';
|
import { NavLink } from 'react-router-dom';
|
||||||
import { CSSTransition } from 'react-transition-group';
|
import { CSSTransition } from 'react-transition-group';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import {Ripple} from "primereact/ripple";
|
import { Ripple } from 'primereact/ripple';
|
||||||
import { Badge } from 'primereact/badge';
|
import { Badge } from 'primereact/badge';
|
||||||
|
|
||||||
const AppSubmenu = (props) => {
|
const AppSubmenu = (props) => {
|
||||||
|
const [activeIndex, setActiveIndex] = useState(null);
|
||||||
const [activeIndex, setActiveIndex] = useState(null)
|
|
||||||
|
|
||||||
const onMenuItemClick = (event, item, index) => {
|
const onMenuItemClick = (event, item, index) => {
|
||||||
//avoid processing disabled items
|
//avoid processing disabled items
|
||||||
|
@ -21,29 +20,29 @@ const AppSubmenu = (props) => {
|
||||||
item.command({ originalEvent: event, item: item });
|
item.command({ originalEvent: event, item: item });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (index === activeIndex)
|
if (index === activeIndex) setActiveIndex(null);
|
||||||
setActiveIndex(null);
|
else setActiveIndex(index);
|
||||||
else
|
|
||||||
setActiveIndex(index);
|
|
||||||
|
|
||||||
if (props.onMenuItemClick) {
|
if (props.onMenuItemClick) {
|
||||||
props.onMenuItemClick({
|
props.onMenuItemClick({
|
||||||
originalEvent: event,
|
originalEvent: event,
|
||||||
item: item
|
item: item,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
const onKeyDown = (event) => {
|
const onKeyDown = (event) => {
|
||||||
if (event.code === 'Enter' || event.code === 'Space') {
|
if (event.code === 'Enter' || event.code === 'Space') {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
event.target.click();
|
event.target.click();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
const renderLinkContent = (item) => {
|
const renderLinkContent = (item) => {
|
||||||
let submenuIcon = item.items && <i className="pi pi-fw pi-angle-down menuitem-toggle-icon"></i>;
|
let submenuIcon = item.items && (
|
||||||
let badge = item.badge && <Badge value={item.badge} />
|
<i className="pi pi-fw pi-angle-down menuitem-toggle-icon"></i>
|
||||||
|
);
|
||||||
|
let badge = item.badge && <Badge value={item.badge} />;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
|
@ -54,65 +53,124 @@ const AppSubmenu = (props) => {
|
||||||
<Ripple />
|
<Ripple />
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
const renderLink = (item, i) => {
|
const renderLink = (item, i) => {
|
||||||
let content = renderLinkContent(item);
|
let content = renderLinkContent(item);
|
||||||
|
|
||||||
if (item.to) {
|
if (item.to) {
|
||||||
return (
|
return (
|
||||||
<NavLink aria-label={item.label} onKeyDown={onKeyDown} role="menuitem" className="p-ripple" activeClassName="router-link-active router-link-exact-active" to={item.to} onClick={(e) => onMenuItemClick(e, item, i)} exact target={item.target}>
|
<NavLink
|
||||||
|
aria-label={item.label}
|
||||||
|
onKeyDown={onKeyDown}
|
||||||
|
role="menuitem"
|
||||||
|
className="p-ripple"
|
||||||
|
activeClassName="router-link-active router-link-exact-active"
|
||||||
|
to={item.to}
|
||||||
|
onClick={(e) => onMenuItemClick(e, item, i)}
|
||||||
|
exact
|
||||||
|
target={item.target}
|
||||||
|
>
|
||||||
{content}
|
{content}
|
||||||
</NavLink>
|
</NavLink>
|
||||||
)
|
);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
return (
|
return (
|
||||||
<a tabIndex="0" aria-label={item.label} onKeyDown={onKeyDown} role="menuitem" href={item.url} className="p-ripple" onClick={(e) => onMenuItemClick(e, item, i)} target={item.target}>
|
<a
|
||||||
|
tabIndex="0"
|
||||||
|
aria-label={item.label}
|
||||||
|
onKeyDown={onKeyDown}
|
||||||
|
role="menuitem"
|
||||||
|
href={item.url}
|
||||||
|
className="p-ripple"
|
||||||
|
onClick={(e) => onMenuItemClick(e, item, i)}
|
||||||
|
target={item.target}
|
||||||
|
>
|
||||||
{content}
|
{content}
|
||||||
</a>
|
</a>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
let items = props.items && props.items.map((item, i) => {
|
let items =
|
||||||
|
props.items &&
|
||||||
|
props.items.map((item, i) => {
|
||||||
let active = activeIndex === i;
|
let active = activeIndex === i;
|
||||||
let styleClass = classNames(item.badgeStyleClass, {'layout-menuitem-category': props.root, 'active-menuitem': active && !item.to });
|
let styleClass = classNames(item.badgeStyleClass, {
|
||||||
|
'layout-menuitem-category': props.root,
|
||||||
|
'active-menuitem': active && !item.to,
|
||||||
|
});
|
||||||
|
|
||||||
if (props.root) {
|
if (props.root) {
|
||||||
return (
|
return (
|
||||||
<li className={styleClass} key={i} role="none">
|
<li className={styleClass} key={i} role="none">
|
||||||
{props.root === true && <React.Fragment>
|
{props.root === true && (
|
||||||
<div className="layout-menuitem-root-text" aria-label={item.label}>{item.label}</div>
|
<React.Fragment>
|
||||||
<AppSubmenu items={item.items} onMenuItemClick={props.onMenuItemClick} />
|
<div
|
||||||
</React.Fragment>}
|
className="layout-menuitem-root-text"
|
||||||
|
aria-label={item.label}
|
||||||
|
>
|
||||||
|
{item.label}
|
||||||
|
</div>
|
||||||
|
<AppSubmenu
|
||||||
|
items={item.items}
|
||||||
|
onMenuItemClick={props.onMenuItemClick}
|
||||||
|
/>
|
||||||
|
</React.Fragment>
|
||||||
|
)}
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
return (
|
return (
|
||||||
<li className={styleClass} key={i} role="none">
|
<li className={styleClass} key={i} role="none">
|
||||||
{renderLink(item, i)}
|
{renderLink(item, i)}
|
||||||
<CSSTransition classNames="layout-submenu-wrapper" timeout={{ enter: 1000, exit: 450 }} in={active} unmountOnExit>
|
<CSSTransition
|
||||||
<AppSubmenu items={item.items} onMenuItemClick={props.onMenuItemClick} />
|
classNames="layout-submenu-wrapper"
|
||||||
|
timeout={{ enter: 1000, exit: 450 }}
|
||||||
|
in={active}
|
||||||
|
unmountOnExit
|
||||||
|
>
|
||||||
|
<AppSubmenu
|
||||||
|
items={item.items}
|
||||||
|
onMenuItemClick={props.onMenuItemClick}
|
||||||
|
/>
|
||||||
</CSSTransition>
|
</CSSTransition>
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
return items ? <ul className={props.className} role="menu">{items}</ul> : null;
|
return items ? (
|
||||||
}
|
<ul className={props.className} role="menu">
|
||||||
|
{items}
|
||||||
|
</ul>
|
||||||
|
) : null;
|
||||||
|
};
|
||||||
|
|
||||||
export const AppMenu = (props) => {
|
export const AppMenu = (props) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="layout-menu-container">
|
<div className="layout-menu-container">
|
||||||
<AppSubmenu items={props.model} className="layout-menu" onMenuItemClick={props.onMenuItemClick} root={true} role="menu" />
|
<AppSubmenu
|
||||||
<a href="https://www.primefaces.org/primeblocks-react" className="block mt-3">
|
items={props.model}
|
||||||
<img alt="primeblocks" className="w-full"
|
className="layout-menu"
|
||||||
src={props.layoutColorMode === 'light' ? 'assets/layout/images/banner-primeblocks.png' : 'assets/layout/images/banner-primeblocks-dark.png'}/>
|
onMenuItemClick={props.onMenuItemClick}
|
||||||
|
root={true}
|
||||||
|
role="menu"
|
||||||
|
/>
|
||||||
|
<a
|
||||||
|
href="https://www.primefaces.org/primeblocks-react"
|
||||||
|
className="block mt-3"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
alt="primeblocks"
|
||||||
|
className="w-full"
|
||||||
|
src={
|
||||||
|
props.layoutColorMode === 'light'
|
||||||
|
? 'assets/layout/images/banner-primeblocks.png'
|
||||||
|
: 'assets/layout/images/banner-primeblocks-dark.png'
|
||||||
|
}
|
||||||
|
/>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
|
@ -3,7 +3,6 @@ import { Link } from 'react-router-dom';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
|
|
||||||
export const AppTopbar = (props) => {
|
export const AppTopbar = (props) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="layout-topbar">
|
<div className="layout-topbar">
|
||||||
<Link to="/" className="layout-topbar-logo">
|
<Link to="/" className="layout-topbar-logo">
|
||||||
|
@ -15,7 +14,10 @@ export const AppTopbar = (props) => {
|
||||||
<i className="pi pi-bars"/>
|
<i className="pi pi-bars"/>
|
||||||
</button> */}
|
</button> */}
|
||||||
|
|
||||||
<button type="button" className="p-link layout-topbar-menu-button layout-topbar-button" >
|
<button
|
||||||
|
type="button"
|
||||||
|
className="p-link layout-topbar-menu-button layout-topbar-button"
|
||||||
|
>
|
||||||
<i className="pi pi-ellipsis-v" />
|
<i className="pi pi-ellipsis-v" />
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
|
@ -41,4 +43,4 @@ export const AppTopbar = (props) => {
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
|
@ -3,13 +3,12 @@ import { classNames } from 'primereact/utils';
|
||||||
import { CodeHighlight } from './templates/CodeHighlight';
|
import { CodeHighlight } from './templates/CodeHighlight';
|
||||||
|
|
||||||
const BlockViewer = (props) => {
|
const BlockViewer = (props) => {
|
||||||
|
const [blockView, setBlockView] = useState('PREVIEW');
|
||||||
const [blockView, setBlockView] = useState('PREVIEW')
|
|
||||||
|
|
||||||
const copyCode = async (event) => {
|
const copyCode = async (event) => {
|
||||||
await navigator.clipboard.writeText(props.code);
|
await navigator.clipboard.writeText(props.code);
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="block-viewer">
|
<div className="block-viewer">
|
||||||
|
@ -20,30 +19,47 @@ const BlockViewer = (props) => {
|
||||||
{props.new && <span className="badge-new">New</span>}
|
{props.new && <span className="badge-new">New</span>}
|
||||||
</span>
|
</span>
|
||||||
<div className="block-actions">
|
<div className="block-actions">
|
||||||
<button tabIndex="0" className={classNames('p-link', { 'block-action-active': blockView === 'PREVIEW' })} onClick={() => setBlockView('PREVIEW')}><span>Preview</span></button>
|
<button
|
||||||
<button className={classNames('p-link', { 'block-action-active': blockView === 'CODE' })} onClick={() => setBlockView('CODE')} >
|
tabIndex="0"
|
||||||
|
className={classNames('p-link', {
|
||||||
|
'block-action-active': blockView === 'PREVIEW',
|
||||||
|
})}
|
||||||
|
onClick={() => setBlockView('PREVIEW')}
|
||||||
|
>
|
||||||
|
<span>Preview</span>
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
className={classNames('p-link', {
|
||||||
|
'block-action-active': blockView === 'CODE',
|
||||||
|
})}
|
||||||
|
onClick={() => setBlockView('CODE')}
|
||||||
|
>
|
||||||
<span>Code</span>
|
<span>Code</span>
|
||||||
</button>
|
</button>
|
||||||
<button tabIndex="0" className="p-link block-action-copy" onClick={copyCode}>
|
<button
|
||||||
|
tabIndex="0"
|
||||||
|
className="p-link block-action-copy"
|
||||||
|
onClick={copyCode}
|
||||||
|
>
|
||||||
<i className="pi pi-copy"></i>
|
<i className="pi pi-copy"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="block-content">
|
<div className="block-content">
|
||||||
{blockView === 'PREVIEW' &&
|
{blockView === 'PREVIEW' && (
|
||||||
<div className={props.containerClassName} style={props.previewStyle}>
|
<div
|
||||||
|
className={props.containerClassName}
|
||||||
|
style={props.previewStyle}
|
||||||
|
>
|
||||||
{props.children}
|
{props.children}
|
||||||
</div>}
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
{blockView === 'CODE' &&
|
{blockView === 'CODE' && <CodeHighlight>{props.code}</CodeHighlight>}
|
||||||
<CodeHighlight>
|
|
||||||
{props.code}
|
|
||||||
</CodeHighlight>
|
|
||||||
}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
export default BlockViewer;
|
export default BlockViewer;
|
||||||
|
|
|
@ -2,14 +2,13 @@ import { useEffect } from 'react';
|
||||||
import { useLocation, withRouter } from 'react-router-dom';
|
import { useLocation, withRouter } from 'react-router-dom';
|
||||||
|
|
||||||
const ScrollToTop = (props) => {
|
const ScrollToTop = (props) => {
|
||||||
|
|
||||||
let location = useLocation();
|
let location = useLocation();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
window.scrollTo(0, 0)
|
window.scrollTo(0, 0);
|
||||||
}, [location]);
|
}, [location]);
|
||||||
|
|
||||||
return props.children;
|
return props.children;
|
||||||
}
|
};
|
||||||
|
|
||||||
export default withRouter(ScrollToTop);
|
export default withRouter(ScrollToTop);
|
||||||
|
|
|
@ -2,94 +2,94 @@
|
||||||
.product-badge,
|
.product-badge,
|
||||||
.order-badge {
|
.order-badge {
|
||||||
border-radius: var(--border-radius);
|
border-radius: var(--border-radius);
|
||||||
padding: .25em .5rem;
|
padding: 0.25em 0.5rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
letter-spacing: .3px;
|
letter-spacing: 0.3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.customer-badge {
|
.customer-badge {
|
||||||
&.status-qualified {
|
&.status-qualified {
|
||||||
background: #C8E6C9;
|
background: #c8e6c9;
|
||||||
color: #256029;
|
color: #256029;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.status-unqualified {
|
&.status-unqualified {
|
||||||
background: #FFCDD2;
|
background: #ffcdd2;
|
||||||
color: #C63737;
|
color: #c63737;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.status-negotiation {
|
&.status-negotiation {
|
||||||
background: #FEEDAF;
|
background: #feedaf;
|
||||||
color: #8A5340;
|
color: #8a5340;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.status-new {
|
&.status-new {
|
||||||
background: #B3E5FC;
|
background: #b3e5fc;
|
||||||
color: #23547B;
|
color: #23547b;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.status-renewal {
|
&.status-renewal {
|
||||||
background: #ECCFFF;
|
background: #eccfff;
|
||||||
color: #694382;
|
color: #694382;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.status-proposal {
|
&.status-proposal {
|
||||||
background: #FFD8B2;
|
background: #ffd8b2;
|
||||||
color: #805B36;
|
color: #805b36;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.product-badge {
|
.product-badge {
|
||||||
border-radius: var(--border-radius);
|
border-radius: var(--border-radius);
|
||||||
padding: .25em .5rem;
|
padding: 0.25em 0.5rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
letter-spacing: .3px;
|
letter-spacing: 0.3px;
|
||||||
|
|
||||||
&.status-instock {
|
&.status-instock {
|
||||||
background: #C8E6C9;
|
background: #c8e6c9;
|
||||||
color: #256029;
|
color: #256029;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.status-outofstock {
|
&.status-outofstock {
|
||||||
background: #FFCDD2;
|
background: #ffcdd2;
|
||||||
color: #C63737;
|
color: #c63737;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.status-lowstock {
|
&.status-lowstock {
|
||||||
background: #FEEDAF;
|
background: #feedaf;
|
||||||
color: #8A5340;
|
color: #8a5340;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.order-badge {
|
.order-badge {
|
||||||
border-radius: var(--border-radius);
|
border-radius: var(--border-radius);
|
||||||
padding: .25em .5rem;
|
padding: 0.25em 0.5rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
letter-spacing: .3px;
|
letter-spacing: 0.3px;
|
||||||
|
|
||||||
&.order-delivered {
|
&.order-delivered {
|
||||||
background: #C8E6C9;
|
background: #c8e6c9;
|
||||||
color: #256029;
|
color: #256029;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.order-cancelled {
|
&.order-cancelled {
|
||||||
background: #FFCDD2;
|
background: #ffcdd2;
|
||||||
color: #C63737;
|
color: #c63737;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.order-pending {
|
&.order-pending {
|
||||||
background: #FEEDAF;
|
background: #feedaf;
|
||||||
color: #8A5340;
|
color: #8a5340;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.order-returned {
|
&.order-returned {
|
||||||
background: #ECCFFF;
|
background: #eccfff;
|
||||||
color: #694382;
|
color: #694382;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,12 +21,12 @@
|
||||||
|
|
||||||
.badge-free {
|
.badge-free {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
padding: .25rem .5rem;
|
padding: 0.25rem 0.5rem;
|
||||||
background-color: var(--orange-500);
|
background-color: var(--orange-500);
|
||||||
color: white;
|
color: white;
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: .875rem;
|
font-size: 0.875rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,15 +37,16 @@
|
||||||
user-select: none;
|
user-select: none;
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
|
|
||||||
a,button {
|
a,
|
||||||
|
button {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-right: .75rem;
|
margin-right: 0.75rem;
|
||||||
padding: .5rem 1rem;
|
padding: 0.5rem 1rem;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
transition: background-color .2s;
|
transition: background-color 0.2s;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
|
@ -70,12 +71,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.block-action-disabled {
|
&.block-action-disabled {
|
||||||
opacity: .6;
|
opacity: 0.6;
|
||||||
cursor: auto !important;
|
cursor: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
i {
|
i {
|
||||||
margin-right: .5rem;
|
margin-right: 0.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -90,10 +91,11 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre[class*="language-"] {
|
pre[class*='language-'] {
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
|
|
||||||
&:before, &:after {
|
&:before,
|
||||||
|
&:after {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -109,16 +111,16 @@
|
||||||
.token {
|
.token {
|
||||||
&.tag,
|
&.tag,
|
||||||
&.keyword {
|
&.keyword {
|
||||||
color: #2196F3 !important;
|
color: #2196f3 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.attr-name,
|
&.attr-name,
|
||||||
&.attr-string {
|
&.attr-string {
|
||||||
color: #2196F3 !important;
|
color: #2196f3 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.attr-value {
|
&.attr-value {
|
||||||
color: #4CAF50 !important;
|
color: #4caf50 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.punctuation {
|
&.punctuation {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.docs {
|
.docs {
|
||||||
i:not([class~="pi"]) {
|
i:not([class~='pi']) {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: #2196f3;
|
color: #2196f3;
|
||||||
font-family: Monaco, courier, monospace;
|
font-family: Monaco, courier, monospace;
|
||||||
|
@ -7,7 +7,7 @@
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
padding: 0 4px;
|
padding: 0 4px;
|
||||||
letter-spacing: .5px;
|
letter-spacing: 0.5px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
margin: 0 2px;
|
margin: 0 2px;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
|
@ -17,8 +17,9 @@
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre[class*="language-"] {
|
pre[class*='language-'] {
|
||||||
&:before, &:after {
|
&:before,
|
||||||
|
&:after {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,16 +35,16 @@
|
||||||
.token {
|
.token {
|
||||||
&.tag,
|
&.tag,
|
||||||
&.keyword {
|
&.keyword {
|
||||||
color: #2196F3 !important;
|
color: #2196f3 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.attr-name,
|
&.attr-name,
|
||||||
&.attr-string {
|
&.attr-string {
|
||||||
color: #2196F3 !important;
|
color: #2196f3 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.attr-value {
|
&.attr-value {
|
||||||
color: #4CAF50 !important;
|
color: #4caf50 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.punctuation {
|
&.punctuation {
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
|
|
||||||
.image-text {
|
.image-text {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin-left: .5rem;
|
margin-left: 0.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,4 +1,4 @@
|
||||||
/* General */
|
/* General */
|
||||||
$fontSize: 10px;
|
$fontSize: 10px;
|
||||||
$borderRadius: 12px;
|
$borderRadius: 12px;
|
||||||
$transitionDuration:.2s;
|
$transitionDuration: 0.2s;
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
@import "./_variables";
|
@import './_variables';
|
||||||
@import "./sass/_layout";
|
@import './sass/_layout';
|
||||||
@import "./_overrides";
|
@import './_overrides';
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
transform: translateX(100%);
|
transform: translateX(100%);
|
||||||
transition: transform $transitionDuration;
|
transition: transform $transitionDuration;
|
||||||
backface-visibility: hidden;
|
backface-visibility: hidden;
|
||||||
box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08) !important;
|
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05),
|
||||||
|
0px 1px 4px rgba(0, 0, 0, 0.08) !important;
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
background-color: var(--surface-overlay);
|
background-color: var(--surface-overlay);
|
||||||
border-top-left-radius: 12px;
|
border-top-left-radius: 12px;
|
||||||
|
@ -68,12 +69,12 @@
|
||||||
margin: 1rem 0 2rem 0;
|
margin: 1rem 0 2rem 0;
|
||||||
|
|
||||||
.p-button {
|
.p-button {
|
||||||
margin-right: .5rem;
|
margin-right: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
i {
|
i {
|
||||||
margin-right: .5rem;
|
margin-right: 0.5rem;
|
||||||
font-size: .75rem;
|
font-size: 0.75rem;
|
||||||
color: var(--text-color-secondary);
|
color: var(--text-color-secondary);
|
||||||
|
|
||||||
&.scale-active {
|
&.scale-active {
|
||||||
|
@ -87,7 +88,7 @@
|
||||||
img {
|
img {
|
||||||
width: 2rem;
|
width: 2rem;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
transition: transform .2s;
|
transition: transform 0.2s;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
@ -96,8 +97,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
font-size: .75rem;
|
font-size: 0.75rem;
|
||||||
margin-top: .25rem;
|
margin-top: 0.25rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
@import "./_mixins";
|
@import './_mixins';
|
||||||
@import "./_splash";
|
@import './_splash';
|
||||||
@import "./_main";
|
@import './_main';
|
||||||
@import "./_topbar";
|
@import './_topbar';
|
||||||
@import "./_menu";
|
@import './_menu';
|
||||||
@import "./_config";
|
@import './_config';
|
||||||
@import "./_content";
|
@import './_content';
|
||||||
@import "./_footer";
|
@import './_footer';
|
||||||
@import "./_responsive";
|
@import './_responsive';
|
||||||
@import "./_utils";
|
@import './_utils';
|
||||||
@import "./_typography";
|
@import './_typography';
|
||||||
|
|
|
@ -18,7 +18,8 @@ body {
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
}
|
}
|
||||||
|
|
||||||
a, button {
|
a,
|
||||||
|
button {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: var(--primary-color);
|
color: var(--primary-color);
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,8 @@
|
||||||
background-color: var(--surface-overlay);
|
background-color: var(--surface-overlay);
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08)
|
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05),
|
||||||
|
0px 1px 4px rgba(0, 0, 0, 0.08);
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout-menu {
|
.layout-menu {
|
||||||
|
@ -21,7 +22,7 @@
|
||||||
|
|
||||||
li {
|
li {
|
||||||
&.layout-menuitem-category {
|
&.layout-menuitem-category {
|
||||||
margin-top: .75rem;
|
margin-top: 0.75rem;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
@ -32,8 +33,8 @@
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: var(--surface-900);
|
color: var(--surface-900);
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
margin-bottom: .5rem;
|
margin-bottom: 0.5rem;
|
||||||
font-size: .875rem;
|
font-size: 0.875rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
@ -44,8 +45,8 @@
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
transition: color $transitionDuration;
|
transition: color $transitionDuration;
|
||||||
border-radius: $borderRadius;
|
border-radius: $borderRadius;
|
||||||
padding: .75rem 1rem;
|
padding: 0.75rem 1rem;
|
||||||
transition: background-color .15s;
|
transition: background-color 0.15s;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
margin-left: 0.5rem;
|
margin-left: 0.5rem;
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
@mixin focused() {
|
@mixin focused() {
|
||||||
outline: 0 none;
|
outline: 0 none;
|
||||||
outline-offset: 0;
|
outline-offset: 0;
|
||||||
transition: box-shadow .2s;
|
transition: box-shadow 0.2s;
|
||||||
box-shadow: var(--focus-ring);
|
box-shadow: var(--focus-ring);
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin focused-inset() {
|
@mixin focused-inset() {
|
||||||
outline: 0 none;
|
outline: 0 none;
|
||||||
outline-offset: 0;
|
outline-offset: 0;
|
||||||
transition: box-shadow .2s;
|
transition: box-shadow 0.2s;
|
||||||
box-shadow: inset var(--focus-ring);
|
box-shadow: inset var(--focus-ring);
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,8 @@
|
||||||
left: calc(50vw - 75px);
|
left: calc(50vw - 75px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.preloader-content:before, .preloader-content:after{
|
.preloader-content:before,
|
||||||
|
.preloader-content:after {
|
||||||
content: '';
|
content: '';
|
||||||
border: 1em solid var(--primary-color);
|
border: 1em solid var(--primary-color);
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
|
|
@ -10,7 +10,8 @@
|
||||||
transition: left $transitionDuration;
|
transition: left $transitionDuration;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08);
|
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05),
|
||||||
|
0px 1px 4px rgba(0, 0, 0, 0.08);
|
||||||
|
|
||||||
.layout-topbar-logo {
|
.layout-topbar-logo {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -23,7 +24,7 @@
|
||||||
|
|
||||||
img {
|
img {
|
||||||
height: 2.5rem;
|
height: 2.5rem;
|
||||||
margin-right: .5rem;
|
margin-right: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
|
@ -111,7 +112,8 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background-color: var(--surface-overlay);
|
background-color: var(--surface-overlay);
|
||||||
box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08);
|
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02),
|
||||||
|
0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08);
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
right: 2rem;
|
right: 2rem;
|
||||||
|
@ -122,7 +124,7 @@
|
||||||
animation: scalein 0.15s linear;
|
animation: scalein 0.15s linear;
|
||||||
|
|
||||||
&.layout-topbar-menu-mobile-active {
|
&.layout-topbar-menu-mobile-active {
|
||||||
display: block
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout-topbar-button {
|
.layout-topbar-button {
|
||||||
|
@ -136,7 +138,7 @@
|
||||||
|
|
||||||
i {
|
i {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
margin-right: .5rem;
|
margin-right: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
margin: 1.5rem 0 1rem 0;
|
margin: 1.5rem 0 1rem 0;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
@ -35,8 +40,8 @@ h6 {
|
||||||
}
|
}
|
||||||
|
|
||||||
mark {
|
mark {
|
||||||
background: #FFF8E1;
|
background: #fff8e1;
|
||||||
padding: .25rem .4rem;
|
padding: 0.25rem 0.4rem;
|
||||||
border-radius: $borderRadius;
|
border-radius: $borderRadius;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
@ -44,7 +49,7 @@ mark {
|
||||||
blockquote {
|
blockquote {
|
||||||
margin: 1rem 0;
|
margin: 1rem 0;
|
||||||
padding: 0 2rem;
|
padding: 0 2rem;
|
||||||
border-left: 4px solid #90A4AE;
|
border-left: 4px solid #90a4ae;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue