You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

155 lines
4.0 KiB

import { Component, OnInit } from '@angular/core'
5 years ago
import { ApisService } from '../services/apis.service'
import { AuthService } from '../services/auth.service'
5 years ago
import { AngularEditorConfig } from '@kolkov/angular-editor'
import { environment } from '../../environments/environment'
import { editorConfig } from '../../config/config'
@Component({
selector: 'app-admin',
templateUrl: './admin.component.html',
styleUrls: ['./admin.component.scss']
})
export class AdminComponent implements OnInit {
5 years ago
private restApi = `${environment.API_URL}`
public authCheck: boolean = false
public userName: string = ''
public password: string = ''
5 years ago
public activeEditor: string = ''
public exhibitions: any = []
5 years ago
public selectedExhibitions: any = []
public selectedVideos: any = []
public selectedGallery: any = []
5 years ago
// ngModels
5 years ago
public title: string = ''
public type: string = ''
public content: string = ''
public tags: string = ''
public mainImage: any = null
5 years ago
public videoType: string = ''
public videoURL: string = ''
5 years ago
editorConfig: AngularEditorConfig = editorConfig
5 years ago
constructor(
private authService: AuthService,
private apisService: ApisService
) { }
5 years ago
ngOnInit(): void {
this.selectedGallery = [
{
main: true,
title: '',
url: 'http://unsplash.it/800/600'
},
{
title: '',
url: 'http://unsplash.it/800/700'
}
]
5 years ago
const body = { token: window.sessionStorage.getItem('authToken') }
this.authService.authCheck(body).toPromise().then((response) => {
this.authCheck = response.status == 200
5 years ago
this.apisService.getPortfolio('exhibitions').toPromise().then((response) => {
this.exhibitions = response.items
},(error) => {
console.error('getPortfolio ERROR', error)
}).catch((e) => {
console.error('getPortfolio CATCH', e)
})
},(error) => {
console.error('Auth ERROR', error)
}).catch((e) => {
console.error('Auth CATCH', e)
})
}
login(): void {
5 years ago
const body = { usr: this.userName, pwd: this.password }
this.authService.login(body).toPromise().then((response) => {
this.authCheck = response.status == 200
if(this.authCheck) {
window.sessionStorage.setItem('authToken', response.authToken)
}
},(error) => {
console.error('Auth ERROR', error)
}).catch((e) => {
console.error('Auth CATCH', e)
})
5 years ago
}
showEditor(section): void {
this.activeEditor = section
}
5 years ago
exhibitionAdd(id): void {
5 years ago
this.selectedExhibitions.push(
this.exhibitions.filter(item => item.id == id)[0]
)
this.exhibitions = this.exhibitions.filter(item => item.id != id)
5 years ago
}
5 years ago
exhibitionRemove(id): void {
this.exhibitions.push(
this.selectedExhibitions.filter(item => item.id == id)[0]
)
5 years ago
this.selectedExhibitions = this.selectedExhibitions.filter(item => item.id != id)
}
5 years ago
videoAdd(): void {
this.selectedVideos.push({
type: this.videoType,
url: this.videoURL
})
this.videoURL = ''
}
5 years ago
videoRemove(url): void {
this.selectedVideos = this.selectedVideos.filter(item => item.url != url)
}
onFileChanged(e) {
const file = (<HTMLInputElement>e.target).files[0]
const uploadData = new FormData()
uploadData.append('file', file, file.name)
this.apisService.uploadImage(uploadData).toPromise().then((response) => {
this.selectedGallery.push({
title: response.title || '',
url: response.imageUrl
})
},(error) => {
console.error(error)
}).catch((e) => {
console.error(e)
})
}
gallerySetMain(url): void {
this.selectedGallery.forEach((e) => {
if(e.url == url) {
e.main = true
} else {
delete e.main
}
})
}
galleryRemove(url): void {
this.apisService.removeImage(url).toPromise().then((response) => {
this.selectedGallery = this.selectedGallery.filter(item => item.url != url)
},(error) => {
console.error(error)
}).catch((e) => {
console.error(e)
})
}
}