npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mdias-componentes

v4.6.4

Published

Criação dos projetos em Angular da M Dias Branco

Downloads

423

Readme

Projeto Angular M Dias

Criação dos projetos em Angular da M Dias Branco

Pré requisitos:

  1. Node 10 ou superior
  2. Npm 6 ou superior
  3. Angular 7

Instalação do Angular CLI

npm install -g @angular/cli@7

Criação do projeto Angular

ng new [nome do projeto] --routing --style=scss

Instalação das Dependências

npm i mdias-componentes
npm i --save-dev  [email protected] [email protected] [email protected] [email protected] [email protected]

Configuração dos ambientes do projeto.

Environments

Uma vez criado o projeto, altere o conteúdo dos arquivos environments\environment.ts e environments\environment.prod.ts

environments\environment.ts

Observações

Extremamente importante não colocar Barras no inicio e no fim da URL. para o enviroments de DEV EXEMPLO localhost:8080/meuServidor ---> Sem barras no inicio e no fim OK

Extremamente importante não colocar Barras no fim da URL. para o enviroments de PROD EXEMPLO /meuServidor ---> Sem barras no fim OK

export const environment = {
  production: false,
  NOME_SISTEMA: [nome_sistema],
  URL_SERVIDOR: [url_servidor],
  I18N: 'pt-BR'
};

environments\environment.prod.ts


export const environment = {
  production: true,
  NOME_SISTEMA: [nome_sistema],
  ROTA_INICIO: [rota_inicio],
  URL_SERVIDOR: [url_servidor],
  I18N: 'pt-BR'
};

Configuração do app.module.ts

No arquivo app.module.ts, realize a importação do environment de desenvolvimento, na hora do build, o webpack fará a subistituição para o ambiente de produção.

import { environment as env} from 'src/environments/environment';

Realize também a importação do módulo pricipal do mdias-componentes

import { MDBBootstrap } from 'mdias-componentes';

Nos imports do app.module.ts, informe ao MdbModulo quais as configurações da aplicação.

 declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule
    , AppRoutingModule
    , MDBBootstrap.forRoot(env)
  ],
  bootstrap: [AppComponent]
  , schemas: [
    CUSTOM_ELEMENTS_SCHEMA
  ]

Configuração do app-routing.module.ts

Na importação do módulo principal de rotas, configure a aplicação para usar "#" na url.

  @NgModule({
  imports: [RouterModule.forRoot(routes, {useHash: true})],
  exports: [RouterModule]
})

Configuração do app.component.html

Apague o conteúdo do arquivo app.component.html e adicione o seguinte conteúdo:

<mdb-app
  [mostrarNomeSistema] = [BOOLEAN]
  [logoImg]="[LOGO_CASO_TENHA]">
    <router-outlet></router-outlet>
</mdb-app>

Configuração do style.scss

Faça a importação do tema padrão

@import "../node_modules/mdias-componentes/src/assets/tema/padrao";

Criação da pasta img

  1. Crie a pasta img em assets

  2. Baixe a imagem logo-footer.png e coloque dentro da pasta img

    \\mdbnasff214\mdbcit$\Sistemas\MDIAS-COMPONENTES\logo-footer.png

Criação da pasta fonts

  1. Crie a pasta fonts em assets

  2. Realize o download das fontes no repositório de fontes do google e cole dentro da pasta fonts.

    FjallaOne-Regular.ttf
    material-icon.woff2
    Roboto-Regular.ttf

Gulp

Criar o arquivo gulpfile.js com o seguinte conteúdo e alterar o valor da constante [nomeProjetoFront]

const nomeProjetoFront = "[NOME DO PROJETO]";
const tipoArquivo = ".war";
const nomeDoZip = nomeProjetoFront+tipoArquivo;

const gulp = require('gulp');
const concat = require('gulp-concat');
const zip = require('gulp-zip');
const del = require('del');
const replace = require('gulp-string-replace');

gulp.task('war', function() {
  gulp.src(["./dist/index.html","./dist/**"])
  .pipe(zip(nomeDoZip))
  .pipe(gulp.dest("./build"));
});

gulp.task('index', function() {
  gulp.src(['./dist/index.html'])
    .pipe(replace(new RegExp('<base href="/">', 'g'), '<base href="/'+ nomeProjetoFront +'/">'))
    .pipe(concat('index.html'))
    .pipe(gulp.dest('./dist'));
});

gulp.task('clean', function() {
  del.sync(['./dist/**']);
});

Configuração do angular.json

No angular.josn, procure pelas configurações de build de produção e atualize as [optimization e buildOptimizer ] propriedades conforme o exemplo:

"configurations": 
{
  "production": {
    "fileReplacements": [
      {
        "replace": "src/environments/environment.ts",
        "with": "src/environments/environment.prod.ts"
      }
    ],
    "optimization": true,
    "outputHashing": "all",
    "sourceMap": true,
    "extractCss": true,
    "namedChunks": true,
    "extractLicenses": true,
    "vendorChunk": true,
    "aot": false,
    "buildOptimizer": false
  }
}

Configure a chave "outputPath" para "dist"

    "outputPath": "dist",

Configuração dos cripts no package.json

Altere o valor da chave [scripts] no arquivo package.json com as tasks abaixo.

"scripts": {
    "start": "ng serve --open",
    "build": "ng build --prod && gulp index && gulp war && gulp clean",
    "test": "ng test",
    "lint": "ng lint",
  }