mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02:00
* Initial scaffolding for expiration configuration * Simplifying the code and adding support for expiration events * Bit more cleanup * Initial support for expirable keep-awake * Update some of the threading logic * Logging and timing consistency * Initial UI scaffolding * Fix pathing issue for the icon when using config file * Add missing definitions * Update with basic interface * Cleanup redundant calls * Update name per convention * Simplify declaration * Proper binding to secondary Time property * Cleanup the terminology use * Standardize naming conventions. * More Awake cleanup * Ability to update the UI when the tray icon updates * Small tweaks before ViewModel refactor * Refactor the view model logic * Some consistency fixes * Remove the build props change * Add settings scaffolding when a file does not exist * Update expect.txt * Fix typos * Update build in logs * Updating based on discussion in #24183. This specifically addresses the fact that the `ExpirationDateTime` property was incorrectly auto-initialized to `DateTime.MinValue` when it should've been set to `DateTimeOffset.MinValue` to be consistent with the underlying type and assumptions around date/time. --------- Co-authored-by: Clint Rutkas <clint@rutkas.com>
88 lines
2.9 KiB
C#
88 lines
2.9 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using Microsoft.PowerToys.Settings.UI.Library.Interfaces;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
|
{
|
|
// This Singleton class is a wrapper around the settings configurations that are accessed by viewmodels.
|
|
// This class can have only one instance and therefore the settings configurations are common to all.
|
|
public class SettingsRepository<T> : ISettingsRepository<T>
|
|
where T : class, ISettingsConfig, new()
|
|
{
|
|
private static readonly object _SettingsRepoLock = new object();
|
|
|
|
private static ISettingsUtils _settingsUtils;
|
|
|
|
private static SettingsRepository<T> settingsRepository;
|
|
|
|
private T settingsConfig;
|
|
|
|
// Suppressing the warning as this is a singleton class and this method is
|
|
// necessarily static
|
|
#pragma warning disable CA1000 // Do not declare static members on generic types
|
|
public static SettingsRepository<T> GetInstance(ISettingsUtils settingsUtils)
|
|
#pragma warning restore CA1000 // Do not declare static members on generic types
|
|
{
|
|
// To ensure that only one instance of Settings Repository is created in a multi-threaded environment.
|
|
lock (_SettingsRepoLock)
|
|
{
|
|
if (settingsRepository == null)
|
|
{
|
|
settingsRepository = new SettingsRepository<T>();
|
|
_settingsUtils = settingsUtils ?? throw new ArgumentNullException(nameof(settingsUtils));
|
|
}
|
|
|
|
return settingsRepository;
|
|
}
|
|
}
|
|
|
|
// The Singleton class must have a private constructor so that it cannot be instantiated by any other object other than itself.
|
|
private SettingsRepository()
|
|
{
|
|
}
|
|
|
|
public bool ReloadSettings()
|
|
{
|
|
try
|
|
{
|
|
T settingsItem = new T();
|
|
settingsConfig = _settingsUtils.GetSettingsOrDefault<T>(settingsItem.GetModuleName());
|
|
|
|
SettingsConfig = settingsConfig;
|
|
|
|
return true;
|
|
}
|
|
catch
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Settings configurations shared across all viewmodels
|
|
public T SettingsConfig
|
|
{
|
|
get
|
|
{
|
|
if (settingsConfig == null)
|
|
{
|
|
T settingsItem = new T();
|
|
settingsConfig = _settingsUtils.GetSettingsOrDefault<T>(settingsItem.GetModuleName());
|
|
}
|
|
|
|
return settingsConfig;
|
|
}
|
|
|
|
set
|
|
{
|
|
if (value != null)
|
|
{
|
|
settingsConfig = value;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|