Esempio n. 1
0
        /// <summary>
        /// Fills in any missing values and records it can to assist templating
        /// </summary>
        internal bool Resolve(Project project, Screen screen, out string message)
        {
            var errors = new List <string>();

            if (EntityId.HasValue)
            {
                Entity = project.Entities.SingleOrDefault(e => e.Id == EntityId.Value);
            }

            if (ParentScreenSectionId.HasValue)
            {
                ParentScreenSection = screen.ScreenSections.Single(p => p.Id == ParentScreenSectionId.Value);
            }

            switch (ScreenSectionType)
            {
            case ScreenSectionType.Form:
                ResolveFormSection(project, screen);

                if (!FormSection.Resolve(project, screen, this, out string formSectionMessage))
                {
                    errors.Add(formSectionMessage);
                }
                break;

            case ScreenSectionType.Search:
                ResolveSearchSection(project, screen);
                break;

            case ScreenSectionType.MenuList:
                break;

            case ScreenSectionType.Html:
                break;

            default:
                break;
            }

            if (errors.Any())
            {
                message = string.Join(Environment.NewLine, errors);
                return(false);
            }
            else
            {
                message = "Success";
                return(true);
            }
        }
Esempio n. 2
0
        /// <summary>
        /// Resolve Form Section
        /// </summary>
        private void ResolveFormSection(Project project, Screen screen)
        {
            if (FormSection != null && FormSection.FormFields != null)
            {
                return;
            }

            // Create Default Search Screens
            var formFields = new List <FormField>();

            foreach (var property in Entity.Properties)
            {
                switch (property.PropertyType)
                {
                case PropertyType.PrimaryKey:
                case PropertyType.ParentRelationshipOneToMany:
                    formFields.Add(new FormField
                    {
                        EntityPropertyId = property.Id,
                        Property         = property,
                        Project          = project,
                        IsHiddenFromUi   = true
                    });
                    break;

                case PropertyType.ParentRelationshipOneToOne:
                    // TODO: figure out how to display these
                    continue;

                default:
                    formFields.Add(new FormField
                    {
                        EntityPropertyId = property.Id,
                        Property         = property,
                        Project          = project
                    });
                    break;
                }
            }

            FormSection = new FormSection
            {
                FormFields = formFields
            };
        }