mirror of
https://github.com/HangarMC/Hangar.git
synced 2025-01-18 14:14:50 +08:00
76 lines
2.1 KiB
TypeScript
76 lines
2.1 KiB
TypeScript
import { Component, Prop, Vue, Watch } from 'nuxt-property-decorator';
|
|
import { PropType } from 'vue';
|
|
import { HangarProject, ProjectPage } from 'hangar-internal';
|
|
import MarkdownEditor from '~/components/MarkdownEditor.vue';
|
|
import { NamedPermission } from '~/types/enums';
|
|
|
|
@Component
|
|
export class HangarProjectMixin extends Vue {
|
|
@Prop({ type: Object as PropType<HangarProject>, required: true })
|
|
project!: HangarProject;
|
|
}
|
|
|
|
@Component
|
|
export class DocPageMixin extends HangarProjectMixin {
|
|
editingPage: boolean = false;
|
|
page = {
|
|
contents: '',
|
|
deletable: false,
|
|
} as ProjectPage;
|
|
|
|
$refs!: {
|
|
editor: MarkdownEditor;
|
|
};
|
|
|
|
get canEdit(): boolean {
|
|
return this.$util.hasPerms(NamedPermission.EDIT_PAGE);
|
|
}
|
|
|
|
savePage(content: string) {
|
|
this.$api
|
|
.requestInternal(`pages/save/${this.project.id}/${this.page.id}`, true, 'post', {
|
|
content,
|
|
})
|
|
.then(() => {
|
|
this.page.contents = content;
|
|
this.editingPage = false;
|
|
})
|
|
.catch((err) => {
|
|
this.$refs.editor.loading.save = false;
|
|
this.$util.handleRequestError(err, 'Unable to save page');
|
|
});
|
|
}
|
|
|
|
deletePage() {
|
|
this.$api
|
|
.requestInternal(`pages/delete/${this.project.id}/${this.page.id}`, true, 'post')
|
|
.then(() => {
|
|
this.$refs.editor.loading.delete = false;
|
|
this.$router.replace(`/${this.$route.params.author}/${this.$route.params.slug}`);
|
|
})
|
|
.catch(this.$util.handleRequestError);
|
|
}
|
|
}
|
|
|
|
@Component
|
|
export class HangarModal extends Vue {
|
|
dialog: boolean = false;
|
|
|
|
@Prop({ type: String, default: '' })
|
|
activatorClass!: string;
|
|
|
|
@Watch('dialog')
|
|
onToggleView() {
|
|
if (typeof this.$refs.modalForm !== 'undefined') {
|
|
// @ts-ignore
|
|
this.$refs.modalForm.reset();
|
|
}
|
|
}
|
|
}
|
|
|
|
@Component
|
|
export class HangarFormModal extends HangarModal {
|
|
loading: boolean = false;
|
|
validForm: boolean = false;
|
|
}
|