19 lines
658 B
TypeScript
19 lines
658 B
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { DurationInSeconds } from './durations';
|
|
import type { ItemsStateType } from '../state/ducks/items';
|
|
|
|
export const ITEM_NAME = 'universalExpireTimer';
|
|
|
|
export function get(): DurationInSeconds {
|
|
return DurationInSeconds.fromSeconds(window.storage.get(ITEM_NAME) || 0);
|
|
}
|
|
export function getForRedux(items: ItemsStateType): DurationInSeconds {
|
|
return DurationInSeconds.fromSeconds(items[ITEM_NAME] || 0);
|
|
}
|
|
|
|
export function set(newValue: DurationInSeconds | undefined): Promise<void> {
|
|
return window.storage.put(ITEM_NAME, newValue || DurationInSeconds.ZERO);
|
|
}
|