Interactive Angular 19 demo for @sda/notification-elements-ui with 6 sections: Bell & Feed, Notification Center, Inbox, Comments & Threads, Mention Input, and Full-Featured layout. Includes mock data, dark mode toggle, and real-time event log. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
45 lines
2.2 KiB
JavaScript
45 lines
2.2 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.newNoModificationAllowedError = exports.newNotAllowedError = exports.newTypeMismatchError = exports.newNotFoundError = exports.assertCanWrite = exports.assertName = exports.basename = exports.ctx = void 0;
|
|
const FileLockManager_1 = require("./FileLockManager");
|
|
/**
|
|
* Creates a new {@link CoreFsaContext}.
|
|
*/
|
|
const ctx = (partial = {}) => {
|
|
return {
|
|
separator: '/',
|
|
syncHandleAllowed: false,
|
|
mode: 'read',
|
|
locks: new FileLockManager_1.FileLockManager(),
|
|
...partial,
|
|
};
|
|
};
|
|
exports.ctx = ctx;
|
|
const basename = (path, separator) => {
|
|
if (path[path.length - 1] === separator)
|
|
path = path.slice(0, -1);
|
|
const lastSlashIndex = path.lastIndexOf(separator);
|
|
return lastSlashIndex === -1 ? path : path.slice(lastSlashIndex + 1);
|
|
};
|
|
exports.basename = basename;
|
|
const nameRegex = /^(\.{1,2})$|[\/\\]/;
|
|
const assertName = (name, method, klass) => {
|
|
const isInvalid = !name || nameRegex.test(name);
|
|
if (isInvalid)
|
|
throw new TypeError(`Failed to execute '${method}' on '${klass}': Name is not allowed.`);
|
|
};
|
|
exports.assertName = assertName;
|
|
const assertCanWrite = (mode) => {
|
|
if (mode !== 'readwrite')
|
|
throw new DOMException('The request is not allowed by the user agent or the platform in the current context.', 'NotAllowedError');
|
|
};
|
|
exports.assertCanWrite = assertCanWrite;
|
|
const newNotFoundError = () => new DOMException('A requested file or directory could not be found at the time an operation was processed.', 'NotFoundError');
|
|
exports.newNotFoundError = newNotFoundError;
|
|
const newTypeMismatchError = () => new DOMException('The path supplied exists, but was not an entry of requested type.', 'TypeMismatchError');
|
|
exports.newTypeMismatchError = newTypeMismatchError;
|
|
const newNotAllowedError = () => new DOMException('Permission not granted.', 'NotAllowedError');
|
|
exports.newNotAllowedError = newNotAllowedError;
|
|
const newNoModificationAllowedError = () => new DOMException('The file is locked and cannot be modified.', 'NoModificationAllowedError');
|
|
exports.newNoModificationAllowedError = newNoModificationAllowedError;
|
|
//# sourceMappingURL=util.js.map
|