Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@boxmeglobal/omisell-ui-lib
Advanced tools
Vì tất cả các component UI ở đây đều đã được export ra module nên trước khi sử dụng thì đặt thư mục source vào trong code base của dự án và import modules
Thư mục đặt code
+--- src
+--- app
+--- modules
+--- module 1
+--- module 2
+--- share-ui <-- this is module UI
Import vào trong modules cần dùng
@NgModule({
declarations: [],
imports: [
CommonModule,
// Shared
ShareUI
]
})
export class OtherModule { }
Hiển thị tab trong dự án
Để hiển thị tab cần có 2 thành phần chính
omisell-tabset
Là 1 container dùng để chứa các tab
Attribute | Type | Meaning |
---|---|---|
changeTab | Output | Khi người dùng change tab thì sẽ bắn event về |
omisell-tab
là 1 component tab
Attribute | Type | Meaning |
---|---|---|
tabID | number or string | Id của tab. Là giá trị định danh duy nhất |
tabIdDefault | number or string | Id của tab mặc định. Nếu không chọn thì sẽ tự động chọn tab đầu tiên |
title | string | Tên của tab |
Ngoài ra có thể chèn template vào bên sẵn bên trong tabset để không phải ẩn hiện template bằng tay.
Lúc đó chúng ta dùng ng-template
kèm với directive omisell-tabcontent
<omisell-tabset (changeTab)="changeTab($event)" tabIdDefault="staff">
<omisell-tab [tabID]="1" title="staff">
<ng-template omisell-tabcontent>
<h1>Nội dung thứ nhất</h1>
</ng-template>
</omisell-tab>
<omisell-tab [tabID]="2" title="19001010">
<ng-template omisell-tabcontent>
<h1>Nội dung thứ hai</h1>
</ng-template>
</omisell-tab>
</omisell-tabset>
Hiển thị dropdown Các thành phần gồm:
omisellDropdown
là directive đánh dấu container của dropdown. Bất kì event nào bubble từ bên trong sẽ trigger dropdown hiển thị ra
ng-template
kết hợp với omisellDropdownTemplate
dùng để đánh dấu template của dropdown đó.
omisellDropdownItem
dùng để đánh dấu 1 item con của dropdown. Khi item con được click đồng thời dropdown cũng biến mất
<div class="btn-group mr-2 actions" omisellDropdown role="group">
<button class="btn btn-primary">Button trigger dropdown</button>
<ng-template omisellDropdownTemplate>
<div class="omisell-dropdown-panel">
<div class="omisell-dropdown-item" omisellDropdownItem (click)="action()">
Action 1
</div>
<div class="omisell-dropdown-item" omisellDropdownItem (click)="otherAction()">
Action 2
</div>
</div>
</ng-template>
</div>
Hiển thị modal confirm
Import module ConfirmModalModule
Khai báo ConfirmModalService trong contructor của class và sử dụng
Property | Type | Meaning |
---|---|---|
isDanger | boolean | Hiển thị confirm theo kiểu danger hoặc success |
title | string | Title của modal |
textConfirm | string | Text button confirm |
textCancel | string | Text button cancel |
urlConfirm | string | Sử dụng url khi confirm. Trong trường hợp này sẽ không có event trả về như bình thường |
content | TemplateRef or string | Nội dung modal |
Đây là ví dụ modal confirm danger
this._confirmModal.openModal({
title: 'This is title',
content: 'This content is under title'
})
.subscribe(() => {
// Action confirm
}, () => {
// Action cancel
})
Hiển thị input switch. Hỗ trợ kết hợp với ReactiveForm và TemplateForm của Angular
Property | Type | Meaning |
---|---|---|
onChange | EventEmitter | It will fire event when value is changed |
<omisell-switch [formControl]="control"></omisell-switch>
Hiển thị input radio. Hỗ trợ kết hợp với ReactiveForm và TemplateForm của Angular
<omisell-radio-group [formControl]="radioInput">
<omisell-radio-input value="fire" name="Fire"></omisell-radio-input>
<omisell-radio-input value="earth" name="Earth"></omisell-radio-input>
<omisell-radio-input value="water" name="Water"></omisell-radio-input>
</omisell-radio-group>
FAQs
Omisell UI Library
The npm package @boxmeglobal/omisell-ui-lib receives a total of 3 weekly downloads. As such, @boxmeglobal/omisell-ui-lib popularity was classified as not popular.
We found that @boxmeglobal/omisell-ui-lib demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.