Exemplo n.º 1
0
        private static void OnErrorMessageChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            OutcomeAmount control = (OutcomeAmount)d;

            if (String.IsNullOrEmpty(control.ErrorMessage))
            {
                control.tblError.Text       = String.Empty;
                control.tblError.Visibility = Visibility.Collapsed;
            }
            else
            {
                control.tblError.Text       = control.ErrorMessage;
                control.tblError.Visibility = Visibility.Visible;
            }
        }
Exemplo n.º 2
0
        public async Task ShowAsync(object context)
        {
            OutcomeParameter parameter = (OutcomeParameter)context;

            decimal  amount      = 0;
            string   currency    = null;
            string   description = String.Empty;
            DateTime when        = DateTime.Now;
            IKey     categoryKey = parameter.CategoryKey;

            // Initiate categories loading...
            CategoryPicker categoryDialog = new CategoryPicker();

            OutcomeAmount amountDialog = new OutcomeAmount(queryDispatcher);

            amountDialog.PrimaryButtonText = "Next";

            if (parameter.CategoryKey.IsEmpty)
            {
                amountDialog.SecondaryButtonText = String.Empty;
            }
            else
            {
                amountDialog.SecondaryButtonText = "Create today";
            }

            if (parameter.Amount != null)
            {
                amountDialog.Value    = parameter.Amount.Value;
                amountDialog.Currency = parameter.Amount.Currency;
            }

            ContentDialogResult result = await amountDialog.ShowAsync(false);

            amount   = amountDialog.Value;
            currency = amountDialog.Currency;
            if (result == ContentDialogResult.Primary)
            {
                categoryDialog.PrimaryButtonText   = "Next";
                categoryDialog.SecondaryButtonText = "Create today";
                if (!parameter.CategoryKey.IsEmpty)
                {
                    categoryDialog.SelectedKey = parameter.CategoryKey;
                }

                result = await categoryDialog.ShowAsync();

                if (result == ContentDialogResult.None)
                {
                    return;
                }

                categoryKey = categoryDialog.SelectedKey;
                if (result == ContentDialogResult.Primary)
                {
                    OutcomeDescription descriptionDialog = new OutcomeDescription();
                    descriptionDialog.PrimaryButtonText   = "Next";
                    descriptionDialog.SecondaryButtonText = "Create today";

                    result = await descriptionDialog.ShowAsync();

                    if (result == ContentDialogResult.None && !descriptionDialog.IsEnterPressed)
                    {
                        return;
                    }

                    description = descriptionDialog.Value;

                    if (result == ContentDialogResult.Primary || descriptionDialog.IsEnterPressed)
                    {
                        OutcomeWhen whenDialog = new OutcomeWhen();
                        whenDialog.PrimaryButtonText   = "Create";
                        whenDialog.SecondaryButtonText = "Cancel";
                        whenDialog.Value = when;

                        result = await whenDialog.ShowAsync();

                        if (result != ContentDialogResult.Primary)
                        {
                            return;
                        }

                        when = whenDialog.Value;
                    }
                }
            }

            await commandDispatcher.HandleAsync(new CreateOutcome(
                                                    new Price(amount, currency),
                                                    description,
                                                    when,
                                                    categoryKey
                                                    ));

            //OutcomeCreatedGuidePost nextDialog = new OutcomeCreatedGuidePost();
            //await nextDialog.ShowAsync();
        }
Exemplo n.º 3
0
        public async Task ShowAsync(object context)
        {
            OutcomeParameter parameter = (OutcomeParameter)context;

            decimal  amount      = 0;
            string   description = String.Empty;
            DateTime when        = DateTime.Now;
            IKey     categoryKey = parameter.CategoryKey;

            OutcomeAmount amountDialog = new OutcomeAmount();

            amountDialog.PrimaryButtonText = "Next";

            if (parameter.CategoryKey.IsEmpty)
            {
                amountDialog.SecondaryButtonText = String.Empty;
            }
            else
            {
                amountDialog.SecondaryButtonText = "Create today";
            }

            if (parameter.Amount != null)
            {
                amountDialog.Value = (double)parameter.Amount.Value;
            }

            ContentDialogResult result = await amountDialog.ShowAsync();

            if (result == ContentDialogResult.None)
            {
                return;
            }

            amount = (decimal)amountDialog.Value;
            if (result == ContentDialogResult.Primary)
            {
                OutcomeDescription descriptionDialog = new OutcomeDescription();
                descriptionDialog.PrimaryButtonText = "Next";

                if (parameter.CategoryKey.IsEmpty)
                {
                    descriptionDialog.SecondaryButtonText = String.Empty;
                }
                else
                {
                    descriptionDialog.SecondaryButtonText = "Create today";
                }

                result = await descriptionDialog.ShowAsync();

                if (result == ContentDialogResult.None && !descriptionDialog.IsEnterPressed)
                {
                    return;
                }

                description = descriptionDialog.Value;
                if (result == ContentDialogResult.Primary || descriptionDialog.IsEnterPressed)
                {
                    CategoryPicker categoryDialog = new CategoryPicker();
                    categoryDialog.PrimaryButtonText   = "Next";
                    categoryDialog.SecondaryButtonText = "Create today";
                    if (!parameter.CategoryKey.IsEmpty)
                    {
                        categoryDialog.SelectedKey = parameter.CategoryKey;
                    }

                    result = await categoryDialog.ShowAsync();

                    if (result == ContentDialogResult.None)
                    {
                        return;
                    }

                    categoryKey = categoryDialog.SelectedKey;
                    if (result == ContentDialogResult.Primary)
                    {
                        OutcomeWhen whenDialog = new OutcomeWhen();
                        whenDialog.PrimaryButtonText   = "Create";
                        whenDialog.SecondaryButtonText = "Cancel";
                        whenDialog.Value = when;

                        result = await whenDialog.ShowAsync();

                        if (result != ContentDialogResult.Primary)
                        {
                            return;
                        }

                        when = whenDialog.Value;
                    }
                }
            }

            await domainFacade.CreateOutcomeAsync(
                domainFacade.PriceFactory.Create(amount),
                description,
                when,
                categoryKey
                );

            //OutcomeCreatedGuidePost nextDialog = new OutcomeCreatedGuidePost();
            //await nextDialog.ShowAsync();
        }