@bbalganjjm/natural_js

0.92.405 • Public • Published

Natural-JS Boot가 새로 공개 됐습니다. Natural-JS Boot로 Natural-JS를 시작해 볼까요?

Natural-JS Boot is newly released. Shall we start Natural-JS with Natural-JS Boot?

Natural-JS

Natural-JS is a Javascript framework library that can be easily and quickly development the enterprise web application UI such as ERP, CRM, etc.

Structure

Natural-JS consists of the Natural-CORE, Natural-ARCHITECTURE, Natural-DATA, and Natural-UI library packages. Natural-CORE is a common library package used globally by Natural-JS and Natural-ARCHITECTURE is a library package that makes up the architecture of Natural-JS. Natural-DATA is a library package that supports data synchronization, formatting, validation, and processing and Natural-UI is a library package that supports HTML-based UI components.

Structure of Natural-JS

[ Structure of Natural-JS ]

Natural-CORE

Natural-CORE is a common library package used globally by Natural-JS.

CORE Utitlities - N() & N

N() is a Natural-JS core method. Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.

N is an object class that defines the core functions of Natural-JS.

N() and N provide the following jQuery extensions and utility classes:

  • jQuery selector extensions : JQuery selector extension for defining selectors with attributes such as style or data
  • jQuery plugin extension methods : Natural-JS utility method created with jQuery Plugin
  • N : Object class that defines the core functions of Natural-JS
  • N.gc : Function set class for Natural-JS internal garbage collection
  • N.string : Function set class for string control
  • N.element : Function set class for controlling HTML elements
  • N.date : Function set class for date control
  • N.browser : Web Browser information related function set class
  • N.message : Function set class for handling messages(multilingual)
  • N.array : Function set class for manipulating Array data
  • N.json : Function set class for manipulating JSON data
  • N.event : Function set class for event control

Natural Config - Config(N.config)

Config(N.config) is a place to save Natural-JS operation environment setting, AOP setting, Communication Filter setting, UI option value, etc.

Natural-ARCHITECTURE

Natural-ARCHITECTURE is a library package that makes up the architecture of Natural-JS.

Natural-ARCHITECTURE

[ Natural-ARCHITECTURE ]

Communicator-View-Controller(CVC) Architecture Pattern

The CVC pattern is an architectural pattern based on the Model-View-Controlelr(MVC) pattern. As shown in the figure below, it is a client-centric architectural pattern that configures the client browser area as the Communicator-View-Controller architecture and defines the server as a model area. Applying the CVC pattern allows client browser implementation technologies to deviate from server technology and server architecture dependencies and The complexity of development can be reduced by completely separating the design and development areas.

Communicator-View-Controller(CVC) Architecture Pattern

[ Communicator-View-Controller(CVC) Architecture Pattern ]

Natural Architecture Framework

Natural Architecture Framework is an architectural framework that implements the CVC Architecture Pattern.

Natural Architecture Framework

[ Natural Architecture Framework ]

Natural Architecture Framework provides a clear separation of the areas of development, providing a foundation for division of work among professionals in each area.

Controller

Controller(N.cont) is a class that implements Controller layer of ​​CVC Architecture Pattern.

  • N.cont executes the init function of the Controller object and returns a Controller object.

    The Controller object is the object that controls the elements of the View and the data retrieved by Communicator.

  • Natural-ARCHITECTURE supports AOP (Aspect-Oriented Programming) for Controller objects.

View

View has no implementation and simply defines the HTML element area as View.

Communicator

Communicator(N.comm) is a class that implements Communicator layer of ​​CVC Architecture Pattern.

  • N.comm is a library that supports Ajax communication with the server, such as requesting content or data from the server, or passing parameters.
  • N.comm provides a Communication Filter feature that can execute common logic in every request and response or error generation phase that communicates with the server.

Context

Context(N.context) is a space that ensures data persistence within the Life-Cycle(Until the page is loaded and redirected to another URL) of a Natural-JS-based application.

  • Natural-JS configuration values​(Config(N.config)), global configuration values, common messages of framework, etc. are stored in N.context objects.

Natural-DATA

Natural-DATA is a library package that supports data synchronization, formatting, validation, and processing.

DataSync

DataSync is a library that synchronizes data changed by components or libraries in real time.

DataSync supports bidirectional data binding between components.

Formatter

Formatter(N.formatter) is a library that formats the input data set(array [json object]) and returns the formatted data set.

Validator

Validator(N.validator) is a library that validates the input data set(array [json object]) and returns a validation result data set.

Natural-DATA Library

Natural-DATA Library provides methods and functions for sorting, filtering, and refining data of type array[json object].

Natural-UI

Natural-UI is a library package that supports HTML-based UI components.

Natural-UI

[ Natural-UI ]

Alert

Alert(N.alert) is a UI component that displays message dialogs such as window.alert or window.confirm in the form of layer popups.

Button

Button(N.button) is a UI component that creates a button with a "a, input[type=button], button" element specified as a context option.

Datepicker

Datepicker(N.datepicker) a UI component that displays a calendar popup for selecting a date or month in the text input element specified by the context option.

Popup

Popup(N.popup) is a UI component that makes a layer popup form the internal element specified by the context option or the page specified by the url option.

Tab

Tab(N.tab) is a UI component that creates a tab page view by specifying an element consisting of div>ul>li tags as the context option.

Select

Select(N.select) is a UI component that binds data to select, input[type=checkbox], and input[type=radio] elements to create a selection and extend the functionality of that control.

Form

Form(N.form) is a UI component that binds or creates single row data to an element(block elements such as div and table) specified by the context option.

List

List(N.list) is a UI component that creates a list of data in the form of a single column by specifying the ul>li element as the context option.

Grid

Grid(N.grid) is a UI component that creates a list of data in a multi-column form by specifying a table element as a context option.

Pagination

Pagination(N.pagination) is a UI component that creates paging indexes from list data or the total count of rows.

Tree

Tree(N.tree) is a UI component that makes hierarchical data into tree elements.

Natural-UI.Shell

While Natural-UI supports UI development in the content area, Natural-UI.Shell is a component package that supports the development of shell areas outside the content area.

Notify(N.notify)

Notify(N.notify) is a UI component that displays a global notification message in a specified location that does not require user confirmation.

Documents(N.docs)

Documents(N.docs) is a page container that displays Natural-JS based menu pages in MDI(Multi Document Interface) or SDI(Single Document Interface) structure.

Supports

Development language

  • Javascript(ECMAScript 3 or later) / jQuery 1.12.4
  • HTML / DHTML / HTML5
  • CSS2 / CSS3

Support browsers

  • PC : Internet Explorer 8 or later(Optimized for Internet Explorer 9 or later), Chrome, Firefox, Safari(OSX), Opera latest version
  • Mobile : iOS Safari, iOS UIWebView, Android Browser, Android Chrome, Android WebView

Training and support

License

This software is licensed under the LGPL v2.1 © KIM HWANG MAN<bbalganjjm@gmail.com>

Package Sidebar

Install

npm i @bbalganjjm/natural_js

Weekly Downloads

1

Version

0.92.405

License

LGPL-2.1-only

Unpacked Size

24.9 MB

Total Files

28

Last publish

Collaborators

  • bbalganjjm