naja

Modern AJAX library for Nette Framework

MIT License

Downloads
22.1K
Stars
109
Committers
7

Bot releases are visible (Hide)

naja - 3.2.1 Latest Release

Published by github-actions[bot] 2 months ago

Minor changes and bugfixes

  • 🐞 Naja now does a better job at instructing browsers to use the correct title in the history entry. (#406, #407)
  • πŸ”§ The naja package now exports all event types and some other auxiliary types so that you can unleash full strictness onto your TypeScript codebase. (#408)
naja - 3.2.0

Published by github-actions[bot] 3 months ago

New features

  • ✨ UIHandler.submitForm() helper method now accepts a submitter element as its first parameter, in addition to a form. However, the native form.requestSubmit() method is the recommended way to manually dispatch form submissions to Naja in modern browsers.

Minor changes and bugfixes

  • πŸ”§ UI binding to forms has been simplified (#401, #402, thanks @filiphlm). Naja now does not bind itself onto submitter elements, instead it listens only on submit events of forms. The interaction event's element property continues to refer to the submitter element when available.
  • πŸ”§ Naja switched to the exports field in package.json

Compatibility considerations

Naja continues to hold its compatibility promise of working correctly "in the latest versions of Chromium (Chrome and Edge), Firefox, and WebKit (Safari)."

With this release, Naja newly relies on APIs that might not be available in some older versions of these browsers. If you still need to support these, please check the compatibility and available polyfills for the SubmitEvent.submitter property, and the submitter parameter in FormData() constructor.

naja - 3.1.0

Published by github-actions[bot] 6 months ago

New features

  • ✨ UIHandler provides a helper called processInteraction() that allows developers to process any custom interactions through Naja, including dispatching the interaction event. (#388)

Minor changes and bugfixes

  • 🐞 UIHandler binds onto form buttons without explicit type="submit". (#397)
naja - 3.0.0

Published by github-actions[bot] 8 months ago

Naja 3.0 is an evolutionary release and should not come with any breaking changes for the majority of users. The breaking changes are mostly expected to affect advanced users, and developers who build custom extensions on top of Naja.

That said, there have been some changes in the inner workings of the snippet cache that may alter the behaviour, so it is strongly recommended that you properly test your application against the 3.x release.

New features

  • ✨ SnippetHandler supports asynchronous snippet update operations, such as using View Transitions API. (#383) You can now wrap snippet updates in transitions, and rely on Naja dispatching the afterUpdate event only after the update has been completed.

    • SnippetHandler dispatches a new pendingUpdate event. The event is dispatched right before the now asynchronous update is invoked, and only if the update has not been prevented in the beforeUpdate event.

    • ⚠️ BREAKING CHANGE: if you are using SnippetHandler.updateSnippet() or SnippetHandler.updateSnippets() method directly, please note that the method is now asynchronous and the DOM is guaranteed to be updated only after its returned promise resolves.

    • ⚠️ BREAKING CHANGE: due to the asynchronicity, it is no longer guaranteed that all snippets have been updated by the time success and complete events are dispatched.

  • ✨ SnippetCache stores raw snippet content. (#368) This makes snippet restoration more deterministic for snippet update event listeners.

    The afterUpdate event is the preferred way to e.g. initialize third-party scripts and widgets. Previously, snippet cache wasn't populated until after updating the snippets, and thus snippets stored in the cache might already have contained these DOM modifications; as a result, the same afterUpdate listener would receive different inputs in different scenarios: one pristine when updating from the server, and one already modified when restoring the snippet from cache during history navigation.

    In Naja 3.0, snippets are cached in the original form whenever possible, so that afterUpdate event listeners receive the same, unaltered input, regardless of where it comes from.

    • ⚠️ BREAKING CHANGE: if you are implementing your own snippet update operation, it is now expected to be an object implementing a pair of methods:

      • updateElement(snippet: Element, content: string): void | Promise<void>

        This method should just wrap the original, pre-3.0 snippet update operation: it updates the snippet element with the content received from the server. As per the previous section, the update can now be asynchronous.

      • updateIndex(currentContent: string, newContent: string): string

        This method has been added to integrate with the enhanced snippet cache capabilities. It applies the newContent received from the server onto the snippet's cached currentContent, and returns the result. This method works entirely with the raw snippet contents, no DOM involved.

        For example, the built-in replace operation implements this method so that it returns newContent, whereas the append operation does return a concatenation of currentContent + newContent.

      Current snippet update operation implementations are backward-compatible, with updateIndex() falling back to simply returning newContent received from the server. It is recommended that you update your implementation to include the newly added method, so that you have full control over the implementation and its behaviour.

naja - 3.0.0-rc.1

Published by github-actions[bot] 8 months ago

This is a release candidate of the upcoming Naja 3.0. This is an evolutionary release and should not come with any breaking changes for the majority of users. The breaking changes are mostly expected to affect advanced users, and developers who build custom extensions on top of Naja.

That said, there have been some changes in the inner workings of the snippet cache that may alter the behaviour, so it is strongly recommended that you properly test your application against the 3.x release, and report any issues.

New features

  • ✨ SnippetHandler supports asynchronous snippet update operations, such as using View Transitions API. (#383) You can now wrap snippet updates in transitions, and rely on Naja dispatching the afterUpdate event only after the update has been completed.

    • SnippetHandler dispatches a new pendingUpdate event. The event is dispatched right before the now asynchronous update is invoked, and only if the update has not been prevented in the beforeUpdate event.

    • ⚠️ BREAKING CHANGE: if you are using SnippetHandler.updateSnippet() or SnippetHandler.updateSnippets() method directly, please note that the method is now asynchronous and the DOM is guaranteed to be updated only after its returned promise resolves.

    • ⚠️ BREAKING CHANGE: due to the asynchronicity, it is no longer guaranteed that all snippets have been updated by the time success and complete events are dispatched.

  • ✨ SnippetCache stores raw snippet content. (#368) This makes snippet restoration more deterministic for snippet update event listeners.

    The afterUpdate event is the preferred way to e.g. initialize third-party scripts and widgets. Previously, snippet cache wasn't populated until after updating the snippets, and thus snippets stored in the cache might already have contained these DOM modifications; as a result, the same afterUpdate listener would receive different inputs in different scenarios: one pristine when updating from the server, and one already modified when restoring the snippet from cache during history navigation.

    In Naja 3.0, snippets are cached in the original form whenever possible, so that afterUpdate event listeners receive the same, unaltered input, regardless of where it comes from.

    • ⚠️ BREAKING CHANGE: if you are implementing your own snippet update operation, it is now expected to be an object implementing a pair of methods:

      • updateElement(snippet: Element, content: string): void | Promise<void>

        This method should just wrap the original, pre-3.0 snippet update operation: it updates the snippet element with the content received from the server. As per the previous section, the update can now be asynchronous.

      • updateIndex(currentContent: string, newContent: string): string

        This method has been added to integrate with the enhanced snippet cache capabilities. It applies the newContent received from the server onto the snippet's cached currentContent, and returns the result. This method works entirely with the raw snippet contents, no DOM involved.

        For example, the built-in replace operation implements this method so that it returns newContent, whereas the append operation does return a concatenation of currentContent + newContent.

      Current snippet update operation implementations are backward-compatible, with updateIndex() falling back to simply returning newContent received from the server. It is recommended that you update your implementation to include the newly added method, so that you have full control over the implementation and its behaviour.

naja - 2.6.1

Published by github-actions[bot] 11 months ago

Minor changes and bugfixes

  • 🐞 SnippetCache no longer needs to call loadScripts() manually since ScriptLoader now hooks directly onto snippet's afterUpdate event.

Full Changelog: https://github.com/naja-js/naja/compare/2.6.0...2.6.1

naja - 2.6.0

Published by github-actions[bot] 11 months ago

New features

  • ✨ HistoryHandler's restoreState event contains the direction of the history navigation: a negative number representing going back in history, and a positive number for going forward.
  • ✨ HistoryHandler's buildState event contains the operation, indicating whether the current state is being replaced, or a new state is being pushed. (#380)
  • ✨ RedirectHandler's redirect event provides the setUrl() method, allowing developers to programmatically alter the target URL.

Minor changes and bugfixes

  • 🐞 HTML element overrides uniqueness options only if the attribute is explicitly set. (#375)
  • 🐞 HistoryHandler no longer replaces the history state with a stale URL after async redirection. (#385)
  • 🐞 ScriptLoader hooks more precisely onto the afterUpdate event, executing scripts only from snippets that have actually been updated.
  • πŸ”§ The type of snippet in updateSnippet() has been relaxed to Element. (#379)
  • πŸ”§ Dependencies have been updated and revised, so that Naja now has zero runtime dependencies.

Full Changelog: https://github.com/naja-js/naja/compare/2.5.0...2.6.0

naja - 2.6.0-beta.0

Published by github-actions[bot] about 1 year ago

🚧 This is a beta release to show some changes that should be coming to Naja in near future. Please help me test these changes by installing the beta tag of Naja:

npm install naja@beta

New features

  • ✨ SnippetCache tries to cache the raw markup of snippets as returned from the server, prior to applying any afterUpdate changes. (#368)

  • ✨ HistoryHandler now includes more information about the history state change: (#380)

    • buildState event includes information about the performed operation (pushState or replaceState),
    • restoreState event includes information about the direction of the user's navigation that triggered the popstate.

Minor changes and bugfixes

  • πŸ”§ Relax the type of snippet in updateSnippet() (#379)
  • 🐞UniqueExtension: only override option from element if it has an explicit attribute (#375)
naja - 2.5.0

Published by github-actions[bot] about 2 years ago

New features

  • ✨ There is a new payload event that is dispatched just before success and allows you to configure options for Naja's internal components based on the server response payload.

Minor changes and bugfixes

  • πŸ”§ The options in the interaction event are now prepopulated with configured default options.
  • πŸ”§ AbortExtension has been refactored to better handle multiple concurrent requests.

Full changelog: https://github.com/naja-js/naja/compare/2.4.0...2.5.0

naja - 2.4.0

Published by github-actions[bot] over 2 years ago

New features

  • ✨ HistoryHandler is now initialized only when a history-enabled request is made. This should improve interoperability with other history-altering tools, especially when Naja's History API integration is disabled globally. (#362, credits for the original idea go to #356)
  • ✨ Complementary to the previous change, the history state produced by Naja is now explicitly marked so.

Minor changes and bugfixes

  • πŸ”§ Type definitions now allow async event listeners.
  • 🐞 A potential race condition issue in HistoryHandler has been fixed.

Full changelog: https://github.com/naja-js/naja/compare/2.3.0...2.4.0

naja - 2.3.0

Published by github-actions[bot] almost 3 years ago

Changes

  • πŸ”§ The dist package of Naja comes without polyfills that are no longer necessary (#348), making Naja half the size πŸŽ‰
    ⚠️ This means that Naja no longer supports legacy Edge and older versions of Safari (< 14). If you still need to support these browsers, you need to include the polyfills in your application codebase. Learn more in #347.
naja - 2.2.1

Published by github-actions[bot] almost 3 years ago

Bugfixes

  • 🐞 ScriptLoader: record IDs of scripts loaded on initial page load (#345)
naja - 2.2.0

Published by jiripudil almost 3 years ago

New features

  • ✨ SnippetCache has been extracted into a separate component and the feature now has its own documentation page.

    • The historyUiCache option has been deprecated in favour of the new snippetCache option.
    • The HistoryHandler.uiCache flag has been deprecated in favour of the snippetCache option. You can configure it via naja.initialize(defaultOptions).
    • The data-naja-history-no-cache attribute has been deprecated in favour of data-naja-snippet-cache="off".
    • An alternative snippet cache storage has been added, utilizing SessionStorage which might offer a larger data quota than history entries. If your snippets are too large for history state, you might try this storage using the snippetCache: 'session' option.
    • The SnippetCache component exposes three events, store, fetch and restore, that allow you to tweak the caching behaviour or bypass it altogether.
  • ✨ HistoryHandler exposes two new events, buildState and restoreState. These allow you to hook into the History API integration, and the SnippetCache is built on top of them.

  • ✨ ScriptLoader is now able to deduplicate loaded scripts by a unique identifier (suggested in #336). You can add a data-naja-script-id attribute to the <script> element inside a snippet. ScriptLoader will only load each identified script once, even if it repeatedly appears in multiple snippet responses.

Minor changes and bugfixes

  • 🐞 Naja no longer adds submitter to form data if it has an empty name (#333).
  • 🐞 Naja is able to correctly serialize top-level arrays in data into (#315).
  • πŸ”§ naja.initialize() is no longer required to be called after the DOM is loaded, Naja makes sure of that internally where necessary.
  • πŸ”§ Naja now sends a proper Accept: application/json header (#314).
  • πŸ“– Documentation has been extended with more explanatory sections and code examples (#211).
naja - 2.1.5

Published by github-actions[bot] over 3 years ago

  • 🐞 UIHandler: refactor isUrlAllowed() to support protocol-relative URLs
  • πŸ”§ types: allow event names to be any string in EventTarget method overloads (#294)
naja - 2.1.4

Published by github-actions[bot] over 3 years ago

  • 🐞 Nullish values are now omitted from serialized data (#254).
naja - 2.1.3

Published by github-actions[bot] over 3 years ago

  • 🐞 Naja now properly serializes POJO data of any depth (#202, #224)
naja - 2.1.2

Published by github-actions[bot] almost 4 years ago

  • 🐞 UIHandler: ignore rejections from the underlying makeRequest() call in UI interactions (94d3ad42)
  • 🐞 UIHandler: fix incomplete type assertion (#197)
  • 🐞 build: fix path to type declarations (#198)
naja - 2.1.1

Published by github-actions[bot] almost 4 years ago

  • 🐞 FormsHandler: add missing undefined check to condition in processForm (#184)
naja - 2.1.0

Published by github-actions[bot] almost 4 years ago

  • UIHandler: manual dispatch methods clickElement() and submitForm() now return the promise from the underlying request call (#177).
  • naja.makeRequest() now serializes simple POJO data into query string for GET and HEAD requests (#178).
naja - 2.0.1

Published by github-actions[bot] about 4 years ago

  • 🐞 Fixed reading historyUiCache setting from defaultOptions (#85)
  • 🐞 Fixed type definitions file path in package.json (#91, #92, thanks @dakur)
Package Rankings
Top 3.5% on Npmjs.org
Badges
Extracted from project README
Build Status Code Coverage latest version license minified size minzipped size monthly downloads downloads total
Related Projects