summaryrefslogtreecommitdiff
path: root/Apps/ViewManager.cs
blob: 66e08ae8ed5ded0fa7d73f73ef71805bae864179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
 *  Copyright (c) 2022 Samsung Electronics Co., Ltd All Rights Reserved
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License
 */

using System;
using System.Linq;
using System.Threading.Tasks;
using System.Collections.Generic;
using Tizen.NUI;
using Tizen.NUI.Binding;
using Tizen.NUI.Components;
using Tizen.Applications;
using Apps.Common;
using Apps.ViewModels;
using Apps.Views;

namespace Apps
{
    class ViewManager
    {
        public event EventHandler<List<string>> AppsSelected;

        private IEnumerable<ApplicationInfo> appList;
        private AppViewModel appViewModel;
        private AppView appView;
        private SelectAppsView selectAppsView;

        public ViewManager()
        {
            Task<IEnumerable<ApplicationInfo>> appListTask = CreateAppList();

            appViewModel = new AppViewModel();
            appView = new AppView();
            appView.BindingContext = appViewModel;
            appView.SetBinding(AppView.AppRemoveCommandProperty, "AppRemoveCommand");
            appView.SetBinding(RecyclerView.ItemsSourceProperty, "AppListSource");
            Window.Instance.Add(appView);
            UpdateViewModel(appListTask);
            Window.Instance.Resized += OnWindowResized;

            PackageManager.InstallProgressChanged += OnInstallProgressChanged;
            PackageManager.UninstallProgressChanged += OnUninstallProgressChanged;
        }

        public void CleanUp()
        {
            PackageManager.InstallProgressChanged -= OnInstallProgressChanged;
            PackageManager.UninstallProgressChanged -= OnUninstallProgressChanged;
            appView?.Dispose();
            appView = null;
            selectAppsView?.Dispose();
            selectAppsView = null;
        }

        public void LaunchSelectMode(List<string> invalidApps)
        {
            Window.Instance.Remove(appView);
            appView?.Dispose();
            appView = null;
            if (invalidApps != null)
            {
                Task<IEnumerable<ApplicationInfo>> appListTask = CreateAppList();
                UpdateViewModel(appListTask, invalidApps);
            }
            if (selectAppsView == null)
            {
                selectAppsView = new SelectAppsView();
            }
            appViewModel.CreateSelectModeFields();
            selectAppsView.BindingContext = appViewModel;
            selectAppsView.SetBinding(RecyclerView.ItemsSourceProperty, "AppListSource");
            selectAppsView.SetBinding(CollectionView.SelectionChangedCommandProperty, "SelectionChangedCommand");
            appViewModel.AppsSelected += (object sender, List<string> e) =>
            {
                AppsSelected.Invoke(this, e);
            };
            Window.Instance.Add(selectAppsView);
        }

        private void OnWindowResized(object sender, Window.ResizedEventArgs e)
        {
            appView?.UpdateSize();
            selectAppsView?.UpdateSize();
        }

        private Task<IEnumerable<ApplicationInfo>> CreateAppList()
        {
            ApplicationInfoFilter appInfoFilter = new ApplicationInfoFilter();
            appInfoFilter.Filter.Add(ApplicationInfoFilter.Keys.NoDisplay, "False");
            return ApplicationManager.GetInstalledApplicationsAsync(appInfoFilter);
        }

        private void UpdateViewModel(Task<IEnumerable<ApplicationInfo>> appListTask)
        {
            appListTask.Wait();
            appList = appListTask.Result;
            appList = appList.OrderBy(c => c.Label);
            appViewModel.CreateData(appList);
        }

        private void UpdateViewModel(Task<IEnumerable<ApplicationInfo>> appListTask, List<string> invalidApps)
        {
            appListTask.Wait();
            appList = appListTask.Result;
            appList = appList.OrderBy(c => c.Label);
            foreach (string appId in invalidApps)
            {
                appList = appList.Where(c => c.ApplicationId != appId);
            }
            appViewModel.CreateData(appList);
        }

        private void OnInstallProgressChanged(object sender, PackageManagerEventArgs e)
        {
            if (e.State == PackageEventState.Completed)
            {
                Package package = PackageManager.GetPackage(e.PackageId);
                foreach(ApplicationInfo appInfo in package.GetApplications())
                {
                    if (appInfo.IsNoDisplay == false)
                    {
                        appList = appList.Append(appInfo);
                        appViewModel.InsertApp(appInfo);
                    }
                }
                appList = appList.OrderBy(c => c.Label);
            }
        }
        private void OnUninstallProgressChanged(object sender, PackageManagerEventArgs e)
        {
            if (e.State == PackageEventState.Completed)
            {
                Tizen.Log.Info(Resources.LogTag, "Package id is : " + e.PackageId);
                foreach (ApplicationInfo appInfo in appList)
                {
                    if (appInfo.PackageId == e.PackageId)
                    {
                        appViewModel.RemoveApp(appInfo.ApplicationId);
                    }
                }
                appList = appList.Where(c => c.PackageId != e.PackageId);
                string uninstallSuccessMessage = "App has been uninstalled successfully";
                Notification.MakeToast(uninstallSuccessMessage, Notification.ToastBottom).Post(Notification.ToastShort);
            }
            else if (e.State == PackageEventState.Failed)
            {
                string uninstallFailedMessage = "This app can't be uninstalled";
                Notification.MakeToast(uninstallFailedMessage, Notification.ToastBottom).Post(Notification.ToastShort);
            }
        }
    }
}