Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 27f023964f | |||
| b43c8db305 | |||
| e3fc28e440 | |||
| c9638403ab | |||
| 02ae9c6745 | |||
| c8cb378123 | |||
| 47060bcb2d | |||
| fb3acd5182 | |||
| cb1d7e24b7 | |||
| 0d6a56c9a3 | |||
| 7cc5cbaac3 | |||
| cf6128c248 | |||
| 1fd6dd632e |
@@ -1,13 +1,9 @@
|
|||||||
{
|
{
|
||||||
"root": true,
|
"root": true,
|
||||||
"ignorePatterns": [
|
"ignorePatterns": ["**/*"],
|
||||||
"projects/**/*"
|
|
||||||
],
|
|
||||||
"overrides": [
|
"overrides": [
|
||||||
{
|
{
|
||||||
"files": [
|
"files": ["*.ts"],
|
||||||
"*.ts"
|
|
||||||
],
|
|
||||||
"extends": [
|
"extends": [
|
||||||
"eslint:recommended",
|
"eslint:recommended",
|
||||||
"plugin:@typescript-eslint/recommended",
|
"plugin:@typescript-eslint/recommended",
|
||||||
@@ -34,14 +30,31 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"files": [
|
"files": ["*.html"],
|
||||||
"*.html"
|
|
||||||
],
|
|
||||||
"extends": [
|
"extends": [
|
||||||
"plugin:@angular-eslint/template/recommended",
|
"plugin:@angular-eslint/template/recommended",
|
||||||
"plugin:@angular-eslint/template/accessibility"
|
"plugin:@angular-eslint/template/accessibility"
|
||||||
],
|
],
|
||||||
"rules": {}
|
"rules": {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
||||||
|
"rules": {
|
||||||
|
"@nx/enforce-module-boundaries": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"enforceBuildableLibDependency": true,
|
||||||
|
"allow": [],
|
||||||
|
"depConstraints": [
|
||||||
|
{
|
||||||
|
"sourceTag": "*",
|
||||||
|
"onlyDependOnLibsWithTags": ["*"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"plugins": ["@nx"]
|
||||||
}
|
}
|
||||||
|
|||||||
8
.gitignore
vendored
@@ -40,3 +40,11 @@ testem.log
|
|||||||
# System files
|
# System files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
|
||||||
|
|
||||||
|
.nx/cache
|
||||||
|
.nx/workspace-data
|
||||||
|
|
||||||
|
# env
|
||||||
|
*.env*
|
||||||
|
!*.env.example
|
||||||
|
|||||||
5
.prettierignore
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Add files here to ignore them from prettier formatting
|
||||||
|
/dist
|
||||||
|
/coverage
|
||||||
|
/.nx/cache
|
||||||
|
/.nx/workspace-data
|
||||||
8
.vscode/extensions.json
vendored
@@ -1,4 +1,8 @@
|
|||||||
{
|
{
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
|
"recommendations": [
|
||||||
"recommendations": ["angular.ng-template"]
|
"angular.ng-template",
|
||||||
|
"nrwl.angular-console",
|
||||||
|
"dbaeumer.vscode-eslint",
|
||||||
|
"esbenp.prettier-vscode"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
9
.vscode/settings.json
vendored
@@ -6,7 +6,8 @@
|
|||||||
"**/CVS": true,
|
"**/CVS": true,
|
||||||
"**/.DS_Store": true,
|
"**/.DS_Store": true,
|
||||||
"**/Thumbs.db": true,
|
"**/Thumbs.db": true,
|
||||||
"**/node_modules": true,
|
// "**/node_modules": true,
|
||||||
"**/.angular": true,
|
"**/.angular": true
|
||||||
}
|
},
|
||||||
}
|
"editor.formatOnSave": true
|
||||||
|
}
|
||||||
|
|||||||
24
README.md
@@ -2,26 +2,6 @@
|
|||||||
|
|
||||||
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.2.2.
|
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.2.2.
|
||||||
|
|
||||||
## Development server
|
## Visitor counter
|
||||||
|
|
||||||
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
|

|
||||||
|
|
||||||
## Code scaffolding
|
|
||||||
|
|
||||||
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
|
|
||||||
|
|
||||||
## Build
|
|
||||||
|
|
||||||
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
||||||
|
|
||||||
## Running unit tests
|
|
||||||
|
|
||||||
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
||||||
|
|
||||||
## Running end-to-end tests
|
|
||||||
|
|
||||||
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
|
|
||||||
|
|
||||||
## Further help
|
|
||||||
|
|
||||||
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
||||||
|
|||||||
116
angular.json
@@ -1,116 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
||||||
"version": 1,
|
|
||||||
"cli": {
|
|
||||||
"packageManager": "pnpm",
|
|
||||||
"schematicCollections": [
|
|
||||||
"@angular-eslint/schematics"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"newProjectRoot": "projects",
|
|
||||||
"projects": {
|
|
||||||
"NwaifuWeb": {
|
|
||||||
"projectType": "application",
|
|
||||||
"schematics": {
|
|
||||||
"@schematics/angular:component": {
|
|
||||||
"style": "less"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": "",
|
|
||||||
"sourceRoot": "src",
|
|
||||||
"prefix": "app",
|
|
||||||
"architect": {
|
|
||||||
"build": {
|
|
||||||
"builder": "@angular-devkit/build-angular:application",
|
|
||||||
"options": {
|
|
||||||
"outputPath": "dist/nwaifu-web",
|
|
||||||
"index": "src/index.html",
|
|
||||||
"browser": "src/main.ts",
|
|
||||||
"polyfills": [
|
|
||||||
"zone.js"
|
|
||||||
],
|
|
||||||
"tsConfig": "tsconfig.app.json",
|
|
||||||
"inlineStyleLanguage": "less",
|
|
||||||
"assets": [
|
|
||||||
"src/favicon.ico",
|
|
||||||
"src/assets"
|
|
||||||
],
|
|
||||||
"styles": [
|
|
||||||
"src/styles.less"
|
|
||||||
],
|
|
||||||
"scripts": []
|
|
||||||
},
|
|
||||||
"configurations": {
|
|
||||||
"production": {
|
|
||||||
"budgets": [
|
|
||||||
{
|
|
||||||
"type": "initial",
|
|
||||||
"maximumWarning": "500kb",
|
|
||||||
"maximumError": "1mb"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "anyComponentStyle",
|
|
||||||
"maximumWarning": "2kb",
|
|
||||||
"maximumError": "4kb"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"outputHashing": "all"
|
|
||||||
},
|
|
||||||
"development": {
|
|
||||||
"optimization": false,
|
|
||||||
"extractLicenses": false,
|
|
||||||
"sourceMap": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"defaultConfiguration": "production"
|
|
||||||
},
|
|
||||||
"serve": {
|
|
||||||
"builder": "@angular-devkit/build-angular:dev-server",
|
|
||||||
"configurations": {
|
|
||||||
"production": {
|
|
||||||
"buildTarget": "NwaifuWeb:build:production"
|
|
||||||
},
|
|
||||||
"development": {
|
|
||||||
"buildTarget": "NwaifuWeb:build:development"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"defaultConfiguration": "development"
|
|
||||||
},
|
|
||||||
"extract-i18n": {
|
|
||||||
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
||||||
"options": {
|
|
||||||
"buildTarget": "NwaifuWeb:build"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"test": {
|
|
||||||
"builder": "@angular-devkit/build-angular:karma",
|
|
||||||
"options": {
|
|
||||||
"polyfills": [
|
|
||||||
"zone.js",
|
|
||||||
"zone.js/testing"
|
|
||||||
],
|
|
||||||
"tsConfig": "tsconfig.spec.json",
|
|
||||||
"inlineStyleLanguage": "less",
|
|
||||||
"assets": [
|
|
||||||
"src/favicon.ico",
|
|
||||||
"src/assets"
|
|
||||||
],
|
|
||||||
"styles": [
|
|
||||||
"src/styles.less"
|
|
||||||
],
|
|
||||||
"scripts": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"lint": {
|
|
||||||
"builder": "@angular-eslint/builder:lint",
|
|
||||||
"options": {
|
|
||||||
"lintFilePatterns": [
|
|
||||||
"src/**/*.ts",
|
|
||||||
"src/**/*.html"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
41
apps/NwaifuWeb/.eslintrc.json
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"ignorePatterns": ["!**/*"],
|
||||||
|
"overrides": [
|
||||||
|
{
|
||||||
|
"files": ["*.ts"],
|
||||||
|
"extends": [
|
||||||
|
"eslint:recommended",
|
||||||
|
"plugin:@typescript-eslint/recommended",
|
||||||
|
"plugin:@angular-eslint/recommended",
|
||||||
|
"plugin:@angular-eslint/template/process-inline-templates"
|
||||||
|
],
|
||||||
|
"rules": {
|
||||||
|
"@angular-eslint/directive-selector": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"type": "attribute",
|
||||||
|
"prefix": "app",
|
||||||
|
"style": "camelCase"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"@angular-eslint/component-selector": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"type": "element",
|
||||||
|
"prefix": "app",
|
||||||
|
"style": "kebab-case"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"files": ["*.html"],
|
||||||
|
"extends": [
|
||||||
|
"plugin:@angular-eslint/template/recommended",
|
||||||
|
"plugin:@angular-eslint/template/accessibility"
|
||||||
|
],
|
||||||
|
"rules": {}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"extends": "../../.eslintrc.json"
|
||||||
|
}
|
||||||
86
apps/NwaifuWeb/project.json
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
{
|
||||||
|
"name": "NwaifuWeb",
|
||||||
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||||||
|
"projectType": "application",
|
||||||
|
"generators": {
|
||||||
|
"@schematics/angular:component": {
|
||||||
|
"style": "less"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sourceRoot": "apps/NwaifuWeb/src",
|
||||||
|
"prefix": "app",
|
||||||
|
"targets": {
|
||||||
|
"build": {
|
||||||
|
"executor": "@angular-devkit/build-angular:application",
|
||||||
|
"options": {
|
||||||
|
"outputPath": "dist/apps/NwaifuWeb",
|
||||||
|
"index": "apps/NwaifuWeb/src/index.html",
|
||||||
|
"browser": "apps/NwaifuWeb/src/main.ts",
|
||||||
|
"polyfills": ["zone.js"],
|
||||||
|
"tsConfig": "apps/NwaifuWeb/tsconfig.app.json",
|
||||||
|
"inlineStyleLanguage": "less",
|
||||||
|
"assets": ["apps/NwaifuWeb/src/favicon.ico", "apps/NwaifuWeb/src/assets"],
|
||||||
|
"styles": ["apps/NwaifuWeb/src/styles.less"],
|
||||||
|
"scripts": []
|
||||||
|
},
|
||||||
|
"configurations": {
|
||||||
|
"production": {
|
||||||
|
"budgets": [
|
||||||
|
{
|
||||||
|
"type": "initial",
|
||||||
|
"maximumWarning": "500kb",
|
||||||
|
"maximumError": "1mb"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "anyComponentStyle",
|
||||||
|
"maximumWarning": "2kb",
|
||||||
|
"maximumError": "4kb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"outputHashing": "all"
|
||||||
|
},
|
||||||
|
"development": {
|
||||||
|
"optimization": false,
|
||||||
|
"extractLicenses": false,
|
||||||
|
"sourceMap": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"defaultConfiguration": "production"
|
||||||
|
},
|
||||||
|
"serve": {
|
||||||
|
"executor": "@angular-devkit/build-angular:dev-server",
|
||||||
|
"configurations": {
|
||||||
|
"production": {
|
||||||
|
"buildTarget": "NwaifuWeb:build:production"
|
||||||
|
},
|
||||||
|
"development": {
|
||||||
|
"buildTarget": "NwaifuWeb:build:development"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"defaultConfiguration": "development"
|
||||||
|
},
|
||||||
|
"extract-i18n": {
|
||||||
|
"executor": "@angular-devkit/build-angular:extract-i18n",
|
||||||
|
"options": {
|
||||||
|
"buildTarget": "NwaifuWeb:build"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"test": {
|
||||||
|
"executor": "@angular-devkit/build-angular:karma",
|
||||||
|
"options": {
|
||||||
|
"polyfills": ["zone.js", "zone.js/testing"],
|
||||||
|
"tsConfig": "apps/NwaifuWeb/tsconfig.spec.json",
|
||||||
|
"inlineStyleLanguage": "less",
|
||||||
|
"assets": ["apps/NwaifuWeb/src/favicon.ico", "apps/NwaifuWeb/src/assets"],
|
||||||
|
"styles": ["apps/NwaifuWeb/src/styles.less"],
|
||||||
|
"scripts": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lint": {
|
||||||
|
"executor": "@nx/eslint:lint",
|
||||||
|
"options": {
|
||||||
|
"lintFilePatterns": ["apps/NwaifuWeb/**/*.ts", "apps/NwaifuWeb/**/*.html"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
6
apps/NwaifuWeb/src/app/app.component.html
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<header>
|
||||||
|
<app-panel></app-panel>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<router-outlet></router-outlet>
|
||||||
|
</main>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
.main {
|
main {
|
||||||
display: block;
|
overflow-y: auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100% - 2rem);
|
height: calc(100% - 2rem);
|
||||||
background-image: url("../assets/img/wallpaper.png");
|
background-image: url("../assets/img/wallpaper.png");
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
import { TestBed } from '@angular/core/testing';
|
import { TestBed } from "@angular/core/testing";
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from "./app.component";
|
||||||
|
|
||||||
describe('AppComponent', () => {
|
describe("AppComponent", () => {
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
imports: [AppComponent],
|
imports: [AppComponent],
|
||||||
}).compileComponents();
|
}).compileComponents();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should create the app', () => {
|
it("should create the app", () => {
|
||||||
const fixture = TestBed.createComponent(AppComponent);
|
const fixture = TestBed.createComponent(AppComponent);
|
||||||
const app = fixture.componentInstance;
|
const app = fixture.componentInstance;
|
||||||
expect(app).toBeTruthy();
|
expect(app).toBeTruthy();
|
||||||
@@ -17,13 +17,13 @@ describe('AppComponent', () => {
|
|||||||
it(`should have the 'NwaifuWeb' title`, () => {
|
it(`should have the 'NwaifuWeb' title`, () => {
|
||||||
const fixture = TestBed.createComponent(AppComponent);
|
const fixture = TestBed.createComponent(AppComponent);
|
||||||
const app = fixture.componentInstance;
|
const app = fixture.componentInstance;
|
||||||
expect(app.title).toEqual('NwaifuWeb');
|
expect(app.title).toEqual("NwaifuWeb");
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render title', () => {
|
it("should render title", () => {
|
||||||
const fixture = TestBed.createComponent(AppComponent);
|
const fixture = TestBed.createComponent(AppComponent);
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
const compiled = fixture.nativeElement as HTMLElement;
|
const compiled = fixture.nativeElement as HTMLElement;
|
||||||
expect(compiled.querySelector('h1')?.textContent).toContain('Hello, NwaifuWeb');
|
expect(compiled.querySelector("h1")?.textContent).toContain("Hello, NwaifuWeb");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -1,12 +1,11 @@
|
|||||||
import { Component } from "@angular/core";
|
import { Component } from "@angular/core";
|
||||||
import { DockComponent } from "./modules/dock/dock.component";
|
import { RouterModule } from "@angular/router";
|
||||||
import { ModalComponent } from "./modules/modal/modal.component";
|
|
||||||
import { PanelComponent } from "./modules/panel/panel.component";
|
import { PanelComponent } from "./modules/panel/panel.component";
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: "app-root",
|
selector: "app-root",
|
||||||
standalone: true,
|
standalone: true,
|
||||||
imports: [PanelComponent, DockComponent, ModalComponent],
|
imports: [PanelComponent, RouterModule],
|
||||||
templateUrl: "./app.component.html",
|
templateUrl: "./app.component.html",
|
||||||
styleUrl: "./app.component.less",
|
styleUrl: "./app.component.less",
|
||||||
})
|
})
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
import { APP_INITIALIZER, ApplicationConfig } from "@angular/core";
|
import { APP_INITIALIZER, ApplicationConfig } from "@angular/core";
|
||||||
|
|
||||||
import { provideHttpClient } from "@angular/common/http";
|
import { provideHttpClient } from "@angular/common/http";
|
||||||
|
import { provideRouter } from '@angular/router';
|
||||||
|
import { routes } from './app.routes';
|
||||||
import { TranslateService } from "./services/translate.service";
|
import { TranslateService } from "./services/translate.service";
|
||||||
|
|
||||||
export function setupTranslateServiceFactory(service: TranslateService) {
|
export function setupTranslateServiceFactory(service: TranslateService) {
|
||||||
@@ -10,6 +12,7 @@ export function setupTranslateServiceFactory(service: TranslateService) {
|
|||||||
|
|
||||||
export const appConfig: ApplicationConfig = {
|
export const appConfig: ApplicationConfig = {
|
||||||
providers: [
|
providers: [
|
||||||
|
provideRouter(routes),
|
||||||
provideHttpClient(),
|
provideHttpClient(),
|
||||||
TranslateService,
|
TranslateService,
|
||||||
{
|
{
|
||||||
19
apps/NwaifuWeb/src/app/app.routes.ts
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
import { Routes } from "@angular/router";
|
||||||
|
import { MainPageComponent } from './pages/main/main.component';
|
||||||
|
import { NitroplusComponent } from './pages/nitroplus-translator/nitroplus-translator.component';
|
||||||
|
|
||||||
|
export const routes: Routes = [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
component: MainPageComponent
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'translator',
|
||||||
|
component: NitroplusComponent
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
];
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
<div class="desktop-icon">
|
||||||
|
<img [src]="image" [alt]="alt" [title]="name" />
|
||||||
|
<span>{{ name }}</span>
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
.desktop-icon {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 5rem;
|
||||||
|
height: 6rem;
|
||||||
|
color: white;
|
||||||
|
font-size: 0.7rem;
|
||||||
|
user-select: none;
|
||||||
|
padding: 1rem;
|
||||||
|
border-radius: 10px;
|
||||||
|
transition: 0.2s ease-in-out;
|
||||||
|
&:hover {
|
||||||
|
background-color: rgba(25, 17, 19, 0.7);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { Component, Input } from '@angular/core';
|
||||||
|
import { RouterModule } from '@angular/router';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'desktop-icon',
|
||||||
|
templateUrl: './desktop-icon.component.html',
|
||||||
|
styleUrls: ['./desktop-icon.component.less'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [CommonModule, RouterModule]
|
||||||
|
})
|
||||||
|
export class DesktopIconComponent {
|
||||||
|
@Input() image: string = '';
|
||||||
|
@Input() alt: string = '';
|
||||||
|
@Input() name: string = '';
|
||||||
|
@Input({required: false}) click: ()=>void = ()=>{};
|
||||||
|
}
|
||||||
@@ -3,7 +3,7 @@ import { Component, ElementRef, HostListener, ViewChild } from "@angular/core";
|
|||||||
import { FontAwesomeModule } from "@fortawesome/angular-fontawesome";
|
import { FontAwesomeModule } from "@fortawesome/angular-fontawesome";
|
||||||
import { faGithub } from "@fortawesome/free-brands-svg-icons";
|
import { faGithub } from "@fortawesome/free-brands-svg-icons";
|
||||||
import { faPowerOff, faVolumeHigh } from "@fortawesome/free-solid-svg-icons";
|
import { faPowerOff, faVolumeHigh } from "@fortawesome/free-solid-svg-icons";
|
||||||
import { TranslationPipe } from '../../pipes/translation.pipe';
|
import { TranslationPipe } from "../../pipes/translation.pipe";
|
||||||
import { PanelSevice } from "../../services/panel.service";
|
import { PanelSevice } from "../../services/panel.service";
|
||||||
import { TranslateService } from "../../services/translate.service";
|
import { TranslateService } from "../../services/translate.service";
|
||||||
|
|
||||||
@@ -15,7 +15,7 @@ import { TranslateService } from "../../services/translate.service";
|
|||||||
styleUrls: ["./panel.component.less"],
|
styleUrls: ["./panel.component.less"],
|
||||||
})
|
})
|
||||||
export class PanelComponent {
|
export class PanelComponent {
|
||||||
source_code_btn_title = "SOURCE_CODE_TITLE"
|
source_code_btn_title = "SOURCE_CODE_TITLE";
|
||||||
|
|
||||||
public time = "";
|
public time = "";
|
||||||
faGithub = faGithub;
|
faGithub = faGithub;
|
||||||
5
apps/NwaifuWeb/src/app/pages/main/main.component.html
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<div class="icons">
|
||||||
|
<a routerLink='/translator'><desktop-icon alt='translator' name='Translator' image='../../../assets/svg/logo-gitea.svg'></desktop-icon></a>
|
||||||
|
</div>
|
||||||
|
<app-modal></app-modal>
|
||||||
|
<app-dock></app-dock>
|
||||||
9
apps/NwaifuWeb/src/app/pages/main/main.component.less
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
.icons {
|
||||||
|
margin: 2rem 3rem;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
:host {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
15
apps/NwaifuWeb/src/app/pages/main/main.component.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { Component } from '@angular/core';
|
||||||
|
import { RouterLink } from '@angular/router';
|
||||||
|
import { DesktopIconComponent } from '../../modules/desktop-icon/desktop-icon.component';
|
||||||
|
import { DockComponent } from '../../modules/dock/dock.component';
|
||||||
|
import { ModalComponent } from '../../modules/modal/modal.component';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-main-page',
|
||||||
|
templateUrl: './main.component.html',
|
||||||
|
styleUrls: ['./main.component.less'],
|
||||||
|
imports: [DockComponent, ModalComponent, CommonModule, DesktopIconComponent, RouterLink],
|
||||||
|
standalone: true
|
||||||
|
})
|
||||||
|
export class MainPageComponent {}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
@if (elements_data.length) {
|
||||||
|
<h1>Всего: {{ elements_data.length }}</h1>
|
||||||
|
<h2>Файл: {{ fileName }}</h2>
|
||||||
|
}
|
||||||
|
<div id="elements">
|
||||||
|
@for (item of elements_data; track $index) {
|
||||||
|
<app-translate-block #translateBlock [index]="$index" [item]="item"></app-translate-block>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#elements {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 3rem;
|
||||||
|
align-items: center;
|
||||||
|
margin-inline: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2 {
|
||||||
|
color: #efdee0;
|
||||||
|
text-align: center;
|
||||||
|
margin: 1rem 2rem;
|
||||||
|
}
|
||||||
|
app-translate-block {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
import { CommonModule } from "@angular/common";
|
||||||
|
import { Component, Input, OnInit, QueryList, ViewChildren } from "@angular/core";
|
||||||
|
import { NpsFile, TranslateData } from "../../dto/translate_data.dto";
|
||||||
|
import { TranslateBlockComponent } from "../translate_block/translate_block.component";
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: "app-text-list",
|
||||||
|
templateUrl: "./text_list.component.html",
|
||||||
|
styleUrls: ["./text_list.component.scss"],
|
||||||
|
standalone: true,
|
||||||
|
imports: [CommonModule, TranslateBlockComponent],
|
||||||
|
})
|
||||||
|
export class TextListComponent implements OnInit {
|
||||||
|
@ViewChildren("translateBlock") translate_blocks: QueryList<TranslateBlockComponent> | null =
|
||||||
|
null;
|
||||||
|
fileName = "";
|
||||||
|
elements_data: TranslateData[] = [];
|
||||||
|
@Input() set elements(el: TranslateData[]) {
|
||||||
|
this.elements_data = el;
|
||||||
|
localStorage.setItem("translations", JSON.stringify(this.elements_data));
|
||||||
|
}
|
||||||
|
|
||||||
|
get elements() {
|
||||||
|
return this.elements_data;
|
||||||
|
}
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
const data = localStorage.getItem("original_file");
|
||||||
|
if (data) {
|
||||||
|
const file: NpsFile = JSON.parse(data);
|
||||||
|
this.fileName = file.file_name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<div class="element">
|
||||||
|
<h2>{{ index + 1 }}</h2>
|
||||||
|
<div class="fields">
|
||||||
|
<nwui-textarea [contenteditable]="false">{{ item.english_text }}</nwui-textarea>
|
||||||
|
<nwui-textarea
|
||||||
|
#translatedText
|
||||||
|
[contenteditable]="isEditing"
|
||||||
|
(leave)="saveTranslate($event)"
|
||||||
|
[disabled]="!isEditing"
|
||||||
|
>{{ item.translated_text }}</nwui-textarea
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div class="btns">
|
||||||
|
<nwui-button (click)="sendToGoogleTranslate()" [disabled]="translateLoading">Translate</nwui-button>
|
||||||
|
<nwui-button (click)="isEditing = !isEditing" [disabled]="isEditing">Edit</nwui-button>
|
||||||
|
<nwui-button (click)="clear()" [disabled]="!item.translated_text.length">Clear</nwui-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
.element {
|
||||||
|
display: flex;
|
||||||
|
background-color: #413738;
|
||||||
|
padding: 3rem 5rem;
|
||||||
|
border-radius: 30px;
|
||||||
|
flex-direction: row;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 1200px;
|
||||||
|
align-items: center;
|
||||||
|
gap: 2rem;
|
||||||
|
justify-content: space-between;
|
||||||
|
h2 {
|
||||||
|
color: #efdee0;
|
||||||
|
}
|
||||||
|
.fields {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1rem;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 1200px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.element {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btns {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1rem;
|
||||||
|
align-items: center;
|
||||||
|
padding-inline: 1rem;
|
||||||
|
nwui-button {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { Component, Input, OnInit, ViewChild } from '@angular/core';
|
||||||
|
import { NWUIButtonComponent, NWUITextAreaComponent } from '@nwaifu-ui';
|
||||||
|
import { LocalStorageKeys } from '../../consts';
|
||||||
|
import { TranslateData } from '../../dto/translate_data.dto';
|
||||||
|
import { ETranslateService } from '../../services/translate.enums';
|
||||||
|
import { TranslateService } from '../../services/translate.service';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-translate-block',
|
||||||
|
templateUrl: './translate_block.component.html',
|
||||||
|
styleUrls: ['./translate_block.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [CommonModule, NWUIButtonComponent, NWUITextAreaComponent],
|
||||||
|
providers: [TranslateService],
|
||||||
|
})
|
||||||
|
export class TranslateBlockComponent implements OnInit {
|
||||||
|
@ViewChild('translatedText') translatedText: NWUITextAreaComponent | null = null;
|
||||||
|
@Input({ required: true }) item: TranslateData = { english_text: '', translated_text: '' };
|
||||||
|
@Input({ required: true }) index = 0;
|
||||||
|
translateLoading = false;
|
||||||
|
isEditing = false;
|
||||||
|
|
||||||
|
saveChanges() {
|
||||||
|
const data: TranslateData[] = JSON.parse(localStorage.getItem(LocalStorageKeys.TRANSLATIONS) ?? '[]');
|
||||||
|
if (!data.length) {
|
||||||
|
alert('No data');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
data[this.index] = this.item;
|
||||||
|
localStorage.setItem('translations', JSON.stringify(data));
|
||||||
|
}
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
this.isEditing = this.item.translated_text === '';
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor(private translateService: TranslateService) {}
|
||||||
|
|
||||||
|
private sendToTranslate(service: ETranslateService = ETranslateService.GOOGLE) {
|
||||||
|
this.translateLoading = true;
|
||||||
|
this.translateService.translate(this.item.english_text, service).subscribe((text) => {
|
||||||
|
if (this.translatedText) if (this.translatedText.ref) this.translatedText.ref.nativeElement.textContent = text;
|
||||||
|
this.item.translated_text = text;
|
||||||
|
this.isEditing = false;
|
||||||
|
this.translateLoading = false;
|
||||||
|
this.saveChanges();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
sendToGoogleTranslate() {
|
||||||
|
this.sendToTranslate(ETranslateService.GOOGLE);
|
||||||
|
}
|
||||||
|
|
||||||
|
sendToDeeplTranslate() {
|
||||||
|
this.sendToTranslate(ETranslateService.DEEPL);
|
||||||
|
}
|
||||||
|
|
||||||
|
sendToPromptTranslate() {
|
||||||
|
this.sendToTranslate(ETranslateService.PROMPT);
|
||||||
|
}
|
||||||
|
|
||||||
|
saveTranslate(text: string) {
|
||||||
|
this.isEditing = false;
|
||||||
|
if (this.translatedText) if (this.translatedText.ref) this.translatedText.ref.nativeElement.textContent = '';
|
||||||
|
this.item.translated_text = text;
|
||||||
|
this.saveChanges();
|
||||||
|
}
|
||||||
|
clear() {
|
||||||
|
this.item.translated_text = '';
|
||||||
|
this.isEditing = true;
|
||||||
|
if (this.translatedText) if (this.translatedText.ref) this.translatedText.ref.nativeElement.textContent = '';
|
||||||
|
this.saveChanges();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
export enum LocalStorageKeys {
|
||||||
|
TRANSLATIONS = 'translations',
|
||||||
|
ORIGINAL_FILE = 'original_file',
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
export interface TranslateData {
|
||||||
|
english_text: string;
|
||||||
|
translated_text: string;
|
||||||
|
}
|
||||||
|
export interface NpsFile {
|
||||||
|
file_name: string;
|
||||||
|
original_text: string;
|
||||||
|
translated_text?: string;
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
import { LocalStorageKeys } from '../consts';
|
||||||
|
import { NpsFile } from '../dto/translate_data.dto';
|
||||||
|
|
||||||
|
export function saveOriginalFile(file: NpsFile) {
|
||||||
|
localStorage.setItem(LocalStorageKeys.ORIGINAL_FILE, JSON.stringify(file));
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
import { TranslateData } from "../dto/translate_data.dto";
|
||||||
|
|
||||||
|
export function parse(text: string): TranslateData[] {
|
||||||
|
// Find all TEXT attr data
|
||||||
|
const result: TranslateData[] = [];
|
||||||
|
const re = /<[^>]*TEXT="(?<textAttr>[^>"]+)"[^>]*>|<[^>]*>|\/\/.*|\s*\n\s*/gm;
|
||||||
|
for (const match of text.matchAll(re)) {
|
||||||
|
if (match.groups?.["textAttr"])
|
||||||
|
result.push({ english_text: match.groups?.["textAttr"], translated_text: "" });
|
||||||
|
}
|
||||||
|
|
||||||
|
const replaced_text = text.replace(re, "\n").replace(/\s*\n\s*/gm, "\n");
|
||||||
|
result.push(
|
||||||
|
...replaced_text
|
||||||
|
.split("\n")
|
||||||
|
.map((line) => line.trim())
|
||||||
|
.filter((line) => line.length > 0)
|
||||||
|
.map((line) => ({ english_text: line, translated_text: "" })),
|
||||||
|
);
|
||||||
|
console.log(result);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
<div class="btns">
|
||||||
|
<div id="op_btns">
|
||||||
|
<nwui-button (click)="fileInput.click()">
|
||||||
|
<span><i class="lni lni-upload"></i> Upload</span>
|
||||||
|
<input
|
||||||
|
type="file"
|
||||||
|
(change)="submitFile($event)"
|
||||||
|
accept=".nps"
|
||||||
|
#fileInput
|
||||||
|
style="display: none"
|
||||||
|
/>
|
||||||
|
</nwui-button>
|
||||||
|
<nwui-button (click)="onSaveClicked()">
|
||||||
|
<span><i class="lni lni-save"></i> Save</span>
|
||||||
|
</nwui-button>
|
||||||
|
@if (this.elements.length) {
|
||||||
|
<nwui-button (click)="clearAllTranslations()" [disabled]="!has_translations">
|
||||||
|
<span><i class="lni lni-trash-can"></i> Clear translations</span>
|
||||||
|
</nwui-button>
|
||||||
|
<nwui-button (click)="getAllTranslations()">
|
||||||
|
<span><i class="lni lni-google"></i> Translate all</span>
|
||||||
|
</nwui-button>
|
||||||
|
<nwui-button (click)="onClearClicked()">
|
||||||
|
<span><i class="lni lni-trash-can"></i> Clear</span>
|
||||||
|
</nwui-button>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
<button id="close_win" (click)="onCloseClicked()"><i class="lni lni-close"></i></button>
|
||||||
|
</div>
|
||||||
|
<app-text-list [elements]="elements"></app-text-list>
|
||||||
|
<nwui-button class="to-top-btn" (click)="scrollToTop()"
|
||||||
|
><i class="lni lni-arrow-up"></i
|
||||||
|
></nwui-button>
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
.btns {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
overflow-x: auto;
|
||||||
|
scrollbar-color: #413738;
|
||||||
|
nwui-button {
|
||||||
|
margin: 2rem;
|
||||||
|
}
|
||||||
|
#op_btns {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
#close_win {
|
||||||
|
color: var(--white);
|
||||||
|
font-weight: 600;
|
||||||
|
margin-inline: 2rem;
|
||||||
|
background-color: #413738;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0.5rem;
|
||||||
|
border-radius: 50px;
|
||||||
|
transition: 0.2s linear;
|
||||||
|
i {
|
||||||
|
transition: 0.3s linear;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
background-color: #5b3f45;
|
||||||
|
transform: scale(1.1);
|
||||||
|
i {
|
||||||
|
transform: scale(1.1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:host {
|
||||||
|
background-color: #191113;
|
||||||
|
display: block;
|
||||||
|
min-height: calc(100vh - 2rem);
|
||||||
|
scrollbar-color: #413738;
|
||||||
|
}
|
||||||
|
.to-top-btn {
|
||||||
|
position: fixed;
|
||||||
|
width: 2rem;
|
||||||
|
left: 2rem;
|
||||||
|
bottom: -5rem;
|
||||||
|
transition: bottom 0.3s ease-in-out;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
bottom: 1rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,143 @@
|
|||||||
|
import { CommonModule } from "@angular/common";
|
||||||
|
import { AfterViewInit, Component, OnInit, ViewChild } from "@angular/core";
|
||||||
|
import { Router } from "@angular/router";
|
||||||
|
import { NWUIButtonComponent } from "@nwaifu-ui";
|
||||||
|
import { fromEvent, map } from "rxjs";
|
||||||
|
import { TextListComponent } from "./components/text_list/text_list.component";
|
||||||
|
import { LocalStorageKeys } from "./consts";
|
||||||
|
import { NpsFile, TranslateData } from "./dto/translate_data.dto";
|
||||||
|
import { saveOriginalFile } from "./lib/file_tools";
|
||||||
|
import { parse } from "./lib/parser";
|
||||||
|
@Component({
|
||||||
|
standalone: true,
|
||||||
|
imports: [TextListComponent, CommonModule, NWUIButtonComponent],
|
||||||
|
selector: "app-nitroplus",
|
||||||
|
templateUrl: "./nitroplus-translator.component.html",
|
||||||
|
styleUrl: "./nitroplus-translator.component.less",
|
||||||
|
})
|
||||||
|
export class NitroplusComponent implements OnInit, AfterViewInit {
|
||||||
|
title = "NitroPlusTranslator";
|
||||||
|
elements: TranslateData[] = [];
|
||||||
|
@ViewChild("fileInput") fileInput: HTMLInputElement | null = null;
|
||||||
|
@ViewChild(TextListComponent) text_list: TextListComponent | null = null;
|
||||||
|
|
||||||
|
constructor(private readonly router: Router) {}
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
const data = localStorage.getItem(LocalStorageKeys.TRANSLATIONS);
|
||||||
|
if (data) {
|
||||||
|
try {
|
||||||
|
this.elements = JSON.parse(data);
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
alert("Error while loading");
|
||||||
|
localStorage.removeItem(LocalStorageKeys.TRANSLATIONS);
|
||||||
|
this.elements = [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ngAfterViewInit(): void {
|
||||||
|
const container = document.querySelector("main");
|
||||||
|
if (container) {
|
||||||
|
fromEvent(container, "scroll")
|
||||||
|
.pipe(map(() => container.scrollTop > 100))
|
||||||
|
.subscribe((val) => {
|
||||||
|
if (val) document.querySelector(".to-top-btn")?.classList.add("active");
|
||||||
|
else document.querySelector(".to-top-btn")?.classList.remove("active");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
scrollToTop() {
|
||||||
|
const container = document.querySelector("main");
|
||||||
|
if (container) {
|
||||||
|
container.scrollTo({ top: 0, behavior: "smooth" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
submitFile($event: Event) {
|
||||||
|
const target = $event.target as HTMLInputElement;
|
||||||
|
if (target.files) {
|
||||||
|
const file = target.files[0];
|
||||||
|
if (file) {
|
||||||
|
const reader = new FileReader();
|
||||||
|
reader.onload = () => {
|
||||||
|
if (reader.result) {
|
||||||
|
this.onFileLoaded(reader.result.toString());
|
||||||
|
const original_file: NpsFile = {
|
||||||
|
file_name: file.name,
|
||||||
|
original_text: reader.result.toString(),
|
||||||
|
};
|
||||||
|
saveOriginalFile(original_file);
|
||||||
|
target.value = "";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
reader.readAsText(file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onFileLoaded(text: string) {
|
||||||
|
const parsed = parse(text);
|
||||||
|
this.elements = parsed;
|
||||||
|
}
|
||||||
|
|
||||||
|
onClearClicked() {
|
||||||
|
this.elements = [];
|
||||||
|
localStorage.removeItem(LocalStorageKeys.TRANSLATIONS);
|
||||||
|
}
|
||||||
|
|
||||||
|
onSaveClicked() {
|
||||||
|
const original_file: NpsFile = JSON.parse(
|
||||||
|
localStorage.getItem(LocalStorageKeys.ORIGINAL_FILE) ??
|
||||||
|
'{"file_name":"", "original_text":""}',
|
||||||
|
);
|
||||||
|
if (original_file.file_name && original_file.original_text) {
|
||||||
|
const data: TranslateData[] = JSON.parse(
|
||||||
|
localStorage.getItem(LocalStorageKeys.TRANSLATIONS) ?? "[]",
|
||||||
|
);
|
||||||
|
if (!data.length) {
|
||||||
|
alert("No data");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
original_file.translated_text = original_file.original_text;
|
||||||
|
data.forEach((el) => {
|
||||||
|
original_file.translated_text = original_file.translated_text?.replace(
|
||||||
|
el.english_text,
|
||||||
|
el.translated_text,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
const element = document.createElement("a");
|
||||||
|
const file = new Blob([original_file.translated_text], { type: "text/plain" });
|
||||||
|
element.href = URL.createObjectURL(file);
|
||||||
|
element.download = original_file.file_name;
|
||||||
|
element.click();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//TODO: Dialog windows for clear op
|
||||||
|
clearAllTranslations() {
|
||||||
|
if (this.text_list)
|
||||||
|
if (this.text_list.translate_blocks) {
|
||||||
|
this.text_list.translate_blocks
|
||||||
|
.filter((item) => item.item.translated_text)
|
||||||
|
.forEach((item) => item.clear());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getAllTranslations() {
|
||||||
|
if (this.text_list)
|
||||||
|
if (this.text_list.translate_blocks)
|
||||||
|
this.text_list.translate_blocks.forEach((item) => item.sendToGoogleTranslate());
|
||||||
|
}
|
||||||
|
|
||||||
|
get has_translations(): boolean {
|
||||||
|
return this.elements.some((i) => i.translated_text);
|
||||||
|
}
|
||||||
|
|
||||||
|
onCloseClicked() {
|
||||||
|
this.router.navigate(["/"]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export type GoogleTranslateResponse = Array<Array<string>>;
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
export enum ETranslateService {
|
||||||
|
GOOGLE = 'google',
|
||||||
|
DEEPL = 'deepl',
|
||||||
|
PROMPT = 'prompt',
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { Observable, map } from 'rxjs';
|
||||||
|
import { GoogleTranslateResponse } from './translate.dto';
|
||||||
|
import { ETranslateService } from './translate.enums';
|
||||||
|
|
||||||
|
@Injectable({ providedIn: 'root' })
|
||||||
|
export class TranslateService {
|
||||||
|
constructor(private http: HttpClient) {}
|
||||||
|
|
||||||
|
private googleTranslate(text: string): Observable<string> {
|
||||||
|
return this.http
|
||||||
|
.get<GoogleTranslateResponse>(
|
||||||
|
'https://translate.googleapis.com/translate_a/single?client=gtx&sl=en&tl=ru&dt=t&q=' + encodeURIComponent(text),
|
||||||
|
)
|
||||||
|
.pipe(
|
||||||
|
map((response) => {
|
||||||
|
let result = '';
|
||||||
|
response[0].forEach((el) => {
|
||||||
|
result += el[0] + ' ';
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
translate(text: string, service: ETranslateService = ETranslateService.GOOGLE): Observable<string> {
|
||||||
|
switch (service) {
|
||||||
|
case ETranslateService.GOOGLE:
|
||||||
|
return this.googleTranslate(text);
|
||||||
|
default:
|
||||||
|
return this.googleTranslate(text);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Before Width: | Height: | Size: 470 KiB After Width: | Height: | Size: 470 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@@ -6,6 +6,7 @@
|
|||||||
<base href="/" />
|
<base href="/" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
||||||
|
<link href="https://cdn.lineicons.com/4.0/lineicons.css" rel="stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<app-root></app-root>
|
<app-root></app-root>
|
||||||
5
apps/NwaifuWeb/src/main.ts
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
import { bootstrapApplication } from "@angular/platform-browser";
|
||||||
|
import { appConfig } from "./app/app.config";
|
||||||
|
import { AppComponent } from "./app/app.component";
|
||||||
|
|
||||||
|
bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));
|
||||||
@@ -25,15 +25,10 @@
|
|||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
html {
|
html, body {
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100vh;
|
height: 100%;
|
||||||
position: absolute;
|
position: relative;
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
}
|
}
|
||||||
ngneat-dialog {
|
ngneat-dialog {
|
||||||
.ngneat-dialog-backdrop {
|
.ngneat-dialog-backdrop {
|
||||||
10
apps/NwaifuWeb/tsconfig.app.json
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"extends": "./tsconfig.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "../../dist/out-tsc",
|
||||||
|
"types": []
|
||||||
|
},
|
||||||
|
"files": ["src/main.ts"],
|
||||||
|
"include": ["src/**/*.d.ts"],
|
||||||
|
"exclude": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts"]
|
||||||
|
}
|
||||||
6
apps/NwaifuWeb/tsconfig.editor.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"extends": "./tsconfig.json",
|
||||||
|
"include": ["src/**/*.ts"],
|
||||||
|
"compilerOptions": {},
|
||||||
|
"exclude": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts"]
|
||||||
|
}
|
||||||
@@ -1,33 +1,33 @@
|
|||||||
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
||||||
{
|
{
|
||||||
"compileOnSave": false,
|
"extends": "../../tsconfig.base.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist/out-tsc",
|
"target": "ES2022",
|
||||||
|
"useDefineForClassFields": false,
|
||||||
|
"esModuleInterop": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"noImplicitOverride": true,
|
"noImplicitOverride": true,
|
||||||
"noPropertyAccessFromIndexSignature": true,
|
"noPropertyAccessFromIndexSignature": true,
|
||||||
"noImplicitReturns": true,
|
"noImplicitReturns": true,
|
||||||
"noFallthroughCasesInSwitch": true,
|
"noFallthroughCasesInSwitch": true
|
||||||
"skipLibCheck": true,
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"sourceMap": true,
|
|
||||||
"declaration": false,
|
|
||||||
"experimentalDecorators": true,
|
|
||||||
"moduleResolution": "node",
|
|
||||||
"importHelpers": true,
|
|
||||||
"target": "ES2022",
|
|
||||||
"module": "ES2022",
|
|
||||||
"useDefineForClassFields": false,
|
|
||||||
"lib": [
|
|
||||||
"ES2022",
|
|
||||||
"dom"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
|
"files": [],
|
||||||
|
"include": [],
|
||||||
"angularCompilerOptions": {
|
"angularCompilerOptions": {
|
||||||
"enableI18nLegacyMessageIdFormat": false,
|
"enableI18nLegacyMessageIdFormat": false,
|
||||||
"strictInjectionParameters": true,
|
"strictInjectionParameters": true,
|
||||||
"strictInputAccessModifiers": true,
|
"strictInputAccessModifiers": true,
|
||||||
"strictTemplates": true
|
"strictTemplates": true
|
||||||
}
|
},
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"path": "./tsconfig.app.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "./tsconfig.editor.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "./tsconfig.spec.json"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
8
apps/NwaifuWeb/tsconfig.spec.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"extends": "../../tsconfig.base.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "../../dist/out-tsc",
|
||||||
|
"types": ["jasmine"]
|
||||||
|
},
|
||||||
|
"include": ["src/**/*.spec.ts", "src/**/*.d.ts"]
|
||||||
|
}
|
||||||
43
karma.conf.js
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
// Karma configuration file, see link for more information
|
||||||
|
// https://karma-runner.github.io/1.0/config/configuration-file.html
|
||||||
|
|
||||||
|
const { join } = require("path");
|
||||||
|
const { constants } = require("karma");
|
||||||
|
|
||||||
|
module.exports = () => {
|
||||||
|
return {
|
||||||
|
basePath: "",
|
||||||
|
frameworks: ["jasmine", "@angular-devkit/build-angular"],
|
||||||
|
plugins: [
|
||||||
|
require("karma-jasmine"),
|
||||||
|
require("karma-chrome-launcher"),
|
||||||
|
require("karma-jasmine-html-reporter"),
|
||||||
|
require("karma-coverage"),
|
||||||
|
require("@angular-devkit/build-angular/plugins/karma"),
|
||||||
|
],
|
||||||
|
client: {
|
||||||
|
jasmine: {
|
||||||
|
// you can add configuration options for Jasmine here
|
||||||
|
// the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
|
||||||
|
// for example, you can disable the random execution with `random: false`
|
||||||
|
// or set a specific seed with `seed: 4321`
|
||||||
|
},
|
||||||
|
clearContext: false, // leave Jasmine Spec Runner output visible in browser
|
||||||
|
},
|
||||||
|
jasmineHtmlReporter: {
|
||||||
|
suppressAll: true, // removes the duplicated traces
|
||||||
|
},
|
||||||
|
coverageReporter: {
|
||||||
|
dir: join(__dirname, "./coverage"),
|
||||||
|
subdir: ".",
|
||||||
|
reporters: [{ type: "html" }, { type: "text-summary" }],
|
||||||
|
},
|
||||||
|
reporters: ["progress", "kjhtml"],
|
||||||
|
port: 9876,
|
||||||
|
colors: true,
|
||||||
|
logLevel: constants.LOG_INFO,
|
||||||
|
autoWatch: true,
|
||||||
|
browsers: ["Chrome"],
|
||||||
|
singleRun: true,
|
||||||
|
};
|
||||||
|
};
|
||||||
0
libs/.gitkeep
Normal file
64
migrations.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"migrations": [
|
||||||
|
{
|
||||||
|
"cli": "nx",
|
||||||
|
"version": "19.2.0-beta.2",
|
||||||
|
"description": "Updates the default workspace data directory to .nx/workspace-data",
|
||||||
|
"implementation": "./src/migrations/update-19-2-0/move-workspace-data-directory",
|
||||||
|
"package": "nx",
|
||||||
|
"name": "19-2-0-move-graph-cache-directory"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cli": "nx",
|
||||||
|
"version": "19.2.2-beta.0",
|
||||||
|
"description": "Updates the nx wrapper.",
|
||||||
|
"implementation": "./src/migrations/update-17-3-0/update-nxw",
|
||||||
|
"package": "nx",
|
||||||
|
"name": "19-2-2-update-nx-wrapper"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "19.2.4-beta.0",
|
||||||
|
"description": "Set project name in nx.json explicitly",
|
||||||
|
"implementation": "./src/migrations/update-19-2-4/set-project-name",
|
||||||
|
"x-repair-skip": true,
|
||||||
|
"package": "nx",
|
||||||
|
"name": "19-2-4-set-project-name"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cli": "nx",
|
||||||
|
"version": "19.1.0-beta.2",
|
||||||
|
"requires": {
|
||||||
|
"@angular/core": ">=18.0.0"
|
||||||
|
},
|
||||||
|
"description": "Update the @angular/cli package version to ~18.0.0.",
|
||||||
|
"factory": "./src/migrations/update-19-1-0/update-angular-cli",
|
||||||
|
"package": "@nx/angular",
|
||||||
|
"name": "update-angular-cli-version-18-0-0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cli": "nx",
|
||||||
|
"version": "19.2.1-beta.0",
|
||||||
|
"requires": {
|
||||||
|
"@angular-eslint/eslint-plugin": ">=18.0.0"
|
||||||
|
},
|
||||||
|
"description": "Installs the '@typescript-eslint/utils' package when having installed '@angular-eslint/eslint-plugin' or '@angular-eslint/eslint-plugin-template' with version >=18.0.0.",
|
||||||
|
"factory": "./src/migrations/update-19-2-1/add-typescript-eslint-utils",
|
||||||
|
"package": "@nx/angular",
|
||||||
|
"name": "add-typescript-eslint-utils"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "18.0.0",
|
||||||
|
"description": "Updates two-way bindings that have an invalid expression to use the longform expression instead.",
|
||||||
|
"factory": "./migrations/invalid-two-way-bindings/bundle",
|
||||||
|
"package": "@angular/core",
|
||||||
|
"name": "invalid-two-way-bindings"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "18.0.0",
|
||||||
|
"description": "Replace deprecated HTTP related modules with provider functions",
|
||||||
|
"factory": "./migrations/http-providers/bundle",
|
||||||
|
"package": "@angular/core",
|
||||||
|
"name": "migration-http-providers"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
46
nwaifu-ui/.eslintrc.json
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
"extends": [
|
||||||
|
"../.eslintrc.json"
|
||||||
|
],
|
||||||
|
"ignorePatterns": [
|
||||||
|
"!**/*"
|
||||||
|
],
|
||||||
|
"overrides": [
|
||||||
|
{
|
||||||
|
"files": [
|
||||||
|
"*.ts"
|
||||||
|
],
|
||||||
|
"extends": [
|
||||||
|
"plugin:@nx/angular",
|
||||||
|
"plugin:@angular-eslint/template/process-inline-templates"
|
||||||
|
],
|
||||||
|
"rules": {
|
||||||
|
"@angular-eslint/directive-selector": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"type": "attribute",
|
||||||
|
"prefix": "nwui",
|
||||||
|
"style": "camelCase"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"@angular-eslint/component-selector": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"type": "element",
|
||||||
|
"prefix": "nwui",
|
||||||
|
"style": "kebab-case"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"files": [
|
||||||
|
"*.html"
|
||||||
|
],
|
||||||
|
"extends": [
|
||||||
|
"plugin:@nx/angular-template"
|
||||||
|
],
|
||||||
|
"rules": {}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
7
nwaifu-ui/README.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# nwaifu-ui
|
||||||
|
|
||||||
|
This library was generated with [Nx](https://nx.dev).
|
||||||
|
|
||||||
|
## Running unit tests
|
||||||
|
|
||||||
|
Run `nx test nwaifu-ui` to execute the unit tests.
|
||||||
9
nwaifu-ui/project.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"name": "nwaifu-ui",
|
||||||
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
||||||
|
"sourceRoot": "nwaifu-ui/src",
|
||||||
|
"prefix": "nwui",
|
||||||
|
"projectType": "library",
|
||||||
|
"tags": [],
|
||||||
|
"targets": {}
|
||||||
|
}
|
||||||
1
nwaifu-ui/src/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export * from './lib';
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<button [disabled]="disabled" [type]="type"><ng-content></ng-content></button>
|
||||||
28
nwaifu-ui/src/lib/components/button/button.component.scss
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
button {
|
||||||
|
outline: none;
|
||||||
|
border: none;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: #5b3f45;
|
||||||
|
word-break: keep-all;
|
||||||
|
padding: 1em 1.5em;
|
||||||
|
color: #f5f6fa;
|
||||||
|
border-radius: 15px;
|
||||||
|
transition: ease-in-out 0.2s;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 100%;
|
||||||
|
&:hover,
|
||||||
|
&:active {
|
||||||
|
transform: scale(1.2);
|
||||||
|
}
|
||||||
|
&:disabled {
|
||||||
|
opacity: 0.5;
|
||||||
|
&:hover,
|
||||||
|
&:active {
|
||||||
|
cursor: not-allowed;
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
15
nwaifu-ui/src/lib/components/button/button.component.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'nwui-button',
|
||||||
|
templateUrl: './button.component.html',
|
||||||
|
styleUrls: ['./button.component.scss'],
|
||||||
|
standalone: true,
|
||||||
|
imports: [CommonModule],
|
||||||
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
|
})
|
||||||
|
export class NWUIButtonComponent {
|
||||||
|
@Input() disabled = false;
|
||||||
|
@Input() type = 'button';
|
||||||
|
}
|
||||||
1
nwaifu-ui/src/lib/components/button/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export * from './button.component';
|
||||||
2
nwaifu-ui/src/lib/components/index.ts
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
export * from './button';
|
||||||
|
export * from './textarea';
|
||||||
1
nwaifu-ui/src/lib/components/textarea/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export * from './textarea.component';
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<div [attr.contenteditable]="contenteditable" [className]="className" #ref (blur)="leaveFn()">
|
||||||
|
@if(!value) {
|
||||||
|
<ng-content></ng-content>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
.nwui-textarea {
|
||||||
|
border-radius: 8px;
|
||||||
|
height: auto;
|
||||||
|
color: #efdee0;
|
||||||
|
outline: none;
|
||||||
|
padding-inline: 2rem 1rem;
|
||||||
|
background-color: transparent;
|
||||||
|
border: 2px solid #e4bdc3;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: inherit;
|
||||||
|
min-height: 3rem;
|
||||||
|
line-height: 3rem;
|
||||||
|
&:focus {
|
||||||
|
border: 2px solid #efdee0;
|
||||||
|
}
|
||||||
|
&.disabled {
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
35
nwaifu-ui/src/lib/components/textarea/textarea.component.ts
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { AfterViewInit, Component, ElementRef, EventEmitter, Input, Output, ViewChild } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'nwui-textarea',
|
||||||
|
imports: [CommonModule],
|
||||||
|
standalone: true,
|
||||||
|
styleUrls: ['./textarea.component.scss'],
|
||||||
|
templateUrl: './textarea.component.html',
|
||||||
|
// changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
|
})
|
||||||
|
export class NWUITextAreaComponent implements AfterViewInit {
|
||||||
|
@Input() disabled = false;
|
||||||
|
@Input() value = '';
|
||||||
|
@Input() contenteditable = true;
|
||||||
|
@Output() leave = new EventEmitter<string>();
|
||||||
|
@ViewChild('ref') ref: ElementRef<HTMLDivElement> | null = null;
|
||||||
|
|
||||||
|
get className(): string {
|
||||||
|
return `nwui-textarea ${this.disabled && !this.contenteditable ? 'disabled' : ''}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
leaveFn() {
|
||||||
|
if (this.ref) {
|
||||||
|
const target = this.ref.nativeElement;
|
||||||
|
const text = target.textContent || '';
|
||||||
|
if (this.leave) this.leave.emit(text);
|
||||||
|
target.textContent = text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ngAfterViewInit(): void {
|
||||||
|
if (this.ref && this.value) this.ref.nativeElement.textContent = this.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
1
nwaifu-ui/src/lib/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export * from './components';
|
||||||
27
nwaifu-ui/tsconfig.json
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "es2022",
|
||||||
|
"useDefineForClassFields": false,
|
||||||
|
"forceConsistentCasingInFileNames": true,
|
||||||
|
"strict": true,
|
||||||
|
"noImplicitOverride": true,
|
||||||
|
"noPropertyAccessFromIndexSignature": true,
|
||||||
|
"noImplicitReturns": true,
|
||||||
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
"esModuleInterop": true
|
||||||
|
},
|
||||||
|
"files": [],
|
||||||
|
"include": [],
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"path": "./tsconfig.lib.json"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"extends": "../tsconfig.base.json",
|
||||||
|
"angularCompilerOptions": {
|
||||||
|
"enableI18nLegacyMessageIdFormat": false,
|
||||||
|
"strictInjectionParameters": true,
|
||||||
|
"strictInputAccessModifiers": true,
|
||||||
|
"strictTemplates": true
|
||||||
|
}
|
||||||
|
}
|
||||||
12
nwaifu-ui/tsconfig.lib.json
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"extends": "./tsconfig.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "../dist/out-tsc",
|
||||||
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
|
"inlineSources": true,
|
||||||
|
"types": []
|
||||||
|
},
|
||||||
|
"exclude": ["src/**/*.spec.ts", "src/test-setup.ts", "jest.config.ts", "src/**/*.test.ts"],
|
||||||
|
"include": ["src/**/*.ts"]
|
||||||
|
}
|
||||||
1
nx-cloud.env.example
Normal file
@@ -0,0 +1 @@
|
|||||||
|
NX_CLOUD_ACCESS_TOKEN=TOKEN
|
||||||
40
nx.json
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
{
|
||||||
|
"defaultBase": "main",
|
||||||
|
"namedInputs": {
|
||||||
|
"sharedGlobals": [],
|
||||||
|
"default": ["{projectRoot}/**/*", "sharedGlobals"],
|
||||||
|
"production": [
|
||||||
|
"default",
|
||||||
|
"!{projectRoot}/tsconfig.spec.json",
|
||||||
|
"!{projectRoot}/**/*.spec.[jt]s",
|
||||||
|
"!{projectRoot}/karma.conf.js",
|
||||||
|
"!{projectRoot}/.eslintrc.json",
|
||||||
|
"!{projectRoot}/eslint.config.js"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"targetDefaults": {
|
||||||
|
"build": {
|
||||||
|
"dependsOn": ["^build"],
|
||||||
|
"inputs": ["production", "^production"],
|
||||||
|
"cache": true
|
||||||
|
},
|
||||||
|
"test": {
|
||||||
|
"inputs": ["default", "^production", "{workspaceRoot}/karma.conf.js"],
|
||||||
|
"cache": true
|
||||||
|
},
|
||||||
|
"lint": {
|
||||||
|
"inputs": ["default", "{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/eslint.config.js"],
|
||||||
|
"cache": true
|
||||||
|
},
|
||||||
|
"@nx/eslint:lint": {
|
||||||
|
"cache": true,
|
||||||
|
"inputs": [
|
||||||
|
"default",
|
||||||
|
"{workspaceRoot}/.eslintrc.json",
|
||||||
|
"{workspaceRoot}/.eslintignore",
|
||||||
|
"{workspaceRoot}/eslint.config.js"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nxCloudAccessToken": "${NX_CLOUD_ACCESS_TOKEN}"
|
||||||
|
}
|
||||||
61
package.json
@@ -3,54 +3,67 @@
|
|||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "nx serve NwaifuWeb",
|
||||||
"build": "ng build --base-href https://nwaifu.su/ --configuration production",
|
"build": "nx build NwaifuWeb --base-href https://nwaifu.su/ --configuration production",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "nx build NwaifuWeb --watch --configuration development",
|
||||||
"test": "ng test",
|
"test": "nx test",
|
||||||
"lint": "ng lint"
|
"lint": "nx lint"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^17.2.0",
|
"@angular/animations": "18.0.3",
|
||||||
"@angular/common": "^17.2.0",
|
"@angular/common": "18.0.3",
|
||||||
"@angular/compiler": "^17.2.0",
|
"@angular/compiler": "18.0.3",
|
||||||
"@angular/core": "^17.2.0",
|
"@angular/core": "18.0.3",
|
||||||
"@angular/forms": "^17.2.0",
|
"@angular/forms": "18.0.3",
|
||||||
"@angular/platform-browser": "^17.2.0",
|
"@angular/platform-browser": "18.0.3",
|
||||||
"@angular/platform-browser-dynamic": "^17.2.0",
|
"@angular/platform-browser-dynamic": "18.0.3",
|
||||||
"@angular/router": "^17.2.0",
|
"@angular/router": "18.0.3",
|
||||||
"@fortawesome/angular-fontawesome": "0.14.1",
|
"@fortawesome/angular-fontawesome": "0.14.1",
|
||||||
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
||||||
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
||||||
"@fortawesome/free-regular-svg-icons": "^6.4.2",
|
"@fortawesome/free-regular-svg-icons": "^6.4.2",
|
||||||
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
||||||
"@ngneat/dialog": "5.0.0",
|
"@ngneat/dialog": "5.0.0",
|
||||||
|
"@nx/eslint-plugin": "^19.3.0",
|
||||||
"rxjs": "~7.8.0",
|
"rxjs": "~7.8.0",
|
||||||
"tslib": "^2.3.0",
|
"tslib": "^2.3.0",
|
||||||
"zone.js": "~0.14.3"
|
"zone.js": "~0.14.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-devkit/build-angular": "^17.2.2",
|
"@angular-devkit/build-angular": "18.0.5",
|
||||||
"@angular-eslint/builder": "17.2.1",
|
"@angular-devkit/core": "18.0.5",
|
||||||
"@angular-eslint/eslint-plugin": "17.2.1",
|
"@angular-devkit/schematics": "18.0.5",
|
||||||
"@angular-eslint/eslint-plugin-template": "17.2.1",
|
"@angular-eslint/eslint-plugin": "18.0.1",
|
||||||
"@angular-eslint/schematics": "17.2.1",
|
"@angular-eslint/eslint-plugin-template": "18.0.1",
|
||||||
"@angular-eslint/template-parser": "17.2.1",
|
"@angular-eslint/template-parser": "18.0.1",
|
||||||
"@angular/cli": "^17.2.2",
|
"@angular/cli": "~18.0.0",
|
||||||
"@angular/compiler-cli": "^17.2.0",
|
"@angular/compiler-cli": "18.0.3",
|
||||||
|
"@nx/angular": "19.3.0",
|
||||||
|
"@nx/eslint": "19.3.0",
|
||||||
|
"@nx/js": "19.3.0",
|
||||||
|
"@nx/workspace": "19.3.0",
|
||||||
|
"@schematics/angular": "18.0.5",
|
||||||
|
"@swc-node/register": "1.9.2",
|
||||||
|
"@swc/core": "1.5.7",
|
||||||
|
"@swc/helpers": "0.5.11",
|
||||||
|
"@types/bun": "latest",
|
||||||
"@types/jasmine": "~5.1.0",
|
"@types/jasmine": "~5.1.0",
|
||||||
"@typescript-eslint/eslint-plugin": "6.19.0",
|
"@typescript-eslint/eslint-plugin": "6.19.0",
|
||||||
"@typescript-eslint/parser": "6.19.0",
|
"@typescript-eslint/parser": "6.19.0",
|
||||||
|
"@typescript-eslint/utils": "^8.0.0-alpha.28",
|
||||||
"autoprefixer": "^10.4.18",
|
"autoprefixer": "^10.4.18",
|
||||||
"eslint": "^8.56.0",
|
"eslint": "~8.57.0",
|
||||||
"jasmine-core": "~5.1.0",
|
"jasmine-core": "~5.1.0",
|
||||||
"karma": "~6.4.0",
|
"karma": "~6.4.0",
|
||||||
"karma-chrome-launcher": "~3.2.0",
|
"karma-chrome-launcher": "~3.2.0",
|
||||||
"karma-coverage": "~2.2.0",
|
"karma-coverage": "~2.2.0",
|
||||||
"karma-jasmine": "~5.1.0",
|
"karma-jasmine": "~5.1.0",
|
||||||
"karma-jasmine-html-reporter": "~2.1.0",
|
"karma-jasmine-html-reporter": "~2.1.0",
|
||||||
"postcss": "^8.4.35",
|
"nx": "19.3.0",
|
||||||
|
"postcss": "^8.4.38",
|
||||||
|
"prettier": "^3.3.2",
|
||||||
"tailwindcss": "^3.4.1",
|
"tailwindcss": "^3.4.1",
|
||||||
"typescript": "~5.3.2"
|
"typescript": "~5.4.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
8616
pnpm-lock.yaml
generated
@@ -1,7 +0,0 @@
|
|||||||
<header>
|
|
||||||
<app-panel></app-panel>
|
|
||||||
</header>
|
|
||||||
<main class="main">
|
|
||||||
<app-modal></app-modal>
|
|
||||||
<app-dock></app-dock>
|
|
||||||
</main>
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
import { Routes } from '@angular/router';
|
|
||||||
|
|
||||||
export const routes: Routes = [];
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
import { bootstrapApplication } from '@angular/platform-browser';
|
|
||||||
import { appConfig } from './app/app.config';
|
|
||||||
import { AppComponent } from './app/app.component';
|
|
||||||
|
|
||||||
bootstrapApplication(AppComponent, appConfig)
|
|
||||||
.catch((err) => console.error(err));
|
|
||||||