Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-22 17:30:29 +01:00
FIX: Client-side exception fixes
Dieser Commit ist enthalten in:
Ursprung
3e25f43ba0
Commit
ebea3e666a
3 geänderte Dateien mit 8 neuen und 3 gelöschten Zeilen
|
@ -241,6 +241,10 @@ const custom_field = {
|
||||||
type: ["string", "boolean", "integer", "json"],
|
type: ["string", "boolean", "integer", "json"],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export function buildFieldTypes(types) {
|
||||||
|
wizardSchema.field.types = types;
|
||||||
|
}
|
||||||
|
|
||||||
field.type = Object.keys(field.types);
|
field.type = Object.keys(field.types);
|
||||||
action.type = Object.keys(action.types);
|
action.type = Object.keys(action.types);
|
||||||
|
|
||||||
|
@ -260,7 +264,7 @@ export function buildFieldValidations(validations) {
|
||||||
export function filterValues(currentWizard, feature, attribute, values = null) {
|
export function filterValues(currentWizard, feature, attribute, values = null) {
|
||||||
values = values || wizardSchema[feature][attribute];
|
values = values || wizardSchema[feature][attribute];
|
||||||
|
|
||||||
if (currentWizard.allowGuests) {
|
if (currentWizard && currentWizard.allowGuests) {
|
||||||
const filteredFeature = wizardSchema.filters.allow_guests[feature];
|
const filteredFeature = wizardSchema.filters.allow_guests[feature];
|
||||||
if (filteredFeature) {
|
if (filteredFeature) {
|
||||||
const filtered = filteredFeature[attribute];
|
const filtered = filteredFeature[attribute];
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import DiscourseRoute from "discourse/routes/discourse";
|
import DiscourseRoute from "discourse/routes/discourse";
|
||||||
import { buildFieldValidations } from "../lib/wizard-schema";
|
import { buildFieldTypes, buildFieldValidations } from "../lib/wizard-schema";
|
||||||
import EmberObject, { set } from "@ember/object";
|
import EmberObject, { set } from "@ember/object";
|
||||||
import { A } from "@ember/array";
|
import { A } from "@ember/array";
|
||||||
import { all } from "rsvp";
|
import { all } from "rsvp";
|
||||||
|
@ -11,6 +11,7 @@ export default DiscourseRoute.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
afterModel(model) {
|
afterModel(model) {
|
||||||
|
buildFieldTypes(model.field_types);
|
||||||
buildFieldValidations(model.realtime_validations);
|
buildFieldValidations(model.realtime_validations);
|
||||||
|
|
||||||
return all([
|
return all([
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
# name: discourse-custom-wizard
|
# name: discourse-custom-wizard
|
||||||
# about: Forms for Discourse. Better onboarding, structured posting, data enrichment, automated actions and much more.
|
# about: Forms for Discourse. Better onboarding, structured posting, data enrichment, automated actions and much more.
|
||||||
# version: 2.2.2
|
# version: 2.2.3
|
||||||
# authors: Angus McLeod, Faizaan Gagan, Robert Barrow, Keegan George, Kaitlin Maddever
|
# authors: Angus McLeod, Faizaan Gagan, Robert Barrow, Keegan George, Kaitlin Maddever
|
||||||
# url: https://github.com/paviliondev/discourse-custom-wizard
|
# url: https://github.com/paviliondev/discourse-custom-wizard
|
||||||
# contact_emails: development@pavilion.tech
|
# contact_emails: development@pavilion.tech
|
||||||
|
|
Laden …
In neuem Issue referenzieren